Skip to content

Commit 292fb78

Browse files
committedFeb 26, 2023
update package
1 parent a4bdced commit 292fb78

8 files changed

+14
-8
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Note: If you find missing information about particular minor version, that version must have been changed without any functional change in this library.
22

3+
**4.1.3 / 2023-02-26**
4+
* fix #546: Support complex entity value
5+
6+
**4.1.2 / 2023-02-12**
7+
* Security Fix
8+
39
**4.1.1 / 2023-02-03**
410
* Fix #540: ignoreAttributes breaks unpairedTags
511
* Refactor XML builder code

‎lib/fxp.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/fxp.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/fxparser.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/fxparser.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fast-xml-parser",
3-
"version": "4.1.2",
3+
"version": "4.1.3",
44
"description": "Validate XML, Parse XML, Build XML without C/C++ based libraries",
55
"main": "./src/fxp.js",
66
"scripts": {

‎spec/entities_spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ describe("XMLParser External Entites", function() {
533533
expect(result).toEqual(expected);
534534
});
535535

536-
fit("should support entites with tags in content", function() {
536+
it("should support entites with tags in content", function() {
537537
const xmlData = `
538538
<?xml version="1.0" encoding="utf-8"?>
539539
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [

0 commit comments

Comments
 (0)
Please sign in to comment.