diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b65a7e1a..ad1566328 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +### Bug Fixes + +- add PhysicalAddress migrations to postgres ([afd441c](https://github.com/Sphereon-Opensource/SSI-SDK/commit/afd441ca1eccdb9438115de8b8e45d597dbf1fca)) +- added default value to PartyType.origin ([8b9d5d2](https://github.com/Sphereon-Opensource/SSI-SDK/commit/8b9d5d205896b40c1f1f59bc0ab8dee9a4a2c16b)) +- adjust PhysicalAddress postgres migration to follow code standards ([b8540fe](https://github.com/Sphereon-Opensource/SSI-SDK/commit/b8540fecc85906f76ed8417e439324f833bc9983)) +- Allowing null values of enum type column ([a4bc42b](https://github.com/Sphereon-Opensource/SSI-SDK/commit/a4bc42b404f26aebe110471b5248bbdaf1a672ba)) +- Fixed origin column name ([d7a6ec1](https://github.com/Sphereon-Opensource/SSI-SDK/commit/d7a6ec15e9f7e9f422ca3a6574802d9602b85f60)) +- made party origin mandatory in the \*Args types ([d8e8560](https://github.com/Sphereon-Opensource/SSI-SDK/commit/d8e8560a27a61ff34e41b4513811e7a112bdd1a2)) +- rework fix to include missing table in existing migration ([0862dbd](https://github.com/Sphereon-Opensource/SSI-SDK/commit/0862dbd4a479f120302afb83a4a21c70c9fe6e08)) +- set uri to nullable in Party table ([38318ae](https://github.com/Sphereon-Opensource/SSI-SDK/commit/38318ae7a47e578c874d54495b6d75ebb03224e1)) + +### Features + +- add kb-jwt to sd-jwt ([e066f2b](https://github.com/Sphereon-Opensource/SSI-SDK/commit/e066f2b1a0c3d89796ce00af39511ce8a05b39e7)) +- Added PartyOriginEnum to PartyType, wrote migrations and updated tests and updated the contact manager plugin ([07d8c1f](https://github.com/Sphereon-Opensource/SSI-SDK/commit/07d8c1f7cdec110ced10277abd4d70edeb15c2d3)) + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) ### Features diff --git a/lerna.json b/lerna.json index 4907ff667..60ef9d1fd 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "0.22.0", + "version": "0.23.0", "npmClient": "pnpm", "command": { "publish": { diff --git a/packages/agent-config/CHANGELOG.md b/packages/agent-config/CHANGELOG.md index b620e7f6b..728c0aa3c 100644 --- a/packages/agent-config/CHANGELOG.md +++ b/packages/agent-config/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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.agent-config + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 f0c5b3bd2..d8bb3eba5 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/contact-manager-rest-api/CHANGELOG.md b/packages/contact-manager-rest-api/CHANGELOG.md index a2d9c2f2b..43ff3733c 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.contact-manager-rest-api + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 ae28ab789..a5c313622 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/contact-manager/CHANGELOG.md b/packages/contact-manager/CHANGELOG.md index aed1ff30a..34dd1a9ef 100644 --- a/packages/contact-manager/CHANGELOG.md +++ b/packages/contact-manager/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +### Bug Fixes + +- made party origin mandatory in the \*Args types ([d8e8560](https://github.com/Sphereon-Opensource/SSI-SDK/commit/d8e8560a27a61ff34e41b4513811e7a112bdd1a2)) + +### Features + +- Added PartyOriginEnum to PartyType, wrote migrations and updated tests and updated the contact manager plugin ([07d8c1f](https://github.com/Sphereon-Opensource/SSI-SDK/commit/07d8c1f7cdec110ced10277abd4d70edeb15c2d3)) + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **Note:** Version bump only for package @sphereon/ssi-sdk.contact-manager diff --git a/packages/contact-manager/package.json b/packages/contact-manager/package.json index 11d9e264c..77f6b6a53 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.22.0", + "version": "0.23.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 bf6e8f947..d745a0541 100644 --- a/packages/data-store/CHANGELOG.md +++ b/packages/data-store/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +### Bug Fixes + +- add PhysicalAddress migrations to postgres ([afd441c](https://github.com/Sphereon-Opensource/SSI-SDK/commit/afd441ca1eccdb9438115de8b8e45d597dbf1fca)) +- added default value to PartyType.origin ([8b9d5d2](https://github.com/Sphereon-Opensource/SSI-SDK/commit/8b9d5d205896b40c1f1f59bc0ab8dee9a4a2c16b)) +- adjust PhysicalAddress postgres migration to follow code standards ([b8540fe](https://github.com/Sphereon-Opensource/SSI-SDK/commit/b8540fecc85906f76ed8417e439324f833bc9983)) +- Allowing null values of enum type column ([a4bc42b](https://github.com/Sphereon-Opensource/SSI-SDK/commit/a4bc42b404f26aebe110471b5248bbdaf1a672ba)) +- Fixed origin column name ([d7a6ec1](https://github.com/Sphereon-Opensource/SSI-SDK/commit/d7a6ec15e9f7e9f422ca3a6574802d9602b85f60)) +- made party origin mandatory in the \*Args types ([d8e8560](https://github.com/Sphereon-Opensource/SSI-SDK/commit/d8e8560a27a61ff34e41b4513811e7a112bdd1a2)) +- rework fix to include missing table in existing migration ([0862dbd](https://github.com/Sphereon-Opensource/SSI-SDK/commit/0862dbd4a479f120302afb83a4a21c70c9fe6e08)) +- set uri to nullable in Party table ([38318ae](https://github.com/Sphereon-Opensource/SSI-SDK/commit/38318ae7a47e578c874d54495b6d75ebb03224e1)) + +### Features + +- Added PartyOriginEnum to PartyType, wrote migrations and updated tests and updated the contact manager plugin ([07d8c1f](https://github.com/Sphereon-Opensource/SSI-SDK/commit/07d8c1f7cdec110ced10277abd4d70edeb15c2d3)) + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **Note:** Version bump only for package @sphereon/ssi-sdk.data-store diff --git a/packages/data-store/package.json b/packages/data-store/package.json index 5ab487211..404d9783b 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.22.0", + "version": "0.23.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 2abeb55b8..e63c86523 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.dev + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **Note:** Version bump only for package @sphereon/ssi-sdk.dev diff --git a/packages/dev/package.json b/packages/dev/package.json index fb2c5d020..46caea421 100644 --- a/packages/dev/package.json +++ b/packages/dev/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/ssi-sdk.dev", - "version": "0.22.0", + "version": "0.23.0", "source": "lib/index.ts", "exports": { ".": { diff --git a/packages/event-logger/CHANGELOG.md b/packages/event-logger/CHANGELOG.md index a53f257aa..005767755 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.event-logger + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **Note:** Version bump only for package @sphereon/ssi-sdk.event-logger diff --git a/packages/event-logger/package.json b/packages/event-logger/package.json index a579871fa..a959a6c37 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.22.0", + "version": "0.23.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 d048ce073..7119d5d83 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.issuance-branding + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 842d31e3b..753587c40 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.22.0", + "version": "0.23.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 bf42e36e4..fca20af6e 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.23.0](https://github.com/uport-project/veramo/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.kv-store-temp + # [0.22.0](https://github.com/uport-project/veramo/compare/v0.21.1...v0.22.0) (2024-04-04) **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 6263044be..704ba42db 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.22.0", + "version": "0.23.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 6525435e6..c22c23999 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.ms-authenticator + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 7fde6d20a..349d2736a 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.22.0", + "version": "0.23.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 8d6223ffa..4263ca777 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.ms-request-api + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 053f2314c..610f25f1d 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.22.0", + "version": "0.23.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 4833904fd..6876b9ba1 100644 --- a/packages/oid4vci-holder/CHANGELOG.md +++ b/packages/oid4vci-holder/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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.oid4vci-holder + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) ### Features diff --git a/packages/oid4vci-holder/package.json b/packages/oid4vci-holder/package.json index 2535642bd..10c8cc462 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/oid4vci-issuer-rest-api/CHANGELOG.md b/packages/oid4vci-issuer-rest-api/CHANGELOG.md index 0990fa730..4cbdc688e 100644 --- a/packages/oid4vci-issuer-rest-api/CHANGELOG.md +++ b/packages/oid4vci-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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.oid4vci-issuer-rest-api + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 eb64a3f0e..c511fa01c 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/oid4vci-issuer-rest-client/CHANGELOG.md b/packages/oid4vci-issuer-rest-client/CHANGELOG.md index e029ae2f7..3fb73163b 100644 --- a/packages/oid4vci-issuer-rest-client/CHANGELOG.md +++ b/packages/oid4vci-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.23.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.oid4vci-issuer-rest-client + # [0.22.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.21.1...v0.22.0) (2024-04-04) **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 7a58f6809..2431854b7 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/oid4vci-issuer-store/CHANGELOG.md b/packages/oid4vci-issuer-store/CHANGELOG.md index 3581e12f6..1d1624a86 100644 --- a/packages/oid4vci-issuer-store/CHANGELOG.md +++ b/packages/oid4vci-issuer-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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.oid4vci-issuer-store + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 805489e6e..363be94a2 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/oid4vci-issuer/CHANGELOG.md b/packages/oid4vci-issuer/CHANGELOG.md index c8e3763d7..450034b43 100644 --- a/packages/oid4vci-issuer/CHANGELOG.md +++ b/packages/oid4vci-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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.oid4vci-issuer + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 6722988dc..502697f5e 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.22.0", + "version": "0.23.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 90eac01fa..302280c11 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.presentation-exchange + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **Note:** Version bump only for package @sphereon/ssi-sdk.presentation-exchange diff --git a/packages/presentation-exchange/package.json b/packages/presentation-exchange/package.json index 1be38df42..451f8c47a 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/qr-code-generator/CHANGELOG.md b/packages/qr-code-generator/CHANGELOG.md index 4dccc1326..11a6f568c 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.qr-code-generator + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 04eaac8ef..1436e8f13 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.22.0", + "version": "0.23.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 8089f816d..72ae28c62 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.remote-server-rest-api + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 cbbaa7c2b..e00516475 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/siopv2-oid4vp-common/CHANGELOG.md b/packages/siopv2-oid4vp-common/CHANGELOG.md index 7f0e87f9a..a43270853 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.siopv2-oid4vp-common + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 81019b0e9..04176352d 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.22.0", + "version": "0.23.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 f8ef00bbb..9add2f533 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.siopv2-oid4vp-op-auth + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 54024b93f..7a23f0e31 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/siopv2-oid4vp-rp-auth/CHANGELOG.md b/packages/siopv2-oid4vp-rp-auth/CHANGELOG.md index 87ac2e04a..d21b53f3b 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.siopv2-oid4vp-rp-auth + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 39ce7e5ba..6478692f9 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/siopv2-oid4vp-rp-rest-api/CHANGELOG.md b/packages/siopv2-oid4vp-rp-rest-api/CHANGELOG.md index e5a272cc7..28e09823e 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.siopv2-oid4vp-rp-rest-api + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 a0b2f0e91..c68f87d93 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/siopv2-oid4vp-rp-rest-client/CHANGELOG.md b/packages/siopv2-oid4vp-rp-rest-client/CHANGELOG.md index 645788c83..b977102c0 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.23.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.siopv2-oid4vp-rp-rest-client + # [0.22.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.21.1...v0.22.0) (2024-04-04) **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 eb6817622..7daa0d87f 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.22.0", + "version": "0.23.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 772528c7d..49afed058 100644 --- a/packages/ssi-express-support/CHANGELOG.md +++ b/packages/ssi-express-support/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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-express-support + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 c5af89815..e2bf6856a 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.22.0", + "version": "0.23.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 28f333e30..e21c396d2 100644 --- a/packages/ssi-sdk-core/CHANGELOG.md +++ b/packages/ssi-sdk-core/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.23.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.core + # [0.22.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.21.1...v0.22.0) (2024-04-04) **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 ac933afb6..cdd85f70e 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.22.0", + "version": "0.23.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 15767a7f0..744edfaca 100644 --- a/packages/ssi-types/CHANGELOG.md +++ b/packages/ssi-types/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.23.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.22.0...v0.23.0) (2024-04-24) + +### Features + +- add kb-jwt to sd-jwt ([e066f2b](https://github.com/Sphereon-OpenSource/ssi-sdk/commit/e066f2b1a0c3d89796ce00af39511ce8a05b39e7)) + # [0.22.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.21.1...v0.22.0) (2024-04-04) **Note:** Version bump only for package @sphereon/ssi-types diff --git a/packages/ssi-types/package.json b/packages/ssi-types/package.json index a01e61752..d12259ae6 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.22.0", + "version": "0.23.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 07720d121..9d5b0093f 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.uni-resolver-registrar-api + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 aa738f6c6..e9a4ae08e 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/vc-handler-ld-local/CHANGELOG.md b/packages/vc-handler-ld-local/CHANGELOG.md index 5c889b4af..eed2b73e7 100644 --- a/packages/vc-handler-ld-local/CHANGELOG.md +++ b/packages/vc-handler-ld-local/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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.vc-handler-ld-local + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 8f0a68d2b..84697ab0d 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/vc-status-list-issuer-drivers/CHANGELOG.md b/packages/vc-status-list-issuer-drivers/CHANGELOG.md index 1a9b7ad42..89fd8617c 100644 --- a/packages/vc-status-list-issuer-drivers/CHANGELOG.md +++ b/packages/vc-status-list-issuer-drivers/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.23.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.vc-status-list-issuer-drivers + # [0.22.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.21.1...v0.22.0) (2024-04-04) **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 4d6bb79b2..66060bbf9 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/vc-status-list-issuer-rest-api/CHANGELOG.md b/packages/vc-status-list-issuer-rest-api/CHANGELOG.md index a9e9f795d..b27c7724f 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.23.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.vc-status-list-issuer-rest-api + # [0.22.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.21.1...v0.22.0) (2024-04-04) **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 f53dff02d..32fc5d417 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/vc-status-list/CHANGELOG.md b/packages/vc-status-list/CHANGELOG.md index 82d4bd2dd..d3554e104 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.23.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.vc-status-list + # [0.22.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.21.1...v0.22.0) (2024-04-04) **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 e488684eb..0838e22c2 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/w3c-vc-api-issuer-rest-client/CHANGELOG.md b/packages/w3c-vc-api-issuer-rest-client/CHANGELOG.md index 49221c157..73b76c6cc 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.w3c-vc-api-issuer-rest-client + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 8d3d0ca69..a1117ca52 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.22.0", + "version": "0.23.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 7d807a1e8..7ca962edd 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.w3c-vc-api-verifier-rest-client + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 ada52e428..68325b015 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.22.0", + "version": "0.23.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 0908498b5..fbcfdf6b4 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.w3c-vc-api + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 ef091c9a4..581b27574 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/web3-provider-headless/CHANGELOG.md b/packages/web3-provider-headless/CHANGELOG.md index f88b5bafd..ac11fd0f9 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk-web3.headless-provider + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 60bc4de64..7ea415f17 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -16,7 +16,7 @@ "@ethersproject/strings": "^5.7.0", "@ethersproject/transactions": "^5.7.0", "@metamask/eth-sig-util": "^6.0.0", - "@sphereon/ssi-express-support": "^0.22.0", + "@sphereon/ssi-express-support": "^0.23.0", "@veramo/core": "4.2.0", "@veramo/key-manager": "4.2.0", "bn.js": "^5.2.1", diff --git a/packages/wellknown-did-issuer/CHANGELOG.md b/packages/wellknown-did-issuer/CHANGELOG.md index 67bfb91a9..fb878bba1 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.wellknown-did-issuer + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 a6e905e95..256b84581 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.22.0", + "version": "0.23.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 c96189c5b..bd8457b49 100644 --- a/packages/wellknown-did-verifier/CHANGELOG.md +++ b/packages/wellknown-did-verifier/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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.wellknown-did-verifier + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 a217d3f68..ee85951df 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.22.0", + "version": "0.23.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 2cdc0395b..b788a74b8 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.23.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.22.0...v0.23.0) (2024-04-24) + +**Note:** Version bump only for package @sphereon/ssi-sdk.xstate-machine-persistence + # [0.22.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.21.1...v0.22.0) (2024-04-04) **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 ef770dd21..e1b195562 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.22.0", + "version": "0.23.0", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index edb380706..e3207dc44 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2509,7 +2509,7 @@ importers: specifier: ^6.0.0 version: 6.0.2 '@sphereon/ssi-express-support': - specifier: ^0.22.0 + specifier: ^0.23.0 version: link:../ssi-express-support '@veramo/core': specifier: 4.2.0