File tree 4 files changed +13
-6
lines changed
4 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 1
1
# security-document-loader Changelog
2
2
3
+ ## 6.0.0 -
4
+ ### Added
5
+ - Add support for VC DM 2.0 context
6
+
7
+ ### Changed
8
+ - ** BREAKING** : Switch to ` @digitalcredentials/http-client ` fork.
9
+
3
10
## 5.0.0 - 2024-02-10
4
11
### Changed
5
12
- ** BREAKING** : For the HTTP protocol handler (for fetching un-cached documents
Original file line number Diff line number Diff line change 31
31
"./package.json" : " ./package.json"
32
32
},
33
33
"dependencies" : {
34
- "@digitalbazaar/credentials-v2-context" : " github:digitalbazaar/credentials-v2-context#main" ,
35
34
"@digitalbazaar/data-integrity-context" : " ^2.0.0" ,
36
- "@digitalbazaar/http-client" : " ^4.1.0" ,
37
35
"@digitalbazaar/vc-bitstring-status-list-context" : " ^1.0.0" ,
38
36
"@digitalbazaar/vc-status-list-context" : " ^3.0.1" ,
37
+ "@digitalcredentials/credentials-v2-context" : " ~0.0.1-beta.0" ,
39
38
"@digitalcredentials/crypto-ld" : " ^7.0.2" ,
40
39
"@digitalcredentials/dcc-context" : " ^1.0.0" ,
41
40
"@digitalcredentials/did-io" : " ^1.0.2" ,
42
41
"@digitalcredentials/did-method-key" : " ^2.0.3" ,
43
42
"@digitalcredentials/ed25519-verification-key-2020" : " ^3.2.2" ,
43
+ "@digitalcredentials/http-client" : " ^5.0.1" ,
44
44
"@digitalcredentials/open-badges-context" : " ^2.1.0" ,
45
45
"@digitalcredentials/x25519-key-agreement-key-2020" : " ^3.0.0" ,
46
46
"@interop/did-web-resolver" : " ^4.0.0" ,
Original file line number Diff line number Diff line change @@ -20,5 +20,5 @@ declare module 'x25519-key-agreement-2020-context';
20
20
declare module 'json-canonicalize' ;
21
21
declare module 'react-native-keychain' ;
22
22
declare module '@digitalcredentials/open-badges-context' ;
23
- declare module '@digitalbazaar /credentials-v2-context' ;
24
- declare module '@digitalbazaar /http-client' ;
23
+ declare module '@digitalcredentials /credentials-v2-context' ;
24
+ declare module '@digitalcredentials /http-client' ;
Original file line number Diff line number Diff line change 3
3
*/
4
4
import * as didKey from '@digitalcredentials/did-method-key' ;
5
5
import * as didWeb from '@interop/did-web-resolver' ;
6
- import * as vc2Context from '@digitalbazaar /credentials-v2-context' ;
6
+ import * as vc2Context from '@digitalcredentials /credentials-v2-context' ;
7
7
import * as vcBitstringStatusListContext from '@digitalbazaar/vc-bitstring-status-list-context' ;
8
8
import vc1Context from 'credentials-context' ;
9
9
import vcStatusListContext from '@digitalbazaar/vc-status-list-context' ;
@@ -20,7 +20,7 @@ import x25519Context from 'x25519-key-agreement-2020-context';
20
20
import { JsonLdDocumentLoader } from 'jsonld-document-loader' ;
21
21
import { CryptoLD } from '@digitalcredentials/crypto-ld' ;
22
22
import obContext from '@digitalcredentials/open-badges-context' ;
23
- import { httpClient } from '@digitalbazaar /http-client' ;
23
+ import { httpClient } from '@digitalcredentials /http-client' ;
24
24
import { parseResponseBody } from './parseResponse' ;
25
25
26
26
const cryptoLd = new CryptoLD ( ) ;
You can’t perform that action at this time.
0 commit comments