Releases: DesignLiquido/xslt-processor
Releases · DesignLiquido/xslt-processor
v1.1.5
v1.1.4
What's Changed
- Bump semver from 5.7.1 to 5.7.2 by @dependabot in #60
- Exposing parameters through
Xslt
class. by @leonelsanchesdasilva in #61
New Contributors
- @dependabot made their first contribution in #60
Full Changelog: v1.1.3...v1.1.4
v1.1.3
What's Changed
- Options argument in
Xslt
class constructor. by @leonelsanchesdasilva in #59
Full Changelog: v1.1.2...v1.1.3
v1.1.2
What's Changed
disable-output-escaping
by @leonelsanchesdasilva in #58
Full Changelog: v1.1.1...v1.1.2
v1.1.1
v1.1.0
v1.0.1
Full Changelog: v1.0.0...v1.0.1
v1.0.0
Breaking Changes
Please note that the XSLT process method now lives inside of the Xslt
class:
import { Xslt, xmlParse } from 'xslt-processor'
// xmlString: string of xml file contents
// xsltString: string of xslt file contents
// outXmlString: output xml string.
const xsltClass = new Xslt();
const outXmlString = xsltClass.xsltProcess(
xmlParse(xmlString),
xmlParse(xsltString)
);
If you're planning to update your project with this version, adjust your code as needed.
The same is worth noting for XPath:
import { XPath } from 'xslt-processor'
const xPath = new XPath();
What's Changed
- XSLT template precedence not recognised by @berenddeboer in #39
- Partial namespace support (incomplete) by @mincerafter42 in #54
- Template should be able to match on any element not just / by @berenddeboer in #34
- Adding GitHub Flow. by @leonelsanchesdasilva in #55
New Contributors
- @mincerafter42 made their first contribution in #54
- @leonelsanchesdasilva made their first contribution in #55
Full Changelog: v0.11.7...v1.0.0
v0.12.0-2
Full Changelog: v0.12.0-1...v0.12.0-2
v0.12.0-1
Full Changelog: v0.12.0-0...v0.12.0-1