@xmldom/xmldom
Advanced tools
Comparing version 0.8.8 to 0.8.9
@@ -7,2 +7,11 @@ # Changelog | ||
## [0.8.9](https://github.com/xmldom/xmldom/compare/0.8.8...0.8.9) | ||
### Fixed | ||
- Set nodeName property in ProcessingInstruction [`#509`](https://github.com/xmldom/xmldom/pull/509) / [`#505`](https://github.com/xmldom/xmldom/issues/505) | ||
Thank you, [@cjbarth](https://github.com/cjbarth), for your contributions | ||
## [0.8.8](https://github.com/xmldom/xmldom/compare/0.8.7...0.8.8) | ||
@@ -9,0 +18,0 @@ |
@@ -1164,4 +1164,4 @@ var conventions = require("./conventions"); | ||
node.ownerDocument = this; | ||
node.tagName = node.target = target; | ||
node.nodeValue= node.data = data; | ||
node.tagName = node.nodeName = node.target = target; | ||
node.nodeValue = node.data = data; | ||
return node; | ||
@@ -1168,0 +1168,0 @@ }, |
{ | ||
"name": "@xmldom/xmldom", | ||
"version": "0.8.8", | ||
"version": "0.8.9", | ||
"description": "A pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
181292