rdf-canonize
Advanced tools
Comparing version 2.0.0 to 2.0.1
# rdf-canonize ChangeLog | ||
## 2.0.0 - 2020-01-20 | ||
## 2.0.1 - 2021-01-21 | ||
### Fixed | ||
- Use `setimmediate` package for `setImmediate` polyfill. The previous custom | ||
polyfill was removed. This should allow current projects using this package | ||
to stay the same and allow an easy future transition to webpack v5. | ||
## 2.0.0 - 2021-01-20 | ||
### Removed | ||
@@ -6,0 +13,0 @@ - **BREAKING**: Removed public API for `canonizeSync`. It is still available |
@@ -10,2 +10,4 @@ /* | ||
require('setimmediate'); | ||
const crypto = self.crypto || self.msCrypto; // TODO: synchronous version no longer supported in browser | ||
@@ -12,0 +14,0 @@ |
@@ -6,2 +6,4 @@ /* | ||
require('setimmediate'); | ||
const crypto = self.crypto || self.msCrypto; | ||
@@ -8,0 +10,0 @@ |
{ | ||
"name": "rdf-canonize", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "An implementation of the RDF Dataset Normalization Algorithm in JavaScript", | ||
@@ -32,3 +32,4 @@ "homepage": "https://github.com/digitalbazaar/rdf-canonize", | ||
"dependencies": { | ||
"semver": "^6.3.0" | ||
"semver": "^6.3.0", | ||
"setimmediate": "^1.0.5" | ||
}, | ||
@@ -51,2 +52,3 @@ "devDependencies": { | ||
"mocha": "^5.2.0", | ||
"mocha-lcov-reporter": "^1.3.0", | ||
"nsolid": "0.0.0", | ||
@@ -75,5 +77,7 @@ "nyc": "^13.1.0", | ||
"fetch-test-suite": "if [ ! -e test-suites/normalization ]; then git clone --depth 1 https://github.com/json-ld/normalization.git test-suites/normalization; fi", | ||
"test": "mocha -R spec --check-leaks", | ||
"test": "npm run test-node", | ||
"test-node": "NODE_ENV=test mocha -R spec --check-leaks", | ||
"benchmark": "node benchmark/benchmark.js", | ||
"coverage": "rm -rf coverage && nyc --reporter=lcov --reporter=text-summary npm test", | ||
"coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text-summary npm test", | ||
"coverage-ci": "NODE_ENV=test nyc --reporter=lcovonly npm run test", | ||
"coverage-report": "nyc report", | ||
@@ -80,0 +84,0 @@ "lint": "eslint '*.js' 'lib/*.js' 'test/*.js' 'benchmark/*.js'" |
# rdf-canonize | ||
[![Build status](https://img.shields.io/travis/digitalbazaar/rdf-canonize.svg)](https://travis-ci.org/digitalbazaar/rdf-canonize) | ||
[![Build status](https://img.shields.io/github/workflow/status/digitalbazaar/rdf-canonize/Node.js%20CI)](https://github.com/digitalbazaar/rdf-canonize/actions?query=workflow%3A%22Node.js+CI%22) | ||
[![Coverage status](https://img.shields.io/codecov/c/github/digitalbazaar/rdf-canonize)](https://codecov.io/gh/digitalbazaar/rdf-canonize) | ||
[![Dependency Status](https://img.shields.io/david/digitalbazaar/rdf-canonize.svg)](https://david-dm.org/digitalbazaar/rdf-canonize) | ||
@@ -5,0 +6,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
512900
5512
140
2
21
+ Addedsetimmediate@^1.0.5
+ Addedsetimmediate@1.0.5(transitive)