sparqljson-parse
Advanced tools
Comparing version 1.3.1 to 1.4.0
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
<a name="1.4.0"></a> | ||
## [1.3.0](https://github.com/rubensworks/sparqljson-parse.js/compare/v1.3.1...v1.4.0) - 2018-10-02 | ||
### Added | ||
- [Add support for Virtuoso's custom typed-literal](https://github.com/rubensworks/sparqljson-parse.js/commit/d26c08c1028b0defc58f84cfa7a4f3fcbe15d2b5) | ||
<a name="1.3.1"></a> | ||
## [1.3.0](https://github.com/rubensworks/sparqljson-parse.js/compare/v1.3.0...v1.3.1) - 2018-09-05 | ||
### Fixed | ||
- [Remove tslib dependency](https://github.com/rubensworks/sparqljson-parse.js/commit/969b0b03f22b578bb2a67641c663bd057392c284) | ||
- [Remove invalid bin script](https://github.com/rubensworks/sparqljson-parse.js/commit/b111b4904d07f9ce81ca7d7bffaa659d3fee4d4c) | ||
<a name="1.3.0"></a> | ||
@@ -5,0 +16,0 @@ ## [1.3.0](https://github.com/rubensworks/sparqljson-parse.js/compare/v1.2.0...v1.3.0) - 2018-08-21 |
@@ -69,2 +69,6 @@ "use strict"; | ||
break; | ||
case 'typed-literal': | ||
// Virtuoso uses this non-spec-compliant way of defining typed literals | ||
value = this.dataFactory.literal(rawValue.value, this.dataFactory.namedNode(rawValue.datatype)); | ||
break; | ||
default: | ||
@@ -71,0 +75,0 @@ value = this.dataFactory.namedNode(rawValue.value); |
{ | ||
"name": "sparqljson-parse", | ||
"version": "1.3.1", | ||
"version": "1.4.0", | ||
"description": "Parses SPARQL JSON query results", | ||
@@ -42,8 +42,13 @@ "keywords": [ | ||
"streamify-string": "^1.0.1", | ||
"ts-jest": "^23.0.1", | ||
"ts-jest": "^23.10.2", | ||
"tslint": "^5.8.0", | ||
"tslint-eslint-rules": "^5.3.1", | ||
"typescript": "^2.6.2" | ||
"typescript": "^2.7.0" | ||
}, | ||
"jest": { | ||
"globals": { | ||
"ts-jest": { | ||
"tsConfig": "test/tsconfig.json" | ||
} | ||
}, | ||
"setupTestFrameworkScriptFile": "jest-rdf", | ||
@@ -50,0 +55,0 @@ "transform": { |
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
17478
210