Skip to content

Commit f8d4d42

Browse files
committed
update strnum to fix parsing issues of 0 when skiplike is used
1 parent ab00cdc commit f8d4d42

File tree

4 files changed

+3367
-3356
lines changed

4 files changed

+3367
-3356
lines changed

CHANGELOG.md

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

3+
**4.5.4 / 2025-02-27**
4+
- update strnum to fix parsing issues
5+
6+
**4.5.3 / 2025-02-21**
7+
- update strnum to fix parsing issues
8+
39
**4.5.2 / 2025-02-18**
410
- Fix null CDATA to comply with undefined behavior (#701) (By [Matthieu BOHEAS](https://github.com/Kelgors))
511
- Fix(performance): Update check for leaf node in saveTextToParentTag function in OrderedObjParser.js (#707) (By [...](https://github.com/tomingtoming))

package-lock.json

Lines changed: 16 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fast-xml-parser",
3-
"version": "4.5.2",
3+
"version": "4.5.3",
44
"description": "Validate XML, Parse XML, Build XML without C/C++ based libraries",
55
"main": "./src/fxp.js",
66
"scripts": {
@@ -60,11 +60,13 @@
6060
"webpack-cli": "^4.9.1"
6161
},
6262
"typings": "src/fxp.d.ts",
63-
"funding": [{
64-
"type": "github",
65-
"url": "https://github.com/sponsors/NaturalIntelligence"
66-
}],
63+
"funding": [
64+
{
65+
"type": "github",
66+
"url": "https://github.com/sponsors/NaturalIntelligence"
67+
}
68+
],
6769
"dependencies": {
68-
"strnum": "^1.0.5"
70+
"strnum": "^1.1.2"
6971
}
7072
}

0 commit comments

Comments
 (0)