diff --git a/CHANGELOG.md b/CHANGELOG.md index 88658f51b..2f6ea85a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,30 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +### Bug Fixes + +- a bug in migration CreateContacts ([0267460](https://github.com/Sphereon-Opensource/SSI-SDK/commit/0267460f26705f70edffcfd0264c42e5afd2e0ce)) +- a bug in selecting the type of the credential that we're going to request ([c49b237](https://github.com/Sphereon-Opensource/SSI-SDK/commit/c49b237e4d18baef520c59027f1f935df6a127d2)) +- clientId fixes ([4fc568b](https://github.com/Sphereon-Opensource/SSI-SDK/commit/4fc568b852a1d444d32ba7a76e2bb8d8154428a8)) +- clientId fixes ([cad41fc](https://github.com/Sphereon-Opensource/SSI-SDK/commit/cad41fc296a06b7e25dcd957da21eae4d02f7b46)) +- Fixed broken tests ([d01859d](https://github.com/Sphereon-Opensource/SSI-SDK/commit/d01859dae7b04f311ed88bfa622b71201021f80d)) +- Make sure we import path/fs only when really needed for object-creation. Ensure we use agent-config plugin only in places it is needed ([76b4f53](https://github.com/Sphereon-Opensource/SSI-SDK/commit/76b4f53693ba6105fc00bdd93d78587defc9e183)) +- updated vci package and fixed getSupportedCredential function ([780a377](https://github.com/Sphereon-Opensource/SSI-SDK/commit/780a37782881da1558f7b97d4d8c0ffd71317d21)) +- updated version of vci and fixed the libs for it ([ceb6074](https://github.com/Sphereon-Opensource/SSI-SDK/commit/ceb60748920fd78d318cb3544f69bef54b365c94)) +- updated version of vci and fixed the libs for it ([de1d6aa](https://github.com/Sphereon-Opensource/SSI-SDK/commit/de1d6aadcea1aac18bcd72a5651e3bb1e9f386d6)) + +### Features + +- Adapted the plugin to accept https urls, added tests and documentation about the changes ([73ab5ae](https://github.com/Sphereon-Opensource/SSI-SDK/commit/73ab5ae19d49229128db067b2fcfa396d7ace466)) +- allow default auth request options for VCI links/machines, like clientId and redirectUri ([434196e](https://github.com/Sphereon-Opensource/SSI-SDK/commit/434196e4ce2f895b43ec9992d682a603aaa612a3)) +- Allow to pass in options when emitting link handler events ([0293342](https://github.com/Sphereon-Opensource/SSI-SDK/commit/02933423f1e3c68621b4fc80c574b531e47211b4)) +- Allow to pass in state for url handler handle methods, allowing a statemachine to continue, without database persistence ([16e06e8](https://github.com/Sphereon-Opensource/SSI-SDK/commit/16e06e8c2b879c6fe706568a48e254ab2693bf78)) +- Run prettier ([2a9be95](https://github.com/Sphereon-Opensource/SSI-SDK/commit/2a9be958378f14ea935a0d0d7d4d4ba254036c43)) +- Support http(s) urls ([b3cc812](https://github.com/Sphereon-Opensource/SSI-SDK/commit/b3cc8126e02ca1ae638180644518ec47cfcafbf7)) +- Updated dependencies on the @sphereon/oid4vci ([00810ff](https://github.com/Sphereon-Opensource/SSI-SDK/commit/00810ff4a11f5b7794fdab431b47ca66f5e8f3f4)) + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) ### Bug Fixes diff --git a/lerna.json b/lerna.json index ccb814d1d..96215df5b 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "0.25.0", + "version": "0.26.0", "npmClient": "pnpm", "command": { "version": { diff --git a/package.json b/package.json index 7269ebfee..5b3777154 100644 --- a/package.json +++ b/package.json @@ -111,12 +111,9 @@ "@veramo/url-handler": "4.2.0", "@sphereon/ssi-types": "workspace:*", "@sphereon/ssi-sdk.core": "workspace:*", - "@sphereon/oid4vci-common": "file:../OID4VCI/packages/common", - "@sphereon/oid4vci-client": "file:../OID4VCI/packages/client", - "@sphereon/oid4vci-issuer": "file:../OID4VCI/packages/issuer", - "@sphereon/ssi-sdk-ext.did-resolver-ebsi": "0.20.1-unstable.3", - "@sphereon/ssi-sdk-ext.key-utils": "file:../SSI-SDK-crypto-extensions/packages/key-utils", - "@sphereon/ssi-sdk-ext.did-utils": "file:../SSI-SDK-crypto-extensions/packages/did-utils", + "@sphereon/oid4vci-common": "0.12.0", + "@sphereon/oid4vci-client": "0.12.0", + "@sphereon/oid4vci-issuer": "0.12.0", "@noble/hashes": "1.2.0", "did-jwt": "6.11.6", "did-jwt-vc": "3.1.3", diff --git a/packages/agent-config/CHANGELOG.md b/packages/agent-config/CHANGELOG.md index 88496f901..8a5ffc2bd 100644 --- a/packages/agent-config/CHANGELOG.md +++ b/packages/agent-config/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +### Bug Fixes + +- Make sure we import path/fs only when really needed for object-creation. Ensure we use agent-config plugin only in places it is needed ([76b4f53](https://github.com/Sphereon-Opensource/SSI-SDK/commit/76b4f53693ba6105fc00bdd93d78587defc9e183)) + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.agent-config diff --git a/packages/agent-config/package.json b/packages/agent-config/package.json index f23d53a47..fbf08bc74 100644 --- a/packages/agent-config/package.json +++ b/packages/agent-config/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.agent-config", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -21,7 +21,6 @@ "@types/url-parse": "^1.4.8", "typescript": "5.4.2" }, - "peerDependencies": {}, "files": [ "dist/**/*", "src/**/*", diff --git a/packages/contact-manager-rest-api/CHANGELOG.md b/packages/contact-manager-rest-api/CHANGELOG.md index d6178de8e..7cb51364e 100644 --- a/packages/contact-manager-rest-api/CHANGELOG.md +++ b/packages/contact-manager-rest-api/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.contact-manager-rest-api + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.contact-manager-rest-api diff --git a/packages/contact-manager-rest-api/package.json b/packages/contact-manager-rest-api/package.json index c24c83bd6..636aa693a 100644 --- a/packages/contact-manager-rest-api/package.json +++ b/packages/contact-manager-rest-api/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.contact-manager-rest-api", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -12,8 +12,8 @@ }, "dependencies": { "@sphereon/ssi-express-support": "workspace:*", - "@sphereon/ssi-sdk-ext.key-manager": "0.20.0", - "@sphereon/ssi-sdk-ext.key-utils": "0.20.0", + "@sphereon/ssi-sdk-ext.key-manager": "0.21.0", + "@sphereon/ssi-sdk-ext.key-utils": "0.21.0", "@sphereon/ssi-sdk.contact-manager": "workspace:*", "@sphereon/ssi-sdk.core": "workspace:*", "@sphereon/ssi-sdk.data-store": "workspace:*", diff --git a/packages/contact-manager/CHANGELOG.md b/packages/contact-manager/CHANGELOG.md index bbd035eb9..9a1af8f44 100644 --- a/packages/contact-manager/CHANGELOG.md +++ b/packages/contact-manager/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.contact-manager + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) ### Features diff --git a/packages/contact-manager/package.json b/packages/contact-manager/package.json index 9060672dc..760a81d90 100644 --- a/packages/contact-manager/package.json +++ b/packages/contact-manager/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.contact-manager", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/data-store/CHANGELOG.md b/packages/data-store/CHANGELOG.md index b43bb0683..94547e06b 100644 --- a/packages/data-store/CHANGELOG.md +++ b/packages/data-store/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +### Bug Fixes + +- a bug in migration CreateContacts ([0267460](https://github.com/Sphereon-Opensource/SSI-SDK/commit/0267460f26705f70edffcfd0264c42e5afd2e0ce)) +- clientId fixes ([cad41fc](https://github.com/Sphereon-Opensource/SSI-SDK/commit/cad41fc296a06b7e25dcd957da21eae4d02f7b46)) + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) ### Bug Fixes diff --git a/packages/data-store/package.json b/packages/data-store/package.json index d18556ab7..5680bf809 100644 --- a/packages/data-store/package.json +++ b/packages/data-store/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.data-store", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/dev/CHANGELOG.md b/packages/dev/CHANGELOG.md index ed5533a6a..dbefe18c8 100644 --- a/packages/dev/CHANGELOG.md +++ b/packages/dev/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.dev + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.dev diff --git a/packages/dev/package.json b/packages/dev/package.json index 764ed9927..10a8fdee3 100644 --- a/packages/dev/package.json +++ b/packages/dev/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.dev", - "version": "0.25.0", + "version": "0.26.0", "source": "lib/index.ts", "exports": { ".": { diff --git a/packages/event-logger/CHANGELOG.md b/packages/event-logger/CHANGELOG.md index 5c5d96a61..fc4bb8d16 100644 --- a/packages/event-logger/CHANGELOG.md +++ b/packages/event-logger/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.event-logger + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.event-logger diff --git a/packages/event-logger/__tests__/shared/eventLoggerAgentLogic.ts b/packages/event-logger/__tests__/shared/eventLoggerAgentLogic.ts index 04f2eb5a1..05a214eaa 100644 --- a/packages/event-logger/__tests__/shared/eventLoggerAgentLogic.ts +++ b/packages/event-logger/__tests__/shared/eventLoggerAgentLogic.ts @@ -3,6 +3,7 @@ import { TAgent } from '@veramo/core' import { AuditLoggingEvent, PartyCorrelationType } from '@sphereon/ssi-sdk.core' import { GetAuditEventsArgs, IEventLogger, NonPersistedAuditLoggingEvent } from '../../src' +jest.setTimeout(120000) type ConfiguredAgent = TAgent export default (testContext: { getAgent: () => ConfiguredAgent; setup: () => Promise; tearDown: () => Promise }): void => { diff --git a/packages/event-logger/package.json b/packages/event-logger/package.json index 6e5315398..25cee5715 100644 --- a/packages/event-logger/package.json +++ b/packages/event-logger/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.event-logger", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/issuance-branding/CHANGELOG.md b/packages/issuance-branding/CHANGELOG.md index ac005fbe4..8a9861e27 100644 --- a/packages/issuance-branding/CHANGELOG.md +++ b/packages/issuance-branding/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.issuance-branding + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.issuance-branding diff --git a/packages/issuance-branding/package.json b/packages/issuance-branding/package.json index 0b5f5b0f4..1ac1a13d7 100644 --- a/packages/issuance-branding/package.json +++ b/packages/issuance-branding/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.issuance-branding", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/kv-store/CHANGELOG.md b/packages/kv-store/CHANGELOG.md index 8f00b4dfa..f093e4338 100644 --- a/packages/kv-store/CHANGELOG.md +++ b/packages/kv-store/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/uport-project/veramo/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.kv-store-temp + # [0.25.0](https://github.com/uport-project/veramo/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.kv-store-temp diff --git a/packages/kv-store/package.json b/packages/kv-store/package.json index f8a7d9f8f..a89be9b60 100644 --- a/packages/kv-store/package.json +++ b/packages/kv-store/package.json @@ -1,7 +1,7 @@ { "name": "@sphereon/ssi-sdk.kv-store-temp", "description": "Key Value Store plugin", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/ms-authenticator/CHANGELOG.md b/packages/ms-authenticator/CHANGELOG.md index bc5cc8f66..ce598abf7 100644 --- a/packages/ms-authenticator/CHANGELOG.md +++ b/packages/ms-authenticator/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.ms-authenticator + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.ms-authenticator diff --git a/packages/ms-authenticator/package.json b/packages/ms-authenticator/package.json index 356fd1234..d1ec16170 100644 --- a/packages/ms-authenticator/package.json +++ b/packages/ms-authenticator/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.ms-authenticator", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/ms-request-api/CHANGELOG.md b/packages/ms-request-api/CHANGELOG.md index 1db68bd8f..278c5f40f 100644 --- a/packages/ms-request-api/CHANGELOG.md +++ b/packages/ms-request-api/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.ms-request-api + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.ms-request-api diff --git a/packages/ms-request-api/package.json b/packages/ms-request-api/package.json index a6bb3bc22..99ae18e55 100644 --- a/packages/ms-request-api/package.json +++ b/packages/ms-request-api/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.ms-request-api", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/oid4vci-holder/CHANGELOG.md b/packages/oid4vci-holder/CHANGELOG.md index a5e72b3a9..70d4a22bf 100644 --- a/packages/oid4vci-holder/CHANGELOG.md +++ b/packages/oid4vci-holder/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +### Bug Fixes + +- a bug in selecting the type of the credential that we're going to request ([c49b237](https://github.com/Sphereon-Opensource/SSI-SDK/commit/c49b237e4d18baef520c59027f1f935df6a127d2)) +- clientId fixes ([4fc568b](https://github.com/Sphereon-Opensource/SSI-SDK/commit/4fc568b852a1d444d32ba7a76e2bb8d8154428a8)) +- clientId fixes ([cad41fc](https://github.com/Sphereon-Opensource/SSI-SDK/commit/cad41fc296a06b7e25dcd957da21eae4d02f7b46)) +- Fixed broken tests ([d01859d](https://github.com/Sphereon-Opensource/SSI-SDK/commit/d01859dae7b04f311ed88bfa622b71201021f80d)) +- updated vci package and fixed getSupportedCredential function ([780a377](https://github.com/Sphereon-Opensource/SSI-SDK/commit/780a37782881da1558f7b97d4d8c0ffd71317d21)) +- updated version of vci and fixed the libs for it ([ceb6074](https://github.com/Sphereon-Opensource/SSI-SDK/commit/ceb60748920fd78d318cb3544f69bef54b365c94)) +- updated version of vci and fixed the libs for it ([de1d6aa](https://github.com/Sphereon-Opensource/SSI-SDK/commit/de1d6aadcea1aac18bcd72a5651e3bb1e9f386d6)) + +### Features + +- Adapted the plugin to accept https urls, added tests and documentation about the changes ([73ab5ae](https://github.com/Sphereon-Opensource/SSI-SDK/commit/73ab5ae19d49229128db067b2fcfa396d7ace466)) +- allow default auth request options for VCI links/machines, like clientId and redirectUri ([434196e](https://github.com/Sphereon-Opensource/SSI-SDK/commit/434196e4ce2f895b43ec9992d682a603aaa612a3)) +- Allow to pass in state for url handler handle methods, allowing a statemachine to continue, without database persistence ([16e06e8](https://github.com/Sphereon-Opensource/SSI-SDK/commit/16e06e8c2b879c6fe706568a48e254ab2693bf78)) +- Run prettier ([2a9be95](https://github.com/Sphereon-Opensource/SSI-SDK/commit/2a9be958378f14ea935a0d0d7d4d4ba254036c43)) +- Support http(s) urls ([b3cc812](https://github.com/Sphereon-Opensource/SSI-SDK/commit/b3cc8126e02ca1ae638180644518ec47cfcafbf7)) +- Updated dependencies on the @sphereon/oid4vci ([00810ff](https://github.com/Sphereon-Opensource/SSI-SDK/commit/00810ff4a11f5b7794fdab431b47ca66f5e8f3f4)) + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) ### Features diff --git a/packages/oid4vci-holder/README.md b/packages/oid4vci-holder/README.md index 69d695097..ac9eca640 100644 --- a/packages/oid4vci-holder/README.md +++ b/packages/oid4vci-holder/README.md @@ -16,6 +16,16 @@ ### OPENID_CREDENTIAL_OFFER SCHEMA +authorization_code + +```typescript +agent.oid4vciHolderGetInitiationData({ + requestData: { + uri: 'openid-credential-offer%3A%2F%2F%3Fcredential_offer%3D%7B%22credential_issuer%22%3A%22https%3A%2F%2Fissuer.research.identiproof.io%22%2C%22credentials%22%3A%5B%7B%22format%22%3A%22jwt_vc_json%22%2C%22types%22%3A%5B%22VerifiableCredential%22%2C%22UniversityDegreeCredential%22%5D%7D%5D%2C%22grants%22%3A%7B%22authorization_code%22%3A%7B%22issuer_state%22%3A%22eyJhbGciOiJSU0Et...FYUaBy%22%7D%7D%7D', + }, +}) +``` + pre-authorized_code ```typescript diff --git a/packages/oid4vci-holder/__tests__/localAgent.test.ts b/packages/oid4vci-holder/__tests__/localAgent.test.ts index d0974718b..658e6676c 100644 --- a/packages/oid4vci-holder/__tests__/localAgent.test.ts +++ b/packages/oid4vci-holder/__tests__/localAgent.test.ts @@ -1,5 +1,5 @@ import { createObjects, getConfig } from '../../agent-config/dist' -import oid4vciHolderLogicAgentLogic from './shared/oid4vciHolderLogicAgentLogic' +import oid4vciHolderAgentLogic from './shared/oid4vciHolderLogicAgentLogic' jest.setTimeout(60000) @@ -25,5 +25,5 @@ const testContext = { } describe('Local integration tests', (): void => { - oid4vciHolderLogicAgentLogic(testContext) + oid4vciHolderAgentLogic(testContext) }) diff --git a/packages/oid4vci-holder/__tests__/restAgent.test.ts b/packages/oid4vci-holder/__tests__/restAgent.test.ts index 979339a6b..db1a8342e 100644 --- a/packages/oid4vci-holder/__tests__/restAgent.test.ts +++ b/packages/oid4vci-holder/__tests__/restAgent.test.ts @@ -6,7 +6,7 @@ import { createAgent, IAgent, IAgentOptions } from '@veramo/core' import { AgentRestClient } from '@veramo/remote-client' import { AgentRouter, RequestWithAgentRouter } from '@veramo/remote-server' import { createObjects, getConfig } from '../../agent-config/dist' -import oid4vciHolderLogicAgentLogic from './shared/oid4vciHolderLogicAgentLogic' +import oid4vciHolderAgentLogic from './shared/oid4vciHolderLogicAgentLogic' import { IOID4VCIHolder } from '../src' import { IMachineStatePersistence } from '@sphereon/ssi-sdk.xstate-machine-persistence' @@ -64,5 +64,5 @@ const testContext = { } describe('REST integration tests', (): void => { - oid4vciHolderLogicAgentLogic(testContext) + oid4vciHolderAgentLogic(testContext) }) diff --git a/packages/oid4vci-holder/__tests__/shared/MetadataMocks.ts b/packages/oid4vci-holder/__tests__/shared/MetadataMocks.ts index 2cf5bf6f9..ad955192b 100644 --- a/packages/oid4vci-holder/__tests__/shared/MetadataMocks.ts +++ b/packages/oid4vci-holder/__tests__/shared/MetadataMocks.ts @@ -1,160 +1,4 @@ -export const GET_INITIATION_DATA_PRE_AUTHORIZED_HTTPS_INITIATE_FLOW = { - credentialBranding: {}, - credentialsSupported: [], - openID4VCIClientState: { - authorizationRequestOpts: { - redirectUri: 'openid-credential-offer://', - }, - credentialIssuer: 'https://issuer.research.identiproof.io', - credentialOffer: { - baseUrl: 'https://issuer.research.identiproof.io', - credential_offer: { - credential_issuer: 'https://issuer.research.identiproof.io', - credentials: ['OpenBadgeCredentialUrl', 'VerifiableCredential'], - grants: { - 'urn:ietf:params:oauth:grant-type:pre-authorized_code': { - 'pre-authorized_code': - '4jLs9xZHEfqcoow0kHE7d1a8hUk6Sy-5bVSV2MqBUGUgiFFQi-ImL62T-FmLIo8hKA1UdMPH0lM1xAgcFkJfxIw9L-lI3mVs0hRT8YVwsEM1ma6N3wzuCdwtMU4bcwKp', - user_pin_required: true, - }, - }, - }, - original_credential_offer: { - credential_type: ['OpenBadgeCredentialUrl', 'VerifiableCredential'], - issuer: 'https://issuer.research.identiproof.io', - 'pre-authorized_code': - '4jLs9xZHEfqcoow0kHE7d1a8hUk6Sy-5bVSV2MqBUGUgiFFQi-ImL62T-FmLIo8hKA1UdMPH0lM1xAgcFkJfxIw9L-lI3mVs0hRT8YVwsEM1ma6N3wzuCdwtMU4bcwKp', - user_pin_required: 'true', - }, - preAuthorizedCode: - '4jLs9xZHEfqcoow0kHE7d1a8hUk6Sy-5bVSV2MqBUGUgiFFQi-ImL62T-FmLIo8hKA1UdMPH0lM1xAgcFkJfxIw9L-lI3mVs0hRT8YVwsEM1ma6N3wzuCdwtMU4bcwKp', - scheme: 'https', - supportedFlows: ['Pre-Authorized Code Flow'], - userPinRequired: true, - version: 1008, - }, - endpointMetadata: { - authorizationServerMetadata: { - authorization_endpoint: 'https://auth.research.identiproof.io/oauth2/authorize', - code_challenge_methods_supported: ['S256'], - grant_types_supported: ['authorization_code', 'urn:ietf:params:oauth:grant-type:pre-authorized_code', 'client_credentials', 'refresh_token'], - introspection_endpoint: 'https://auth.research.identiproof.io/oauth2/introspect', - introspection_endpoint_auth_methods_supported: ['client_secret_basic', 'client_secret_post', 'client_secret_jwt', 'private_key_jwt'], - issuer: 'https://auth.research.identiproof.io', - jwks_uri: 'https://auth.research.identiproof.io/oauth2/jwks', - response_types_supported: ['code'], - revocation_endpoint: 'https://auth.research.identiproof.io/oauth2/revoke', - revocation_endpoint_auth_methods_supported: ['client_secret_basic', 'client_secret_post', 'client_secret_jwt', 'private_key_jwt'], - token_endpoint: 'https://auth.research.identiproof.io/oauth2/token', - token_endpoint_auth_methods_supported: ['client_secret_basic', 'client_secret_post', 'client_secret_jwt', 'private_key_jwt'], - }, - authorizationServerType: 'OID4VCI', - authorization_endpoint: 'https://auth.research.identiproof.io/oauth2/authorize', - authorization_server: 'https://auth.research.identiproof.io', - credentialIssuerMetadata: { - authorization_server: 'https://auth.research.identiproof.io', - credential_endpoint: 'https://issuer.research.identiproof.io/credential', - credentials_supported: { - 'Cyber Security Certificate': { - formats: { - jwt_vc: { - cryptographic_binding_methods_supported: ['did'], - cryptographic_suites_supported: ['ES256'], - types: ['VerifiableCredential', 'Cyber Security Certificate'], - }, - }, - }, - OpenBadgeCredential: { - formats: { - jwt_vc: { - cryptographic_binding_methods_supported: ['did'], - cryptographic_suites_supported: ['ES256'], - types: ['VerifiableCredential', 'OpenBadgeCredential'], - }, - }, - }, - OpenBadgeExtendedCredential: { - formats: { - jwt_vc: { - cryptographic_binding_methods_supported: ['did'], - cryptographic_suites_supported: ['ES256'], - types: ['VerifiableCredential', 'OpenBadgeExtendedCredential'], - }, - }, - }, - }, - issuer: 'https://issuer.research.identiproof.io', - jwks_uri: 'https://issuer.research.identiproof.io/.well-known/did.json', - }, - credential_endpoint: 'https://issuer.research.identiproof.io/credential', - issuer: 'https://issuer.research.identiproof.io', - token_endpoint: 'https://auth.research.identiproof.io/oauth2/token', - }, - pkce: { - codeChallengeMethod: 'S256', - disabled: false, - }, - }, - serverMetadata: { - authorizationServerMetadata: { - authorization_endpoint: 'https://auth.research.identiproof.io/oauth2/authorize', - code_challenge_methods_supported: ['S256'], - grant_types_supported: ['authorization_code', 'urn:ietf:params:oauth:grant-type:pre-authorized_code', 'client_credentials', 'refresh_token'], - introspection_endpoint: 'https://auth.research.identiproof.io/oauth2/introspect', - introspection_endpoint_auth_methods_supported: ['client_secret_basic', 'client_secret_post', 'client_secret_jwt', 'private_key_jwt'], - issuer: 'https://auth.research.identiproof.io', - jwks_uri: 'https://auth.research.identiproof.io/oauth2/jwks', - response_types_supported: ['code'], - revocation_endpoint: 'https://auth.research.identiproof.io/oauth2/revoke', - revocation_endpoint_auth_methods_supported: ['client_secret_basic', 'client_secret_post', 'client_secret_jwt', 'private_key_jwt'], - token_endpoint: 'https://auth.research.identiproof.io/oauth2/token', - token_endpoint_auth_methods_supported: ['client_secret_basic', 'client_secret_post', 'client_secret_jwt', 'private_key_jwt'], - }, - authorizationServerType: 'OID4VCI', - authorization_endpoint: 'https://auth.research.identiproof.io/oauth2/authorize', - authorization_server: 'https://auth.research.identiproof.io', - credentialIssuerMetadata: { - authorization_server: 'https://auth.research.identiproof.io', - credential_endpoint: 'https://issuer.research.identiproof.io/credential', - credentials_supported: { - 'Cyber Security Certificate': { - formats: { - jwt_vc: { - cryptographic_binding_methods_supported: ['did'], - cryptographic_suites_supported: ['ES256'], - types: ['VerifiableCredential', 'Cyber Security Certificate'], - }, - }, - }, - OpenBadgeCredential: { - formats: { - jwt_vc: { - cryptographic_binding_methods_supported: ['did'], - cryptographic_suites_supported: ['ES256'], - types: ['VerifiableCredential', 'OpenBadgeCredential'], - }, - }, - }, - OpenBadgeExtendedCredential: { - formats: { - jwt_vc: { - cryptographic_binding_methods_supported: ['did'], - cryptographic_suites_supported: ['ES256'], - types: ['VerifiableCredential', 'OpenBadgeExtendedCredential'], - }, - }, - }, - }, - issuer: 'https://issuer.research.identiproof.io', - jwks_uri: 'https://issuer.research.identiproof.io/.well-known/did.json', - }, - credential_endpoint: 'https://issuer.research.identiproof.io/credential', - issuer: 'https://issuer.research.identiproof.io', - token_endpoint: 'https://auth.research.identiproof.io/oauth2/token', - }, -} - -export const GET_INITIATION_DATA_PRE_AUTHORIZED_OPENID_CREDENTIAL_OFFER = { +export const GET_PRE_AUTHORIZED_OPENID_CREDENTIAL_OFFER = { credentialBranding: {}, credentialsSupported: [], openID4VCIClientState: { @@ -477,7 +321,7 @@ export const GET_INITIATION_DATA_PRE_AUTHORIZED_OPENID_INITIATE_ISSUANCE = { }, } -export const GET_INITIATION_DATA_AUTHORIZATION_CODE_HTTPS = { +export const GET_CREDENTIAL_OFFER_AUTHORIZATION_CODE_HTTPS = { authorizationCodeURL: expect.any(String), credentialBranding: {}, credentialsSupported: [], @@ -647,7 +491,7 @@ export const GET_INITIATION_DATA_AUTHORIZATION_CODE_HTTPS = { }, } -export const GET_INITIATION_DATA_PRE_AUTHORIZED_CODE_HTTPS = { +export const GET_CREDENTIAL_OFFER_PRE_AUTHORIZED_CODE_HTTPS = { credentialBranding: {}, credentialsSupported: [], openID4VCIClientState: { diff --git a/packages/oid4vci-holder/__tests__/shared/oid4vciHolderLogicAgentLogic.ts b/packages/oid4vci-holder/__tests__/shared/oid4vciHolderLogicAgentLogic.ts index 8c83a81bd..0c2062551 100644 --- a/packages/oid4vci-holder/__tests__/shared/oid4vciHolderLogicAgentLogic.ts +++ b/packages/oid4vci-holder/__tests__/shared/oid4vciHolderLogicAgentLogic.ts @@ -2,10 +2,9 @@ import { TAgent } from '@veramo/core' import { IOID4VCIHolder } from '../../src' import { AccessTokenResponse, WellKnownEndpoints } from '@sphereon/oid4vci-common' import { - GET_INITIATION_DATA_AUTHORIZATION_CODE_HTTPS, - GET_INITIATION_DATA_PRE_AUTHORIZED_CODE_HTTPS, - GET_INITIATION_DATA_PRE_AUTHORIZED_HTTPS_INITIATE_FLOW, - GET_INITIATION_DATA_PRE_AUTHORIZED_OPENID_CREDENTIAL_OFFER, + GET_CREDENTIAL_OFFER_AUTHORIZATION_CODE_HTTPS, + GET_CREDENTIAL_OFFER_PRE_AUTHORIZED_CODE_HTTPS, + GET_PRE_AUTHORIZED_OPENID_CREDENTIAL_OFFER, GET_INITIATION_DATA_PRE_AUTHORIZED_OPENID_INITIATE_ISSUANCE, IDENTIPROOF_AS_METADATA, IDENTIPROOF_AS_URL, @@ -33,8 +32,6 @@ const INITIATE_QR_PRE_AUTHORIZED = 'openid-initiate-issuance://?issuer=https%3A%2F%2Fissuer.research.identiproof.io&credential_type=OpenBadgeCredentialUrl&pre-authorized_code=4jLs9xZHEfqcoow0kHE7d1a8hUk6Sy-5bVSV2MqBUGUgiFFQi-ImL62T-FmLIo8hKA1UdMPH0lM1xAgcFkJfxIw9L-lI3mVs0hRT8YVwsEM1ma6N3wzuCdwtMU4bcwKp&user_pin_required=true' const OFFER_QR_PRE_AUTHORIZED = 'openid-credential-offer://?credential_offer=%7B%22credential_issuer%22%3A%22https%3A%2F%2Fissuer.research.identiproof.io%22%2C%22credentials%22%3A%5B%7B%22format%22%3A%22jwt_vc_json%22%2C%22types%22%3A%5B%22VerifiableCredential%22%2C%22UniversityDegreeCredential%22%5D%7D%5D%2C%22grants%22%3A%7B%22urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Apre-authorized_code%22%3A%7B%22pre-authorized_code%22%3A%22adhjhdjajkdkhjhdj%22%2C%22user_pin_required%22%3Atrue%7D%7D%7D' -const HTTPS_INITIATE_QR = - 'https://issuer.research.identiproof.io?issuer=https%3A%2F%2Fissuer.research.identiproof.io&credential_type=OpenBadgeCredentialUrl&pre-authorized_code=4jLs9xZHEfqcoow0kHE7d1a8hUk6Sy-5bVSV2MqBUGUgiFFQi-ImL62T-FmLIo8hKA1UdMPH0lM1xAgcFkJfxIw9L-lI3mVs0hRT8YVwsEM1ma6N3wzuCdwtMU4bcwKp&user_pin_required=true' const HTTPS_OFFER_QR_AUTHORIZATION_CODE = 'https://issuer.research.identiproof.io?credential_offer=%7B%22credential_issuer%22%3A%22https%3A%2F%2Fissuer.research.identiproof.io%22%2C%22credentials%22%3A%5B%7B%22format%22%3A%22jwt_vc_json%22%2C%22types%22%3A%5B%22VerifiableCredential%22%2C%22UniversityDegreeCredential%22%5D%7D%5D%2C%22grants%22%3A%7B%22authorization_code%22%3A%7B%22issuer_state%22%3A%22eyJhbGciOiJSU0Et...FYUaBy%22%7D%7D%7D' const HTTPS_OFFER_QR_PRE_AUTHORIZED = @@ -87,19 +84,7 @@ export default (testContext: { getAgent: () => ConfiguredAgent; setup: () => Pro uri: OFFER_QR_PRE_AUTHORIZED, }, }), - ).resolves.toEqual(GET_INITIATION_DATA_PRE_AUTHORIZED_OPENID_CREDENTIAL_OFFER) - }) - - // fixme: bring this test back - it.skip('should get initialization data using pre-authorized_code and https draft < 9', async (): Promise => { - succeedWithAFullFlowWithClientSetup() - await expect( - agent.oid4vciHolderGetInitiationData({ - requestData: { - uri: HTTPS_INITIATE_QR, - }, - }), - ).resolves.toEqual(GET_INITIATION_DATA_PRE_AUTHORIZED_HTTPS_INITIATE_FLOW) + ).resolves.toEqual(GET_PRE_AUTHORIZED_OPENID_CREDENTIAL_OFFER) }) // fixme: bring this test back @@ -111,7 +96,7 @@ export default (testContext: { getAgent: () => ConfiguredAgent; setup: () => Pro uri: HTTPS_OFFER_QR_AUTHORIZATION_CODE, }, }), - ).resolves.toEqual(GET_INITIATION_DATA_AUTHORIZATION_CODE_HTTPS) + ).resolves.toEqual(GET_CREDENTIAL_OFFER_AUTHORIZATION_CODE_HTTPS) }) // fixme: bring this test back @@ -123,7 +108,7 @@ export default (testContext: { getAgent: () => ConfiguredAgent; setup: () => Pro uri: HTTPS_OFFER_QR_PRE_AUTHORIZED, }, }), - ).resolves.toEqual(GET_INITIATION_DATA_PRE_AUTHORIZED_CODE_HTTPS) + ).resolves.toEqual(GET_CREDENTIAL_OFFER_PRE_AUTHORIZED_CODE_HTTPS) }) }) } diff --git a/packages/oid4vci-holder/package.json b/packages/oid4vci-holder/package.json index aea82f1cf..2a8e9e0a7 100644 --- a/packages/oid4vci-holder/package.json +++ b/packages/oid4vci-holder/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.oid4vci-holder", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -14,10 +14,10 @@ "build:clean": "tsc --build --clean && tsc --build" }, "dependencies": { - "@sphereon/oid4vci-client": "0.10.4-unstable.116", - "@sphereon/oid4vci-common": "0.10.4-unstable.116", - "@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.20.0", - "@sphereon/ssi-sdk-ext.did-utils": "0.20.0", + "@sphereon/oid4vci-client": "0.12.0", + "@sphereon/oid4vci-common": "0.12.0", + "@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.21.0", + "@sphereon/ssi-sdk-ext.did-utils": "0.21.0", "@sphereon/ssi-sdk.contact-manager": "workspace:*", "@sphereon/ssi-sdk.core": "workspace:*", "@sphereon/ssi-sdk.data-store": "workspace:*", @@ -38,6 +38,7 @@ "@types/uuid": "^9.0.8", "@veramo/remote-client": "4.2.0", "@veramo/remote-server": "4.2.0", + "nock": "^13.5.4", "typeorm": "^0.3.20", "typescript": "^5.4.2" }, diff --git a/packages/oid4vci-holder/src/agent/OID4VCIHolder.ts b/packages/oid4vci-holder/src/agent/OID4VCIHolder.ts index 70ecfa28b..6744f6792 100644 --- a/packages/oid4vci-holder/src/agent/OID4VCIHolder.ts +++ b/packages/oid4vci-holder/src/agent/OID4VCIHolder.ts @@ -269,8 +269,7 @@ export class OID4VCIHolder implements IAgentPlugin { !( requestData?.uri.startsWith(RequestType.OPENID_INITIATE_ISSUANCE) || requestData?.uri.startsWith(RequestType.OPENID_CREDENTIAL_OFFER) || - requestData?.uri.startsWith(RequestType.HTTPS) || - requestData?.uri.startsWith(RequestType.HTTP) + requestData?.uri.startsWith(RequestType.URL) ) ) { return Promise.reject(Error(`Invalid OID4VCI credential offer URI: ${requestData?.uri}`)) diff --git a/packages/oid4vci-holder/src/types/IOID4VCIHolder.ts b/packages/oid4vci-holder/src/types/IOID4VCIHolder.ts index 3ce7e29d3..eb3dd005f 100644 --- a/packages/oid4vci-holder/src/types/IOID4VCIHolder.ts +++ b/packages/oid4vci-holder/src/types/IOID4VCIHolder.ts @@ -315,8 +315,7 @@ export type ErrorDetails = { export enum RequestType { OPENID_INITIATE_ISSUANCE = 'openid-initiate-issuance', OPENID_CREDENTIAL_OFFER = 'openid-credential-offer', - HTTPS = 'https', - HTTP = 'http', + URL = 'http', } export type CredentialTypeSelection = ExperimentalSubjectIssuance & { diff --git a/packages/oid4vci-issuer-rest-api/CHANGELOG.md b/packages/oid4vci-issuer-rest-api/CHANGELOG.md index fe5caf469..1cdcb7b75 100644 --- a/packages/oid4vci-issuer-rest-api/CHANGELOG.md +++ b/packages/oid4vci-issuer-rest-api/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +### Bug Fixes + +- clientId fixes ([cad41fc](https://github.com/Sphereon-Opensource/SSI-SDK/commit/cad41fc296a06b7e25dcd957da21eae4d02f7b46)) +- updated vci package and fixed getSupportedCredential function ([780a377](https://github.com/Sphereon-Opensource/SSI-SDK/commit/780a37782881da1558f7b97d4d8c0ffd71317d21)) +- updated version of vci and fixed the libs for it ([ceb6074](https://github.com/Sphereon-Opensource/SSI-SDK/commit/ceb60748920fd78d318cb3544f69bef54b365c94)) +- updated version of vci and fixed the libs for it ([de1d6aa](https://github.com/Sphereon-Opensource/SSI-SDK/commit/de1d6aadcea1aac18bcd72a5651e3bb1e9f386d6)) + +### Features + +- allow default auth request options for VCI links/machines, like clientId and redirectUri ([434196e](https://github.com/Sphereon-Opensource/SSI-SDK/commit/434196e4ce2f895b43ec9992d682a603aaa612a3)) + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.oid4vci-issuer-rest-api diff --git a/packages/oid4vci-issuer-rest-api/package.json b/packages/oid4vci-issuer-rest-api/package.json index fc482d05a..6c3889b24 100644 --- a/packages/oid4vci-issuer-rest-api/package.json +++ b/packages/oid4vci-issuer-rest-api/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.oid4vci-issuer-rest-api", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -11,9 +11,9 @@ "start:dev": "ts-node __tests__/RestAPI.ts" }, "dependencies": { - "@sphereon/oid4vci-common": "0.10.4-unstable.116", - "@sphereon/oid4vci-issuer": "0.10.4-unstable.116", - "@sphereon/oid4vci-issuer-server": "0.10.4-unstable.116", + "@sphereon/oid4vci-common": "0.12.0", + "@sphereon/oid4vci-issuer": "0.12.0", + "@sphereon/oid4vci-issuer-server": "0.12.0", "@sphereon/ssi-express-support": "workspace:*", "@sphereon/ssi-sdk.kv-store-temp": "workspace:*", "@sphereon/ssi-sdk.oid4vci-issuer": "workspace:*", @@ -35,10 +35,10 @@ "@sphereon/did-uni-client": "^0.6.3", "@sphereon/pex": "3.3.3", "@sphereon/pex-models": "^2.2.4", - "@sphereon/ssi-sdk-ext.did-provider-jwk": "0.20.0", - "@sphereon/ssi-sdk-ext.key-manager": "0.20.0", - "@sphereon/ssi-sdk-ext.key-utils": "0.20.0", - "@sphereon/ssi-sdk-ext.kms-local": "0.20.0", + "@sphereon/ssi-sdk-ext.did-provider-jwk": "0.21.0", + "@sphereon/ssi-sdk-ext.key-manager": "0.21.0", + "@sphereon/ssi-sdk-ext.key-utils": "0.21.0", + "@sphereon/ssi-sdk-ext.kms-local": "0.21.0", "@sphereon/ssi-sdk.data-store": "workspace:*", "@sphereon/ssi-sdk.vc-handler-ld-local": "workspace:*", "@types/body-parser": "^1.19.2", diff --git a/packages/oid4vci-issuer-rest-client/CHANGELOG.md b/packages/oid4vci-issuer-rest-client/CHANGELOG.md index 7a0db42a4..c46b7186a 100644 --- a/packages/oid4vci-issuer-rest-client/CHANGELOG.md +++ b/packages/oid4vci-issuer-rest-client/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.25.0...v0.26.0) (2024-06-19) + +### Bug Fixes + +- clientId fixes ([cad41fc](https://github.com/Sphereon-OpenSource/ssi-sdk/commit/cad41fc296a06b7e25dcd957da21eae4d02f7b46)) +- updated vci package and fixed getSupportedCredential function ([780a377](https://github.com/Sphereon-OpenSource/ssi-sdk/commit/780a37782881da1558f7b97d4d8c0ffd71317d21)) +- updated version of vci and fixed the libs for it ([ceb6074](https://github.com/Sphereon-OpenSource/ssi-sdk/commit/ceb60748920fd78d318cb3544f69bef54b365c94)) +- updated version of vci and fixed the libs for it ([de1d6aa](https://github.com/Sphereon-OpenSource/ssi-sdk/commit/de1d6aadcea1aac18bcd72a5651e3bb1e9f386d6)) + +### Features + +- allow default auth request options for VCI links/machines, like clientId and redirectUri ([434196e](https://github.com/Sphereon-OpenSource/ssi-sdk/commit/434196e4ce2f895b43ec9992d682a603aaa612a3)) + # [0.25.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.oid4vci-issuer-rest-client diff --git a/packages/oid4vci-issuer-rest-client/package.json b/packages/oid4vci-issuer-rest-client/package.json index 25db23db7..db6e348c2 100644 --- a/packages/oid4vci-issuer-rest-client/package.json +++ b/packages/oid4vci-issuer-rest-client/package.json @@ -1,7 +1,7 @@ { "name": "@sphereon/ssi-sdk.oid4vci-issuer-rest-client", "description": "contains the client side to call REST endpoints of a Verifiable Credential Issuer", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -16,7 +16,7 @@ "generate-plugin-schema": "ts-node ../../packages/dev/bin/sphereon.js dev generate-plugin-schema" }, "dependencies": { - "@sphereon/oid4vci-common": "0.10.4-unstable.116", + "@sphereon/oid4vci-common": "0.12.0", "@sphereon/ssi-types": "workspace:*", "@veramo/core": "4.2.0", "cross-fetch": "^3.1.8" diff --git a/packages/oid4vci-issuer-store/CHANGELOG.md b/packages/oid4vci-issuer-store/CHANGELOG.md index cf23022cc..874e0ce8c 100644 --- a/packages/oid4vci-issuer-store/CHANGELOG.md +++ b/packages/oid4vci-issuer-store/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +### Bug Fixes + +- clientId fixes ([cad41fc](https://github.com/Sphereon-Opensource/SSI-SDK/commit/cad41fc296a06b7e25dcd957da21eae4d02f7b46)) +- updated vci package and fixed getSupportedCredential function ([780a377](https://github.com/Sphereon-Opensource/SSI-SDK/commit/780a37782881da1558f7b97d4d8c0ffd71317d21)) +- updated version of vci and fixed the libs for it ([ceb6074](https://github.com/Sphereon-Opensource/SSI-SDK/commit/ceb60748920fd78d318cb3544f69bef54b365c94)) +- updated version of vci and fixed the libs for it ([de1d6aa](https://github.com/Sphereon-Opensource/SSI-SDK/commit/de1d6aadcea1aac18bcd72a5651e3bb1e9f386d6)) + +### Features + +- allow default auth request options for VCI links/machines, like clientId and redirectUri ([434196e](https://github.com/Sphereon-Opensource/SSI-SDK/commit/434196e4ce2f895b43ec9992d682a603aaa612a3)) + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.oid4vci-issuer-store diff --git a/packages/oid4vci-issuer-store/package.json b/packages/oid4vci-issuer-store/package.json index 58681f67b..0ec3cd83b 100644 --- a/packages/oid4vci-issuer-store/package.json +++ b/packages/oid4vci-issuer-store/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.oid4vci-issuer-store", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -14,8 +14,8 @@ "build:clean": "tsc --build --clean && tsc --build" }, "dependencies": { - "@sphereon/oid4vci-common": "0.10.4-unstable.116", - "@sphereon/ssi-sdk-ext.did-utils": "0.20.0", + "@sphereon/oid4vci-common": "0.12.0", + "@sphereon/ssi-sdk-ext.did-utils": "0.21.0", "@sphereon/ssi-sdk.kv-store-temp": "workspace:*", "@veramo/core": "4.2.0", "@veramo/credential-w3c": "4.2.0", diff --git a/packages/oid4vci-issuer/CHANGELOG.md b/packages/oid4vci-issuer/CHANGELOG.md index 374ebd223..908fb3ee5 100644 --- a/packages/oid4vci-issuer/CHANGELOG.md +++ b/packages/oid4vci-issuer/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +### Bug Fixes + +- clientId fixes ([cad41fc](https://github.com/Sphereon-Opensource/SSI-SDK/commit/cad41fc296a06b7e25dcd957da21eae4d02f7b46)) +- updated vci package and fixed getSupportedCredential function ([780a377](https://github.com/Sphereon-Opensource/SSI-SDK/commit/780a37782881da1558f7b97d4d8c0ffd71317d21)) +- updated version of vci and fixed the libs for it ([ceb6074](https://github.com/Sphereon-Opensource/SSI-SDK/commit/ceb60748920fd78d318cb3544f69bef54b365c94)) +- updated version of vci and fixed the libs for it ([de1d6aa](https://github.com/Sphereon-Opensource/SSI-SDK/commit/de1d6aadcea1aac18bcd72a5651e3bb1e9f386d6)) + +### Features + +- allow default auth request options for VCI links/machines, like clientId and redirectUri ([434196e](https://github.com/Sphereon-Opensource/SSI-SDK/commit/434196e4ce2f895b43ec9992d682a603aaa612a3)) + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.oid4vci-issuer diff --git a/packages/oid4vci-issuer/package.json b/packages/oid4vci-issuer/package.json index 49205e394..a74ad090c 100644 --- a/packages/oid4vci-issuer/package.json +++ b/packages/oid4vci-issuer/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.oid4vci-issuer", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -14,9 +14,9 @@ "build:clean": "tsc --build --clean && tsc --build" }, "dependencies": { - "@sphereon/oid4vci-common": "0.10.4-unstable.116", - "@sphereon/oid4vci-issuer": "0.10.4-unstable.116", - "@sphereon/ssi-sdk-ext.did-utils": "0.20.0", + "@sphereon/oid4vci-common": "0.12.0", + "@sphereon/oid4vci-issuer": "0.12.0", + "@sphereon/ssi-sdk-ext.did-utils": "0.21.0", "@sphereon/ssi-sdk.core": "workspace:*", "@sphereon/ssi-sdk.kv-store-temp": "workspace:*", "@sphereon/ssi-sdk.oid4vci-issuer-store": "workspace:*", diff --git a/packages/pd-manager-rest-api/CHANGELOG.md b/packages/pd-manager-rest-api/CHANGELOG.md index 62f8f752b..6378451ad 100644 --- a/packages/pd-manager-rest-api/CHANGELOG.md +++ b/packages/pd-manager-rest-api/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.pd-manager-rest-api + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) ### Features diff --git a/packages/pd-manager-rest-api/package.json b/packages/pd-manager-rest-api/package.json index 9a58891a3..45e3cebc0 100644 --- a/packages/pd-manager-rest-api/package.json +++ b/packages/pd-manager-rest-api/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.pd-manager-rest-api", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/pd-manager/CHANGELOG.md b/packages/pd-manager/CHANGELOG.md index 62f8f752b..c3d30b3e7 100644 --- a/packages/pd-manager/CHANGELOG.md +++ b/packages/pd-manager/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.pd-manager + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) ### Features diff --git a/packages/pd-manager/package.json b/packages/pd-manager/package.json index 4b2fe1e7c..ca86e186d 100644 --- a/packages/pd-manager/package.json +++ b/packages/pd-manager/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.pd-manager", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/presentation-exchange/CHANGELOG.md b/packages/presentation-exchange/CHANGELOG.md index 68610fdf0..42d0ea669 100644 --- a/packages/presentation-exchange/CHANGELOG.md +++ b/packages/presentation-exchange/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.presentation-exchange + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) ### Features diff --git a/packages/presentation-exchange/package.json b/packages/presentation-exchange/package.json index 88cd4f2d0..27565a5b8 100644 --- a/packages/presentation-exchange/package.json +++ b/packages/presentation-exchange/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.presentation-exchange", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -16,7 +16,7 @@ "dependencies": { "@sphereon/pex": "^3.3.3", "@sphereon/pex-models": "^2.2.4", - "@sphereon/ssi-sdk-ext.did-utils": "0.20.0", + "@sphereon/ssi-sdk-ext.did-utils": "0.21.0", "@sphereon/ssi-sdk.data-store": "workspace:*", "@sphereon/ssi-types": "workspace:*", "@veramo/core": "4.2.0" diff --git a/packages/qr-code-generator/CHANGELOG.md b/packages/qr-code-generator/CHANGELOG.md index 60d8e08de..64842fbac 100644 --- a/packages/qr-code-generator/CHANGELOG.md +++ b/packages/qr-code-generator/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.qr-code-generator + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.qr-code-generator diff --git a/packages/qr-code-generator/package.json b/packages/qr-code-generator/package.json index 21f9a4424..acc847ae9 100644 --- a/packages/qr-code-generator/package.json +++ b/packages/qr-code-generator/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.qr-code-generator", - "version": "0.25.0", + "version": "0.26.0", "description": "QR Code provider (react)", "source": "src/index.ts", "main": "dist/index.js", diff --git a/packages/remote-server-rest-api/CHANGELOG.md b/packages/remote-server-rest-api/CHANGELOG.md index 629992acf..ac7852afb 100644 --- a/packages/remote-server-rest-api/CHANGELOG.md +++ b/packages/remote-server-rest-api/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.remote-server-rest-api + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.remote-server-rest-api diff --git a/packages/remote-server-rest-api/package.json b/packages/remote-server-rest-api/package.json index 5c571bdc1..211a2dfa9 100644 --- a/packages/remote-server-rest-api/package.json +++ b/packages/remote-server-rest-api/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.remote-server-rest-api", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/sd-jwt/CHANGELOG.md b/packages/sd-jwt/CHANGELOG.md index 7e9bdfdea..b870e1040 100644 --- a/packages/sd-jwt/CHANGELOG.md +++ b/packages/sd-jwt/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.sd-jwt + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) ### Features diff --git a/packages/sd-jwt/package.json b/packages/sd-jwt/package.json index cd7211bf9..41f698f86 100644 --- a/packages/sd-jwt/package.json +++ b/packages/sd-jwt/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.sd-jwt", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -17,7 +17,7 @@ "dependencies": { "@sd-jwt/core": "^0.6.1", "@sd-jwt/sd-jwt-vc": "^0.6.1", - "@sphereon/ssi-sdk-ext.did-utils": "0.20.0", + "@sphereon/ssi-sdk-ext.did-utils": "0.21.0", "@veramo/utils": "4.2.0", "debug": "^4.3.5" }, @@ -25,10 +25,10 @@ "@sd-jwt/decode": "^0.6.1", "@sd-jwt/types": "^0.6.1", "@sd-jwt/utils": "^0.6.1", - "@sphereon/ssi-sdk-ext.did-provider-jwk": "0.20.0", - "@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.20.0", - "@sphereon/ssi-sdk-ext.key-manager": "0.20.0", - "@sphereon/ssi-sdk-ext.kms-local": "0.20.0", + "@sphereon/ssi-sdk-ext.did-provider-jwk": "0.21.0", + "@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.21.0", + "@sphereon/ssi-sdk-ext.key-manager": "0.21.0", + "@sphereon/ssi-sdk-ext.kms-local": "0.21.0", "@types/node": "18.15.3", "@veramo/core": "4.2.0", "@veramo/data-store": "4.2.0", diff --git a/packages/siopv2-oid4vp-common/CHANGELOG.md b/packages/siopv2-oid4vp-common/CHANGELOG.md index 4ae42eec3..2c0385aa4 100644 --- a/packages/siopv2-oid4vp-common/CHANGELOG.md +++ b/packages/siopv2-oid4vp-common/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.siopv2-oid4vp-common + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.siopv2-oid4vp-common diff --git a/packages/siopv2-oid4vp-common/package.json b/packages/siopv2-oid4vp-common/package.json index 0c4649fdf..ea8e0bef1 100644 --- a/packages/siopv2-oid4vp-common/package.json +++ b/packages/siopv2-oid4vp-common/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.siopv2-oid4vp-common", - "version": "0.25.0", + "version": "0.26.0", "description": "Common SIOPv2 and OID4VP types between modules", "source": "src/index.ts", "main": "dist/index.js", diff --git a/packages/siopv2-oid4vp-op-auth/CHANGELOG.md b/packages/siopv2-oid4vp-op-auth/CHANGELOG.md index cc2a78eb9..5acdb1a4a 100644 --- a/packages/siopv2-oid4vp-op-auth/CHANGELOG.md +++ b/packages/siopv2-oid4vp-op-auth/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.siopv2-oid4vp-op-auth + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.siopv2-oid4vp-op-auth diff --git a/packages/siopv2-oid4vp-op-auth/package.json b/packages/siopv2-oid4vp-op-auth/package.json index adb74d061..65d082248 100644 --- a/packages/siopv2-oid4vp-op-auth/package.json +++ b/packages/siopv2-oid4vp-op-auth/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.siopv2-oid4vp-op-auth", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -17,7 +17,7 @@ "@sphereon/did-auth-siop": "0.6.4", "@sphereon/pex": "^3.3.3", "@sphereon/pex-models": "2.2.4", - "@sphereon/ssi-sdk-ext.did-utils": "0.20.0", + "@sphereon/ssi-sdk-ext.did-utils": "0.21.0", "@sphereon/ssi-sdk.core": "workspace:*", "@sphereon/ssi-sdk.pd-manager": "workspace:*", "@sphereon/ssi-sdk.presentation-exchange": "workspace:*", diff --git a/packages/siopv2-oid4vp-rp-auth/CHANGELOG.md b/packages/siopv2-oid4vp-rp-auth/CHANGELOG.md index 38c943f50..df77ecb08 100644 --- a/packages/siopv2-oid4vp-rp-auth/CHANGELOG.md +++ b/packages/siopv2-oid4vp-rp-auth/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.siopv2-oid4vp-rp-auth + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.siopv2-oid4vp-rp-auth diff --git a/packages/siopv2-oid4vp-rp-auth/package.json b/packages/siopv2-oid4vp-rp-auth/package.json index a236d9894..5a06a71e6 100644 --- a/packages/siopv2-oid4vp-rp-auth/package.json +++ b/packages/siopv2-oid4vp-rp-auth/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.siopv2-oid4vp-rp-auth", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -16,7 +16,7 @@ "dependencies": { "@sphereon/did-auth-siop": "0.6.4", "@sphereon/pex": "^3.3.3", - "@sphereon/ssi-sdk-ext.did-utils": "0.20.0", + "@sphereon/ssi-sdk-ext.did-utils": "0.21.0", "@sphereon/ssi-sdk.core": "workspace:*", "@sphereon/ssi-sdk.kv-store-temp": "workspace:*", "@sphereon/ssi-sdk.pd-manager": "workspace:*", diff --git a/packages/siopv2-oid4vp-rp-rest-api/CHANGELOG.md b/packages/siopv2-oid4vp-rp-rest-api/CHANGELOG.md index 3302b2b81..19505ef63 100644 --- a/packages/siopv2-oid4vp-rp-rest-api/CHANGELOG.md +++ b/packages/siopv2-oid4vp-rp-rest-api/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.siopv2-oid4vp-rp-rest-api + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.siopv2-oid4vp-rp-rest-api diff --git a/packages/siopv2-oid4vp-rp-rest-api/package.json b/packages/siopv2-oid4vp-rp-rest-api/package.json index db0c65840..6c12d2faa 100644 --- a/packages/siopv2-oid4vp-rp-rest-api/package.json +++ b/packages/siopv2-oid4vp-rp-rest-api/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.siopv2-oid4vp-rp-rest-api", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -36,7 +36,7 @@ "@sphereon/did-uni-client": "^0.6.3", "@sphereon/pex": "^3.3.3", "@sphereon/pex-models": "^2.2.4", - "@sphereon/ssi-sdk-ext.did-provider-jwk": "0.20.0", + "@sphereon/ssi-sdk-ext.did-provider-jwk": "0.21.0", "@sphereon/ssi-sdk.data-store": "workspace:*", "@sphereon/ssi-sdk.vc-handler-ld-local": "workspace:*", "@types/body-parser": "^1.19.2", diff --git a/packages/siopv2-oid4vp-rp-rest-client/CHANGELOG.md b/packages/siopv2-oid4vp-rp-rest-client/CHANGELOG.md index b8c1ec45c..162de298e 100644 --- a/packages/siopv2-oid4vp-rp-rest-client/CHANGELOG.md +++ b/packages/siopv2-oid4vp-rp-rest-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.siopv2-oid4vp-rp-rest-client + # [0.25.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.siopv2-oid4vp-rp-rest-client diff --git a/packages/siopv2-oid4vp-rp-rest-client/package.json b/packages/siopv2-oid4vp-rp-rest-client/package.json index 1c3c09ddb..cfe343d81 100644 --- a/packages/siopv2-oid4vp-rp-rest-client/package.json +++ b/packages/siopv2-oid4vp-rp-rest-client/package.json @@ -1,7 +1,7 @@ { "name": "@sphereon/ssi-sdk.siopv2-oid4vp-rp-rest-client", "description": "contains the client side to call REST endpoints of relying party", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/ssi-express-support/CHANGELOG.md b/packages/ssi-express-support/CHANGELOG.md index dad3e54df..3cc9dabaf 100644 --- a/packages/ssi-express-support/CHANGELOG.md +++ b/packages/ssi-express-support/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +### Bug Fixes + +- clientId fixes ([cad41fc](https://github.com/Sphereon-Opensource/SSI-SDK/commit/cad41fc296a06b7e25dcd957da21eae4d02f7b46)) + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-express-support diff --git a/packages/ssi-express-support/package.json b/packages/ssi-express-support/package.json index b4860faea..3e557b3e4 100644 --- a/packages/ssi-express-support/package.json +++ b/packages/ssi-express-support/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-express-support", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/ssi-sdk-core/CHANGELOG.md b/packages/ssi-sdk-core/CHANGELOG.md index c7c834a90..f38887fb1 100644 --- a/packages/ssi-sdk-core/CHANGELOG.md +++ b/packages/ssi-sdk-core/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.25.0...v0.26.0) (2024-06-19) + +### Features + +- Allow to pass in options when emitting link handler events ([0293342](https://github.com/Sphereon-OpenSource/ssi-sdk/commit/02933423f1e3c68621b4fc80c574b531e47211b4)) +- Allow to pass in state for url handler handle methods, allowing a statemachine to continue, without database persistence ([16e06e8](https://github.com/Sphereon-OpenSource/ssi-sdk/commit/16e06e8c2b879c6fe706568a48e254ab2693bf78)) + # [0.25.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.core diff --git a/packages/ssi-sdk-core/package.json b/packages/ssi-sdk-core/package.json index 0b13d3e23..e74487582 100644 --- a/packages/ssi-sdk-core/package.json +++ b/packages/ssi-sdk-core/package.json @@ -1,7 +1,7 @@ { "name": "@sphereon/ssi-sdk.core", "description": "SSI SDK Core & Interfaces", - "version": "0.25.0", + "version": "0.26.0", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { diff --git a/packages/ssi-types/CHANGELOG.md b/packages/ssi-types/CHANGELOG.md index 1d86f7bf6..c1350b034 100644 --- a/packages/ssi-types/CHANGELOG.md +++ b/packages/ssi-types/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-types + # [0.25.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.24.0...v0.25.0) (2024-06-13) ### Bug Fixes diff --git a/packages/ssi-types/package.json b/packages/ssi-types/package.json index 3d8a6efab..b5620c394 100644 --- a/packages/ssi-types/package.json +++ b/packages/ssi-types/package.json @@ -1,7 +1,7 @@ { "name": "@sphereon/ssi-types", "description": "SSI Common Types", - "version": "0.25.0", + "version": "0.26.0", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { diff --git a/packages/uni-resolver-registrar-api/CHANGELOG.md b/packages/uni-resolver-registrar-api/CHANGELOG.md index 5c260eaed..de6476e3e 100644 --- a/packages/uni-resolver-registrar-api/CHANGELOG.md +++ b/packages/uni-resolver-registrar-api/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.uni-resolver-registrar-api + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.uni-resolver-registrar-api diff --git a/packages/uni-resolver-registrar-api/package.json b/packages/uni-resolver-registrar-api/package.json index 561acf966..9a3d7e6b4 100644 --- a/packages/uni-resolver-registrar-api/package.json +++ b/packages/uni-resolver-registrar-api/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.uni-resolver-registrar-api", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -12,9 +12,9 @@ }, "dependencies": { "@sphereon/ssi-express-support": "workspace:*", - "@sphereon/ssi-sdk-ext.did-utils": "0.20.0", - "@sphereon/ssi-sdk-ext.key-manager": "0.20.0", - "@sphereon/ssi-sdk-ext.key-utils": "0.20.0", + "@sphereon/ssi-sdk-ext.did-utils": "0.21.0", + "@sphereon/ssi-sdk-ext.key-manager": "0.21.0", + "@sphereon/ssi-sdk-ext.key-utils": "0.21.0", "@sphereon/ssi-sdk.core": "workspace:*", "@sphereon/ssi-types": "workspace:*", "@veramo/core": "4.2.0", @@ -31,8 +31,8 @@ }, "devDependencies": { "@sphereon/did-uni-client": "^0.6.3", - "@sphereon/ssi-sdk-ext.did-provider-jwk": "0.20.0", - "@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.20.0", + "@sphereon/ssi-sdk-ext.did-provider-jwk": "0.21.0", + "@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.21.0", "@sphereon/ssi-sdk.data-store": "workspace:*", "@sphereon/ssi-sdk.vc-handler-ld-local": "workspace:*", "@types/body-parser": "^1.19.2", diff --git a/packages/vc-handler-ld-local/CHANGELOG.md b/packages/vc-handler-ld-local/CHANGELOG.md index fea872cf6..1b9052a65 100644 --- a/packages/vc-handler-ld-local/CHANGELOG.md +++ b/packages/vc-handler-ld-local/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +### Bug Fixes + +- Make sure we import path/fs only when really needed for object-creation. Ensure we use agent-config plugin only in places it is needed ([76b4f53](https://github.com/Sphereon-Opensource/SSI-SDK/commit/76b4f53693ba6105fc00bdd93d78587defc9e183)) + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.vc-handler-ld-local diff --git a/packages/vc-handler-ld-local/package.json b/packages/vc-handler-ld-local/package.json index 964cf8e06..94a7b2d93 100644 --- a/packages/vc-handler-ld-local/package.json +++ b/packages/vc-handler-ld-local/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.vc-handler-ld-local", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -24,8 +24,8 @@ "@digitalcredentials/x25519-key-agreement-2020-context": "^1.0.0", "@noble/hashes": "^1.2.0", "@sphereon/isomorphic-webcrypto": "^2.4.1-unstable.0", - "@sphereon/ssi-sdk-ext.did-utils": "0.20.0", - "@sphereon/ssi-sdk-ext.key-utils": "0.20.0", + "@sphereon/ssi-sdk-ext.did-utils": "0.21.0", + "@sphereon/ssi-sdk-ext.key-utils": "0.21.0", "@sphereon/ssi-sdk.agent-config": "workspace:*", "@sphereon/ssi-sdk.core": "workspace:*", "@sphereon/ssi-sdk.data-store": "workspace:*", @@ -57,10 +57,10 @@ }, "devDependencies": { "@sphereon/did-uni-client": "^0.6.3", - "@sphereon/ssi-sdk-ext.did-provider-key": "0.20.0", - "@sphereon/ssi-sdk-ext.did-provider-lto": "0.20.0", - "@sphereon/ssi-sdk-ext.key-manager": "0.20.0", - "@sphereon/ssi-sdk-ext.kms-local": "0.20.0", + "@sphereon/ssi-sdk-ext.did-provider-key": "0.21.0", + "@sphereon/ssi-sdk-ext.did-provider-lto": "0.21.0", + "@sphereon/ssi-sdk-ext.key-manager": "0.21.0", + "@sphereon/ssi-sdk-ext.kms-local": "0.21.0", "@sphereon/ssi-sdk.agent-config": "workspace:*", "@transmute/lds-ecdsa-secp256k1-recovery2020": "^0.0.7", "@types/nock": "^11.1.0", diff --git a/packages/vc-status-list-issuer-drivers/CHANGELOG.md b/packages/vc-status-list-issuer-drivers/CHANGELOG.md index 55703e339..4239d4424 100644 --- a/packages/vc-status-list-issuer-drivers/CHANGELOG.md +++ b/packages/vc-status-list-issuer-drivers/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.25.0...v0.26.0) (2024-06-19) + +### Bug Fixes + +- Make sure we import path/fs only when really needed for object-creation. Ensure we use agent-config plugin only in places it is needed ([76b4f53](https://github.com/Sphereon-OpenSource/ssi-sdk/commit/76b4f53693ba6105fc00bdd93d78587defc9e183)) + # [0.25.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.vc-status-list-issuer-drivers diff --git a/packages/vc-status-list-issuer-drivers/package.json b/packages/vc-status-list-issuer-drivers/package.json index 53edb757e..722e2ad8e 100644 --- a/packages/vc-status-list-issuer-drivers/package.json +++ b/packages/vc-status-list-issuer-drivers/package.json @@ -1,7 +1,7 @@ { "name": "@sphereon/ssi-sdk.vc-status-list-issuer-drivers", "description": "Sphereon SSI-SDK plugin for Status List management, like StatusList2021. Issuer drivers module", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -11,11 +11,11 @@ }, "dependencies": { "@sphereon/ssi-express-support": "workspace:*", - "@sphereon/ssi-sdk-ext.did-utils": "0.20.0", + "@sphereon/ssi-sdk-ext.did-utils": "0.21.0", + "@sphereon/ssi-sdk.agent-config": "workspace:*", "@sphereon/ssi-sdk.core": "workspace:*", "@sphereon/ssi-sdk.data-store": "workspace:*", "@sphereon/ssi-sdk.vc-status-list": "workspace:*", - "@sphereon/ssi-sdk.agent-config": "workspace:*", "@sphereon/ssi-types": "workspace:*", "@sphereon/vc-status-list": "^7.0.0-next.0", "@veramo/core": "4.2.0", @@ -24,8 +24,8 @@ "uint8arrays": "^3.1.1" }, "devDependencies": { - "@types/debug": "^4.1.8", "@sphereon/ssi-sdk.agent-config": "workspace:*", + "@types/debug": "^4.1.8", "@types/node": "^18.15.0", "typescript": "5.4.2" }, diff --git a/packages/vc-status-list-issuer-rest-api/CHANGELOG.md b/packages/vc-status-list-issuer-rest-api/CHANGELOG.md index ac41bb36e..943223f22 100644 --- a/packages/vc-status-list-issuer-rest-api/CHANGELOG.md +++ b/packages/vc-status-list-issuer-rest-api/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.vc-status-list-issuer-rest-api + # [0.25.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.vc-status-list-issuer-rest-api diff --git a/packages/vc-status-list-issuer-rest-api/package.json b/packages/vc-status-list-issuer-rest-api/package.json index 8cec78ef4..77b4e320e 100644 --- a/packages/vc-status-list-issuer-rest-api/package.json +++ b/packages/vc-status-list-issuer-rest-api/package.json @@ -1,7 +1,7 @@ { "name": "@sphereon/ssi-sdk.vc-status-list-issuer-rest-api", "description": "Sphereon SSI-SDK plugin for Status List management, like StatusList2021. Issuer drivers module", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -13,7 +13,7 @@ }, "dependencies": { "@sphereon/ssi-express-support": "workspace:*", - "@sphereon/ssi-sdk-ext.did-utils": "0.20.0", + "@sphereon/ssi-sdk-ext.did-utils": "0.21.0", "@sphereon/ssi-sdk.core": "workspace:*", "@sphereon/ssi-sdk.data-store": "workspace:*", "@sphereon/ssi-sdk.vc-status-list": "workspace:*", @@ -30,9 +30,9 @@ }, "devDependencies": { "@sphereon/did-uni-client": "^0.6.3", + "@sphereon/ssi-sdk-ext.did-provider-jwk": "0.21.0", + "@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.21.0", "@sphereon/ssi-sdk.agent-config": "workspace:*", - "@sphereon/ssi-sdk-ext.did-provider-jwk": "0.20.0", - "@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.20.0", "@sphereon/ssi-sdk.data-store": "workspace:*", "@sphereon/ssi-sdk.vc-handler-ld-local": "workspace:*", "@types/body-parser": "^1.19.2", diff --git a/packages/vc-status-list/CHANGELOG.md b/packages/vc-status-list/CHANGELOG.md index 7070fdd68..fbb535bfa 100644 --- a/packages/vc-status-list/CHANGELOG.md +++ b/packages/vc-status-list/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.vc-status-list + # [0.25.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.vc-status-list diff --git a/packages/vc-status-list/package.json b/packages/vc-status-list/package.json index f9a6fa95b..35cfac000 100644 --- a/packages/vc-status-list/package.json +++ b/packages/vc-status-list/package.json @@ -1,7 +1,7 @@ { "name": "@sphereon/ssi-sdk.vc-status-list", "description": "Sphereon SSI-SDK plugin for Status List management, like StatusList2021.", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -10,7 +10,7 @@ "build:clean": "tsc --build --clean && tsc --build" }, "dependencies": { - "@sphereon/ssi-sdk-ext.did-utils": "0.20.0", + "@sphereon/ssi-sdk-ext.did-utils": "0.21.0", "@sphereon/ssi-types": "workspace:*", "@sphereon/vc-status-list": "7.0.0-next.0", "@veramo/core": "4.2.0", diff --git a/packages/w3c-vc-api-issuer-rest-client/CHANGELOG.md b/packages/w3c-vc-api-issuer-rest-client/CHANGELOG.md index 7620d7bee..a576d4d7c 100644 --- a/packages/w3c-vc-api-issuer-rest-client/CHANGELOG.md +++ b/packages/w3c-vc-api-issuer-rest-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.w3c-vc-api-issuer-rest-client + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.w3c-vc-api-issuer-rest-client diff --git a/packages/w3c-vc-api-issuer-rest-client/package.json b/packages/w3c-vc-api-issuer-rest-client/package.json index a80c69c59..2e347d69b 100644 --- a/packages/w3c-vc-api-issuer-rest-client/package.json +++ b/packages/w3c-vc-api-issuer-rest-client/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.w3c-vc-api-issuer-rest-client", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/w3c-vc-api-verifier-rest-client/CHANGELOG.md b/packages/w3c-vc-api-verifier-rest-client/CHANGELOG.md index e3b2a30ef..7a403257e 100644 --- a/packages/w3c-vc-api-verifier-rest-client/CHANGELOG.md +++ b/packages/w3c-vc-api-verifier-rest-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.w3c-vc-api-verifier-rest-client + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.w3c-vc-api-verifier-rest-client diff --git a/packages/w3c-vc-api-verifier-rest-client/package.json b/packages/w3c-vc-api-verifier-rest-client/package.json index 0cad25017..71e7097cf 100644 --- a/packages/w3c-vc-api-verifier-rest-client/package.json +++ b/packages/w3c-vc-api-verifier-rest-client/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.w3c-vc-api-verifier-rest-client", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/w3c-vc-api/CHANGELOG.md b/packages/w3c-vc-api/CHANGELOG.md index 44073c5f4..a642ab899 100644 --- a/packages/w3c-vc-api/CHANGELOG.md +++ b/packages/w3c-vc-api/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.w3c-vc-api + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.w3c-vc-api diff --git a/packages/w3c-vc-api/package.json b/packages/w3c-vc-api/package.json index b96c9a01f..e647004a3 100644 --- a/packages/w3c-vc-api/package.json +++ b/packages/w3c-vc-api/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.w3c-vc-api", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -32,10 +32,10 @@ }, "devDependencies": { "@sphereon/did-uni-client": "^0.6.3", - "@sphereon/ssi-sdk-ext.did-provider-jwk": "0.20.0", - "@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.20.0", - "@sphereon/ssi-sdk-ext.key-manager": "0.20.0", - "@sphereon/ssi-sdk-ext.kms-local": "0.20.0", + "@sphereon/ssi-sdk-ext.did-provider-jwk": "0.21.0", + "@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.21.0", + "@sphereon/ssi-sdk-ext.key-manager": "0.21.0", + "@sphereon/ssi-sdk-ext.kms-local": "0.21.0", "@sphereon/ssi-sdk.agent-config": "workspace:*", "@sphereon/ssi-sdk.data-store": "workspace:*", "@sphereon/ssi-sdk.vc-handler-ld-local": "workspace:*", diff --git a/packages/web3-provider-headless/CHANGELOG.md b/packages/web3-provider-headless/CHANGELOG.md index b37be2504..efd1653f4 100644 --- a/packages/web3-provider-headless/CHANGELOG.md +++ b/packages/web3-provider-headless/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk-web3.headless-provider + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk-web3.headless-provider diff --git a/packages/web3-provider-headless/package.json b/packages/web3-provider-headless/package.json index 8f317efab..1a83ed5bc 100644 --- a/packages/web3-provider-headless/package.json +++ b/packages/web3-provider-headless/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk-web3.headless-provider", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -40,8 +40,8 @@ "web3-validator": "^2.0.0" }, "devDependencies": { - "@sphereon/ssi-sdk-ext.key-manager": "0.20.0", - "@sphereon/ssi-sdk-ext.kms-local": "0.20.0", + "@sphereon/ssi-sdk-ext.key-manager": "0.21.0", + "@sphereon/ssi-sdk-ext.kms-local": "0.21.0", "@types/body-parser": "^1.19.2", "@types/cors": "^2.8.13", "@types/dotenv-flow": "^3.2.0", diff --git a/packages/wellknown-did-issuer/CHANGELOG.md b/packages/wellknown-did-issuer/CHANGELOG.md index 5e5f4f74e..4a9208dbb 100644 --- a/packages/wellknown-did-issuer/CHANGELOG.md +++ b/packages/wellknown-did-issuer/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.wellknown-did-issuer + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.wellknown-did-issuer diff --git a/packages/wellknown-did-issuer/package.json b/packages/wellknown-did-issuer/package.json index 4f3617f74..9815008aa 100644 --- a/packages/wellknown-did-issuer/package.json +++ b/packages/wellknown-did-issuer/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.wellknown-did-issuer", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/wellknown-did-verifier/CHANGELOG.md b/packages/wellknown-did-verifier/CHANGELOG.md index f21c9fe64..40a20244b 100644 --- a/packages/wellknown-did-verifier/CHANGELOG.md +++ b/packages/wellknown-did-verifier/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +### Bug Fixes + +- updated version of vci and fixed the libs for it ([ceb6074](https://github.com/Sphereon-Opensource/SSI-SDK/commit/ceb60748920fd78d318cb3544f69bef54b365c94)) + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.wellknown-did-verifier diff --git a/packages/wellknown-did-verifier/package.json b/packages/wellknown-did-verifier/package.json index c9fe3b73a..2ab1676f0 100644 --- a/packages/wellknown-did-verifier/package.json +++ b/packages/wellknown-did-verifier/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.wellknown-did-verifier", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/xstate-persistence/CHANGELOG.md b/packages/xstate-persistence/CHANGELOG.md index 0d5b422aa..9006cf1fe 100644 --- a/packages/xstate-persistence/CHANGELOG.md +++ b/packages/xstate-persistence/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.25.0...v0.26.0) (2024-06-19) + +**Note:** Version bump only for package @sphereon/ssi-sdk.xstate-machine-persistence + # [0.25.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.24.0...v0.25.0) (2024-06-13) **Note:** Version bump only for package @sphereon/ssi-sdk.xstate-machine-persistence diff --git a/packages/xstate-persistence/package.json b/packages/xstate-persistence/package.json index 8baee9f56..c0943e8f3 100644 --- a/packages/xstate-persistence/package.json +++ b/packages/xstate-persistence/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.xstate-machine-persistence", - "version": "0.25.0", + "version": "0.26.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts",