@xmldom/xmldom 0.9.5 → 0.9.6
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 +14 -0
- package/lib/sax.js +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.9.6](https://github.com/xmldom/xmldom/compare/0.9.5...0.9.6)
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- lower error level for unicode replacement character [`#790`](https://github.com/xmldom/xmldom/issues/790) / [`#794`](https://github.com/xmldom/xmldom/pull/794) / [`#797`](https://github.com/xmldom/xmldom/pull/797)
|
|
12
|
+
|
|
13
|
+
### Chore
|
|
14
|
+
|
|
15
|
+
- updated devDependencies
|
|
16
|
+
- migrate renovate config [`#792`](https://github.com/xmldom/xmldom/pull/792)
|
|
17
|
+
|
|
18
|
+
Thank you, [@eglitise](https://github.com/eglitise), for your contributions.
|
|
19
|
+
|
|
20
|
+
|
|
7
21
|
## [0.9.5](https://github.com/xmldom/xmldom/compare/0.9.4...0.9.5)
|
|
8
22
|
|
|
9
23
|
### Fixed
|
package/lib/sax.js
CHANGED
|
@@ -49,7 +49,7 @@ var ENTITY_REG = /&#?\w+;?/g;
|
|
|
49
49
|
function parse(source, defaultNSMapCopy, entityMap, domBuilder, errorHandler) {
|
|
50
50
|
var isHTML = isHTMLMimeType(domBuilder.mimeType);
|
|
51
51
|
if (source.indexOf(g.UNICODE_REPLACEMENT_CHARACTER) >= 0) {
|
|
52
|
-
|
|
52
|
+
errorHandler.warning('Unicode replacement character detected, source encoding issues?');
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
function fixedFromCharCode(code) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xmldom/xmldom",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.6",
|
|
4
4
|
"description": "A pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"w3c",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"node": ">=14.6"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@homer0/prettier-plugin-jsdoc": "9.0
|
|
46
|
+
"@homer0/prettier-plugin-jsdoc": "9.1.0",
|
|
47
47
|
"@jazzer.js/core": "2.1.0",
|
|
48
48
|
"@jazzer.js/jest-runner": "2.1.0",
|
|
49
49
|
"auto-changelog": "2.5.0",
|
|
@@ -51,16 +51,16 @@
|
|
|
51
51
|
"eslint-config-prettier": "9.1.0",
|
|
52
52
|
"eslint-plugin-anti-trojan-source": "1.1.1",
|
|
53
53
|
"eslint-plugin-es5": "1.5.0",
|
|
54
|
-
"eslint-plugin-n": "17.
|
|
54
|
+
"eslint-plugin-n": "17.14.0",
|
|
55
55
|
"eslint-plugin-prettier": "5.2.1",
|
|
56
56
|
"get-stream": "6.0.1",
|
|
57
57
|
"jest": "29.7.0",
|
|
58
58
|
"nodemon": "3.1.7",
|
|
59
59
|
"np": "8.0.4",
|
|
60
|
-
"prettier": "3.
|
|
60
|
+
"prettier": "3.4.1",
|
|
61
61
|
"rxjs": "7.8.1",
|
|
62
|
-
"xmltest": "2.0.
|
|
63
|
-
"yauzl": "3.
|
|
62
|
+
"xmltest": "2.0.3",
|
|
63
|
+
"yauzl": "3.2.0"
|
|
64
64
|
},
|
|
65
65
|
"bugs": {
|
|
66
66
|
"url": "https://github.com/xmldom/xmldom/issues"
|