Skip to content

Commit ea83839

Browse files
committed
Update rdf-canonize dependency.
1 parent f5fd3f2 commit ea83839

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# jsonld ChangeLog
22

3+
### Notes
4+
- The updated [rdf-canonize][] extracted out native support into
5+
[rdf-canonize-native][] and now has an *optional* dependency on this new
6+
module. If you have build tools available it will still build and use native
7+
support otherwise it will fallback to less performant JS code.
8+
- If you wish to *require* the native `rdf-canonize` bindings, add a dependency
9+
in your code to `rdf-canonize-native` to insure it is installed.
10+
- Some systems such as [Travis CI](https://travis-ci.org) currently only have
11+
ancient compilers installed by default. Users of `rdf-canonize`, and hence
12+
`jsonld.js`, previously required special setup so the `rdf-canonize` native
13+
bindings would be installable. If CI testing is not performance critical you
14+
can now simplify your CI config, let those bindings fail to install, and use
15+
the JS fallback code.
16+
17+
### Changed
18+
- Update `rdf-canonize` dependency to 0.3.
19+
320
### Added
421
- Initial support for benchmarking.
522
- Basic callback interface tests.
@@ -362,3 +379,5 @@
362379

363380
[jsonld-cli]: https://github.com/digitalbazaar/jsonld-cli
364381
[jsonld-request]: https://github.com/digitalbazaar/jsonld-request
382+
[rdf-canonize]: https://github.com/digitalbazaar/rdf-canonize
383+
[rdf-canonize-native]: https://github.com/digitalbazaar/rdf-canonize-native

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"lib/**/*.js"
3232
],
3333
"dependencies": {
34-
"rdf-canonize": "^0.2.1",
34+
"rdf-canonize": "^0.3.0",
3535
"request": "^2.83.0",
3636
"semver": "^5.5.0",
3737
"xmldom": "0.1.19"

0 commit comments

Comments
 (0)