From bb9fcd4c5e590302f0a1aff61f424bee5a5787e8 Mon Sep 17 00:00:00 2001 From: Sphereon Date: Sat, 19 Aug 2023 18:17:45 +0000 Subject: [PATCH] chore(release): v0.7.0 --- CHANGELOG.md | 17 +++++++++++++++++ lerna.json | 2 +- packages/callback-example/CHANGELOG.md | 11 +++++++++++ packages/callback-example/package.json | 2 +- packages/client/CHANGELOG.md | 16 ++++++++++++++++ packages/client/package.json | 2 +- packages/common/CHANGELOG.md | 17 +++++++++++++++++ packages/common/package.json | 2 +- packages/issuer-rest/CHANGELOG.md | 16 ++++++++++++++++ packages/issuer-rest/package.json | 6 +++--- packages/issuer/CHANGELOG.md | 11 +++++++++++ packages/issuer/package.json | 2 +- pnpm-lock.yaml | 8 ++++---- 13 files changed, 100 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fcca4c9a..6f8763c1 100644 --- a/CHANGELOG.md +++ b/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.7.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.6.0...v0.7.0) (2023-08-19) + + +### Bug Fixes + +* fix credential request properties ([0037025](https://github.com/Sphereon-Opensource/OID4VCI/commit/0037025ef27d3a1fa7c68954b1f87e660ef0c82c)) +* Revise well-known metadata retrieval for OID4VCI, OAuth 2.0 and OIDC. fixes [#62](https://github.com/Sphereon-Opensource/OID4VCI/issues/62) ([a750cc7](https://github.com/Sphereon-Opensource/OID4VCI/commit/a750cc76e084f12aeb58f2b1ac44b1bb5e69b5ae)) + + +### Features + +* Integrate ssi-express-support to allow for future authn/authz. Also moved endpoints to functions, so solutions can include their own set of endpoints ([c749aba](https://github.com/Sphereon-Opensource/OID4VCI/commit/c749ababd4bec567d6aeeda49b76f195ec792201)) + + + + + # [0.6.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.4.0...v0.6.0) (2023-06-24) diff --git a/lerna.json b/lerna.json index 8eba2320..03e15a17 100644 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "packages": [ "packages/*" ], - "version": "0.6.0", + "version": "0.7.0", "npmClient": "pnpm", "command": { "publish": { diff --git a/packages/callback-example/CHANGELOG.md b/packages/callback-example/CHANGELOG.md index 34ef8ee7..0ebd14dc 100644 --- a/packages/callback-example/CHANGELOG.md +++ b/packages/callback-example/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.7.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.6.0...v0.7.0) (2023-08-19) + + +### Features + +* Integrate ssi-express-support to allow for future authn/authz. Also moved endpoints to functions, so solutions can include their own set of endpoints ([c749aba](https://github.com/Sphereon-Opensource/OID4VCI/commit/c749ababd4bec567d6aeeda49b76f195ec792201)) + + + + + # [0.6.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.4.0...v0.6.0) (2023-06-24) ### Bug Fixes diff --git a/packages/callback-example/package.json b/packages/callback-example/package.json index 4ffb1350..95e4f822 100644 --- a/packages/callback-example/package.json +++ b/packages/callback-example/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/oid4vci-callback-example", - "version": "0.6.0", + "version": "0.7.0", "description": "OpenID 4 Verifiable Credential Issuance issuer callback example", "source": "lib/index.ts", "main": "dist/index.js", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index bb140ff4..04416b84 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.7.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.6.0...v0.7.0) (2023-08-19) + + +### Bug Fixes + +* Revise well-known metadata retrieval for OID4VCI, OAuth 2.0 and OIDC. fixes [#62](https://github.com/Sphereon-Opensource/OID4VCI/issues/62) ([a750cc7](https://github.com/Sphereon-Opensource/OID4VCI/commit/a750cc76e084f12aeb58f2b1ac44b1bb5e69b5ae)) + + +### Features + +* Integrate ssi-express-support to allow for future authn/authz. Also moved endpoints to functions, so solutions can include their own set of endpoints ([c749aba](https://github.com/Sphereon-Opensource/OID4VCI/commit/c749ababd4bec567d6aeeda49b76f195ec792201)) + + + + + # [0.6.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.4.0...v0.6.0) (2023-06-24) ### Bug Fixes diff --git a/packages/client/package.json b/packages/client/package.json index 548bebfe..832fe3fb 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/oid4vci-client", - "version": "0.6.0", + "version": "0.7.0", "description": "OpenID for Verifiable Credential Issuance (OpenID4VCI) client", "source": "lib/index.ts", "main": "dist/index.js", diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index 3cd91e07..7aca887e 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/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.7.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.6.0...v0.7.0) (2023-08-19) + + +### Bug Fixes + +* fix credential request properties ([0037025](https://github.com/Sphereon-Opensource/OID4VCI/commit/0037025ef27d3a1fa7c68954b1f87e660ef0c82c)) +* Revise well-known metadata retrieval for OID4VCI, OAuth 2.0 and OIDC. fixes [#62](https://github.com/Sphereon-Opensource/OID4VCI/issues/62) ([a750cc7](https://github.com/Sphereon-Opensource/OID4VCI/commit/a750cc76e084f12aeb58f2b1ac44b1bb5e69b5ae)) + + +### Features + +* Integrate ssi-express-support to allow for future authn/authz. Also moved endpoints to functions, so solutions can include their own set of endpoints ([c749aba](https://github.com/Sphereon-Opensource/OID4VCI/commit/c749ababd4bec567d6aeeda49b76f195ec792201)) + + + + + # [0.6.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.4.0...v0.6.0) (2023-06-24) ### Bug Fixes diff --git a/packages/common/package.json b/packages/common/package.json index bca8f329..0fe158e6 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/oid4vci-common", - "version": "0.6.0", + "version": "0.7.0", "description": "OpenID 4 Verifiable Credential Issuance Common Types", "source": "lib/index.ts", "main": "dist/index.js", diff --git a/packages/issuer-rest/CHANGELOG.md b/packages/issuer-rest/CHANGELOG.md index 4ce07d07..47e8b2ab 100644 --- a/packages/issuer-rest/CHANGELOG.md +++ b/packages/issuer-rest/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.7.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.6.0...v0.7.0) (2023-08-19) + + +### Bug Fixes + +* Revise well-known metadata retrieval for OID4VCI, OAuth 2.0 and OIDC. fixes [#62](https://github.com/Sphereon-Opensource/OID4VCI/issues/62) ([a750cc7](https://github.com/Sphereon-Opensource/OID4VCI/commit/a750cc76e084f12aeb58f2b1ac44b1bb5e69b5ae)) + + +### Features + +* Integrate ssi-express-support to allow for future authn/authz. Also moved endpoints to functions, so solutions can include their own set of endpoints ([c749aba](https://github.com/Sphereon-Opensource/OID4VCI/commit/c749ababd4bec567d6aeeda49b76f195ec792201)) + + + + + # [0.6.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.4.0...v0.6.0) (2023-06-24) ### Bug Fixes diff --git a/packages/issuer-rest/package.json b/packages/issuer-rest/package.json index fff8bca4..a9aea51d 100644 --- a/packages/issuer-rest/package.json +++ b/packages/issuer-rest/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/oid4vci-issuer-server", - "version": "0.6.0", + "version": "0.7.0", "description": "OpenID 4 Verifiable Credential Issuance Server", "source": "lib/index.ts", "main": "dist/index.js", @@ -14,16 +14,15 @@ "@sphereon/oid4vci-issuer": "workspace:*", "@sphereon/ssi-express-support": "^0.15.1", "@sphereon/ssi-types": "^0.15.1", - "http-terminator": "^3.2.0", "body-parser": "^1.20.2", "cookie-parser": "^1.4.6", "cors": "^2.8.5", "dotenv-flow": "^3.2.0", "express": "^4.18.2", + "http-terminator": "^3.2.0", "uuid": "^9.0.0" }, "devDependencies": { - "@types/http-terminator": "^2.0.2", "@digitalcredentials/did-method-key": "^2.0.3", "@sphereon/oid4vci-client": "workspace:*", "@types/body-parser": "^1.19.2", @@ -31,6 +30,7 @@ "@types/cors": "^2.8.13", "@types/dotenv-flow": "^3.2.0", "@types/express": "^4.17.17", + "@types/http-terminator": "^2.0.2", "@types/jest": "^29.5.0", "@types/node": "^18.15.3", "@types/uuid": "^9.0.1", diff --git a/packages/issuer/CHANGELOG.md b/packages/issuer/CHANGELOG.md index 98b42007..bc790cb1 100644 --- a/packages/issuer/CHANGELOG.md +++ b/packages/issuer/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.7.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.6.0...v0.7.0) (2023-08-19) + + +### Features + +* Integrate ssi-express-support to allow for future authn/authz. Also moved endpoints to functions, so solutions can include their own set of endpoints ([c749aba](https://github.com/Sphereon-Opensource/OID4VCI/commit/c749ababd4bec567d6aeeda49b76f195ec792201)) + + + + + # [0.6.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.4.0...v0.6.0) (2023-06-24) ### Bug Fixes diff --git a/packages/issuer/package.json b/packages/issuer/package.json index 7917c502..1115143a 100644 --- a/packages/issuer/package.json +++ b/packages/issuer/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/oid4vci-issuer", - "version": "0.6.0", + "version": "0.7.0", "description": "OpenID 4 Verifiable Credential Issuance issuer REST endpoints", "source": "lib/index.ts", "main": "dist/index.js", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 62a2d28c..e4a9b45f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,9 +1,5 @@ lockfileVersion: '6.0' -settings: - autoInstallPeers: true - excludeLinksFromLockfile: false - importers: .: @@ -13114,3 +13110,7 @@ packages: resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} engines: {node: '>=12.20'} dev: true + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false