diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d0e4bfa..e0e30c9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ -# jsonld-signatures ChangeLog +# @digitalcredentials/jsonld-signatures ChangeLog + +## 11.0.0 - + +### Changed +- **BREAKING**: Now uses DCC forks of `jsonld` and `http-client`. ## 10.1.0 - 2024-08-03 diff --git a/lib/ProofSet.js b/lib/ProofSet.js index 99fef2e6..51cf9aa0 100644 --- a/lib/ProofSet.js +++ b/lib/ProofSet.js @@ -4,7 +4,7 @@ 'use strict'; const constants = require('./constants'); -const jsonld = require('jsonld'); +const jsonld = require('@digitalcredentials/jsonld'); const {extendContextLoader, strictDocumentLoader} = require('./documentLoader'); const {serializeError} = require('serialize-error'); diff --git a/lib/purposes/ControllerProofPurpose.js b/lib/purposes/ControllerProofPurpose.js index 3b7bc196..8e0d93c8 100644 --- a/lib/purposes/ControllerProofPurpose.js +++ b/lib/purposes/ControllerProofPurpose.js @@ -4,7 +4,7 @@ 'use strict'; const constants = require('../constants'); -const jsonld = require('jsonld'); +const jsonld = require('@digitalcredentials/jsonld'); const ProofPurpose = require('./ProofPurpose'); // DID documents can be specially optimized diff --git a/lib/suites/LinkedDataSignature.js b/lib/suites/LinkedDataSignature.js index b727b2ba..3aec3674 100644 --- a/lib/suites/LinkedDataSignature.js +++ b/lib/suites/LinkedDataSignature.js @@ -4,7 +4,7 @@ 'use strict'; const constants = require('../constants'); -const jsonld = require('jsonld'); +const jsonld = require('@digitalcredentials/jsonld'); const util = require('../util'); const {sha256digest} = require('../sha256digest'); const LinkedDataProof = require('./LinkedDataProof'); diff --git a/package.json b/package.json index 24fa9e8e..73865865 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "lib/**/*.js" ], "dependencies": { - "jsonld": "digitalcredentials/jsonld.js#v10.1.x", + "@digitalcredentials/jsonld": "^9.0.0", "@digitalbazaar/security-context": "^1.0.0", "@sphereon/isomorphic-webcrypto": "^2.5.0-unstable.0", "fast-text-encoding": "^1.0.3",