Skip to content

Releases: DesignLiquido/xslt-processor

v1.1.5

14 Jul 18:40
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.4...v1.1.5

v1.1.4

12 Jul 19:09
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.1.3...v1.1.4

v1.1.3

11 Jul 19:31
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.2...v1.1.3

v1.1.2

10 Jul 22:12
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.1...v1.1.2

v1.1.1

07 Jul 22:15
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.0...v1.1.1

v1.1.0

06 Jul 18:24
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.1...v1.1.0

v1.0.1

29 Jun 01:33
Compare
Choose a tag to compare

Full Changelog: v1.0.0...v1.0.1

v1.0.0

28 Jun 22:18
Compare
Choose a tag to compare

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

New Contributors

Full Changelog: v0.11.7...v1.0.0

v0.12.0-2

25 Jun 20:26
Compare
Choose a tag to compare
v0.12.0-2 Pre-release
Pre-release

Full Changelog: v0.12.0-1...v0.12.0-2

v0.12.0-1

25 Jun 20:25
Compare
Choose a tag to compare
v0.12.0-1 Pre-release
Pre-release

Full Changelog: v0.12.0-0...v0.12.0-1