Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sparqljson-parse

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sparqljson-parse - npm Package Compare versions

Comparing version 1.3.1 to 1.4.0

11

CHANGELOG.md
# 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

4

lib/SparqlJsonParser.js

@@ -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);

11

package.json
{
"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": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc