fast-xml-parser 5.5.2 → 5.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/lib/fxp.d.cts +4 -1
- package/package.json +2 -2
- package/src/fxp.d.ts +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
Note: Due to some last quick changes on v4, detail of v4.5.3 & v4.5.4 are not updated here. v4.5.4x is the last tag of v4 in github repository. I'm extremely sorry for the confusion
|
|
4
4
|
|
|
5
|
+
**5.5.4 / 2026-03-13**
|
|
6
|
+
- declare Matcher & Expression as unknown so user is not forced to install path-expression-matcher
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
**5.5.3 / 2026-03-11**
|
|
10
|
+
- upgrade builder
|
|
11
|
+
|
|
5
12
|
**5.5.2 / 2026-03-11**
|
|
6
13
|
- update dependency to fix typings
|
|
7
14
|
|
package/lib/fxp.d.cts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fast-xml-parser",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.4",
|
|
4
4
|
"description": "Validate XML, Parse XML, Build XML without C/C++ based libraries",
|
|
5
5
|
"main": "./lib/fxp.cjs",
|
|
6
6
|
"type": "module",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
}
|
|
88
88
|
],
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"fast-xml-builder": "^1.1.
|
|
90
|
+
"fast-xml-builder": "^1.1.3",
|
|
91
91
|
"path-expression-matcher": "^1.1.3",
|
|
92
92
|
"strnum": "^2.1.2"
|
|
93
93
|
}
|
package/src/fxp.d.ts
CHANGED