rdfxml-streaming-parser
Advanced tools
Comparing version 1.3.1 to 1.3.2
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
<a name="v1.3.2"></a> | ||
## [v1.3.2](https://github.com/rdfjs/rdfxml-streaming-parser.js/compare/v1.3.1...v1.3.2) - 2020-01-12 | ||
### Fixed | ||
* [Fix xmlns in datatyped property tags causing errors, Closes #21](https://github.com/rdfjs/rdfxml-streaming-parser.js/commit/6913fa1ffea102ba9c35743fc769961cc47d816f) | ||
<a name="v1.3.1"></a> | ||
@@ -5,0 +11,0 @@ ## [v1.3.1](https://github.com/rdfjs/rdfxml-streaming-parser.js/compare/v1.3.0...v1.3.1) - 2019-07-17 |
@@ -514,3 +514,4 @@ "use strict"; | ||
// but we ignore attributes that have no prefix or known expanded URI | ||
if (propertyAttributeKeyExpanded.prefix !== 'xml' && propertyAttributeKeyExpanded.uri) { | ||
if (propertyAttributeKeyExpanded.prefix !== 'xml' && propertyAttributeKeyExpanded.prefix !== 'xmlns' | ||
&& propertyAttributeKeyExpanded.uri) { | ||
if (parseType || activeTag.datatype) { | ||
@@ -517,0 +518,0 @@ throw this.newParseError(`Found illegal rdf:* properties on property element with attribute: ${propertyAttributeValue}`); |
{ | ||
"name": "rdfxml-streaming-parser", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"description": "Streaming RDF/XML parser", | ||
@@ -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
54425
914