Skip to content

Releases: DesignLiquido/xslt-processor

v2.3.1

23 Mar 17:13
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.3.0...v2.3.1

v2.3.0

08 Mar 05:29
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.2.0...v2.3.0

v2.2.0

29 Jan 06:57
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.1.4...v2.2.0

v2.1.4

28 Jan 18:47
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.1.3...v2.1.4

v2.1.3

24 Jan 01:22
Compare
Choose a tag to compare

What's Changed

  • Removing logic that was replacing child nodes by attribute nodes. Totally weird. (cee123a)
  • Bump follow-redirects from 1.15.2 to 1.15.4 (#82) (b742613)

Full Changelog: v2.1.2...v2.1.3

v2.1.2

24 Nov 13:27
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.1.1...v2.1.2

v2.1.1

07 Nov 17:04
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.1.0...v2.1.1

v2.1.0

04 Nov 18:48
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.0.1...v2.1.0

v2.0.1

19 Oct 20:28
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.0.0...v2.0.1

v2.0.0

16 Sep 17:21
Compare
Choose a tag to compare

Breaking Changes

Please note that the xmlParse method now lives inside the XmlParser class:

import { Xslt, XmlParser } from 'xslt-processor'

// xmlString: string of xml file contents
// xsltString: string of xslt file contents
// outXmlString: output xml string.
const xsltClass = new Xslt();
const xmlParser = new XmlParser();
const outXmlString = xsltClass.xsltProcess(
	xmlParser.xmlParse(xmlString),
	xmlParser.xmlParse(xsltString)
);

If you're planning to update your project with this version, adjust your code as needed.

Starting on version 2 of this library, HTML is handled differently than XML, due to particularities in HTML such as tags that don't need to be closed.

Full Changelog: v1.2.8...v2.0.0