Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): Update did-vc-libraries (major) #1410

Open
wants to merge 2 commits into
base: next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions __tests__/shared/credentialStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ type ConfiguredAgent = TAgent<IDIDManager & ICredentialPlugin & IDataStore & IDa
const simulateStatusVerificationFailure = 'Any_unexpected_failure_during_status_verification.'

// Constant used to simulate revoked credentials
const simulateRevokedCredential = 'A_revoked_credential.'
const simulateRevokedCredential = 'https://revoked.example.com/1'

// Constant used to simulate revoked credentials
const simulateNotRevokedCredential = 'A_NOT_revoked_credential.'
const simulateNotRevokedCredential = 'https://not.revoked.example.com/2'

const callsCounter = jest.fn()

Expand Down
8 changes: 6 additions & 2 deletions __tests__/shared/verifiableDataLD.ts
Original file line number Diff line number Diff line change
Expand Up @@ -395,14 +395,18 @@ export default (testContext: {
proofFormat: 'lds',
credential: {
issuer: { id: didKeyIdentifier.did },
'@context': ['https://veramo.io/contexts/profile/v1'],
'@context': ['https://veramo.io/contexts/profile/v1', {
'@context': {
ThisMethodDoesNotExist2022: 'custom:example.status.method#unknown',
},
}],
type: ['Profile'],
credentialSubject: {
id: didKeyIdentifier.did,
name: 'hello',
},
credentialStatus: {
id: 'override:me',
id: 'https://override.me',
type: 'ThisMethodDoesNotExist2022',
},
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
},
"resolutions": {
"@types/eslint": "^8.4.6",
"jsonld": "npm:@digitalcredentials/jsonld@^6.0.0"
"jsonld": "npm:@digitalcredentials/jsonld@^9.0.0"
},
"engines": {
"node": ">= 18.0.0"
Expand Down
10 changes: 5 additions & 5 deletions packages/credential-ld/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
"extract-api": "node ../cli/bin/veramo.js dev extract-api"
},
"dependencies": {
"@digitalcredentials/ed25519-signature-2020": "^4.0.0",
"@digitalcredentials/ed25519-signature-2020": "^6.0.0",
"@digitalcredentials/ed25519-verification-key-2020": "^4.0.0",
"@digitalcredentials/jsonld": "^6.0.0",
"@digitalcredentials/jsonld-signatures": "^10.0.0",
"@digitalcredentials/vc": "^7.0.0",
"@digitalcredentials/jsonld": "^9.0.0",
"@digitalcredentials/jsonld-signatures": "^12.0.0",
"@digitalcredentials/vc": "^9.0.0",
"@transmute/credentials-context": "^0.7.0-unstable.81",
"@transmute/ed25519-signature-2018": "^0.7.0-unstable.81",
"@transmute/json-web-signature": "^0.7.0-unstable.81",
Expand All @@ -30,7 +30,7 @@
},
"resolutions": {
"@types/react": "18.2.20",
"jsonld": "npm:@digitalcredentials/jsonld@^6.0.0"
"jsonld": "npm:@digitalcredentials/jsonld@^9.0.0"
},
"devDependencies": {
"@types/debug": "4.1.8",
Expand Down
2 changes: 1 addition & 1 deletion packages/did-provider-key/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"typescript": "5.3.3"
},
"resolutions": {
"jsonld": "npm:@digitalcredentials/jsonld@^6.0.0"
"jsonld": "npm:@digitalcredentials/jsonld@^9.0.0"
},
"files": [
"build/**/*",
Expand Down
2 changes: 1 addition & 1 deletion packages/did-provider-peer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"typescript": "5.3.3"
},
"resolutions": {
"jsonld": "npm:@digitalcredentials/jsonld@^6.0.0"
"jsonld": "npm:@digitalcredentials/jsonld@^9.0.0"
},
"files": [
"build/**/*",
Expand Down
537 changes: 392 additions & 145 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Loading