Skip to content

Commit

Permalink
Use DCC jsonld and http-client forks.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrizagidulin committed Aug 4, 2024
1 parent 14e1124 commit 1da51f3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion lib/ProofSet.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');

Expand Down
2 changes: 1 addition & 1 deletion lib/purposes/ControllerProofPurpose.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/suites/LinkedDataSignature.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 1da51f3

Please sign in to comment.