Skip to content

Commit 2851120

Browse files
committed
v0.19.0
1 parent 6f2325c commit 2851120

20 files changed

Lines changed: 204 additions & 41 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,22 @@
1-
# v0.18.0 (Mon Apr 14 2025)
1+
# Change Log
22

3-
#### 🚀 Enhancement
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
45

5-
- feat: Add intuit/auto for release management ([@nklomp](https://github.com/nklomp))
6-
- feat: move from jest to vitest ([@nklomp](https://github.com/nklomp))
7-
- feat: Project is now ESM by default, bundled as CJS as well ([@nklomp](https://github.com/nklomp))
6+
# [0.19.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.17.0...v0.19.0) (2025-05-22)
87

9-
#### 🐛 Bug Fix
108

11-
- chore: update version ([@nklomp](https://github.com/nklomp))
12-
- chore: update deps ([@nklomp](https://github.com/nklomp))
13-
- chore: pnpm version fix ([@nklomp](https://github.com/nklomp))
14-
- chore: add coverage ([@nklomp](https://github.com/nklomp))
15-
- chore: fixes for project is now ESM by default, bundled as CJS as well ([@nklomp](https://github.com/nklomp))
16-
- chore(ci): merge main into develop (next) ([@github-actions[bot]](https://github.com/github-actions[bot]))
9+
### Features
1710

18-
#### Authors: 2
11+
* add biome ([b8ff6cb](https://github.com/Sphereon-Opensource/OID4VC/commit/b8ff6cb8c7ca78acfc2dffab080ac03ea24ee8d5))
12+
* add biome ([d92e50e](https://github.com/Sphereon-Opensource/OID4VC/commit/d92e50eb349a07f6c76d012ece5e88473b2406c5))
13+
* Add intuit/auto for release management ([088b085](https://github.com/Sphereon-Opensource/OID4VC/commit/088b08578a236c0b23cfcb3eedd7bbf39c772ee7))
14+
* move from jest to vitest ([6188f4a](https://github.com/Sphereon-Opensource/OID4VC/commit/6188f4a58493429d9ec2581eb587d61e5d91ad64))
15+
* Project is now ESM by default, bundled as CJS as well ([af84cc5](https://github.com/Sphereon-Opensource/OID4VC/commit/af84cc5d0d775d9e76ce49695fd7b0b67d98a9dd))
1916

20-
- [@github-actions[bot]](https://github.com/github-actions[bot])
21-
- Niels Klomp ([@nklomp](https://github.com/nklomp))
2217

23-
---
2418

25-
# Change Log
2619

27-
All notable changes to this project will be documented in this file.
28-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
2920

3021
# [0.17.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.16.0...v0.17.0) (2025-03-14)
3122

lerna.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
2-
"packages": ["packages/*"],
3-
"version": "0.18.2",
2+
"packages": [
3+
"packages/*"
4+
],
5+
"version": "0.19.0",
46
"npmClient": "pnpm",
5-
"workspaces": ["packages/*"]
6-
}
7+
"workspaces": [
8+
"packages/*"
9+
]
10+
}

packages/callback-example/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.19.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.17.0...v0.19.0) (2025-05-22)
7+
8+
9+
### Features
10+
11+
* add biome ([b8ff6cb](https://github.com/Sphereon-Opensource/OID4VC/commit/b8ff6cb8c7ca78acfc2dffab080ac03ea24ee8d5))
12+
* add biome ([d92e50e](https://github.com/Sphereon-Opensource/OID4VC/commit/d92e50eb349a07f6c76d012ece5e88473b2406c5))
13+
* move from jest to vitest ([6188f4a](https://github.com/Sphereon-Opensource/OID4VC/commit/6188f4a58493429d9ec2581eb587d61e5d91ad64))
14+
* Project is now ESM by default, bundled as CJS as well ([af84cc5](https://github.com/Sphereon-Opensource/OID4VC/commit/af84cc5d0d775d9e76ce49695fd7b0b67d98a9dd))
15+
16+
17+
18+
19+
620
# [0.17.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.16.0...v0.17.0) (2025-03-14)
721

822
### Bug Fixes

packages/callback-example/package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sphereon/callback",
3-
"version": "0.18.2",
3+
"version": "0.19.0",
44
"description": "OpenID 4 Verifiable Credential Issuance issuer callback example",
55
"source": "./src/index.ts",
66
"type": "module",
@@ -46,7 +46,12 @@
4646
"engines": {
4747
"node": ">=20.6"
4848
},
49-
"files": ["src", "dist", "README.md", "LICENSE.md"],
49+
"files": [
50+
"src",
51+
"dist",
52+
"README.md",
53+
"LICENSE.md"
54+
],
5055
"keywords": [
5156
"Sphereon",
5257
"Verifiable Credentials",

packages/client/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.19.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.17.0...v0.19.0) (2025-05-22)
7+
8+
9+
### Features
10+
11+
* add biome ([b8ff6cb](https://github.com/Sphereon-Opensource/OID4VC/commit/b8ff6cb8c7ca78acfc2dffab080ac03ea24ee8d5))
12+
* add biome ([d92e50e](https://github.com/Sphereon-Opensource/OID4VC/commit/d92e50eb349a07f6c76d012ece5e88473b2406c5))
13+
* move from jest to vitest ([6188f4a](https://github.com/Sphereon-Opensource/OID4VC/commit/6188f4a58493429d9ec2581eb587d61e5d91ad64))
14+
* Project is now ESM by default, bundled as CJS as well ([af84cc5](https://github.com/Sphereon-Opensource/OID4VC/commit/af84cc5d0d775d9e76ce49695fd7b0b67d98a9dd))
15+
16+
17+
18+
19+
620
# [0.17.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.16.0...v0.17.0) (2025-03-14)
721

822
### Bug Fixes

packages/client/package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sphereon/oid4vci-client",
3-
"version": "0.18.2",
3+
"version": "0.19.0",
44
"description": "OpenID for Verifiable Credential Issuance (OpenID4VCI) client",
55
"source": "./src/index.ts",
66
"type": "module",
@@ -55,7 +55,12 @@
5555
"engines": {
5656
"node": ">=20"
5757
},
58-
"files": ["src", "dist", "README.md", "LICENSE.md"],
58+
"files": [
59+
"src",
60+
"dist",
61+
"README.md",
62+
"LICENSE.md"
63+
],
5964
"keywords": [
6065
"Sphereon",
6166
"Verifiable Credentials",

packages/common/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.19.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.17.0...v0.19.0) (2025-05-22)
7+
8+
9+
### Features
10+
11+
* add biome ([d92e50e](https://github.com/Sphereon-Opensource/OID4VC/commit/d92e50eb349a07f6c76d012ece5e88473b2406c5))
12+
* Add intuit/auto for release management ([088b085](https://github.com/Sphereon-Opensource/OID4VC/commit/088b08578a236c0b23cfcb3eedd7bbf39c772ee7))
13+
* move from jest to vitest ([6188f4a](https://github.com/Sphereon-Opensource/OID4VC/commit/6188f4a58493429d9ec2581eb587d61e5d91ad64))
14+
* Project is now ESM by default, bundled as CJS as well ([af84cc5](https://github.com/Sphereon-Opensource/OID4VC/commit/af84cc5d0d775d9e76ce49695fd7b0b67d98a9dd))
15+
16+
17+
18+
19+
620
# [0.17.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.16.0...v0.17.0) (2025-03-14)
721

822
### Bug Fixes

packages/common/package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sphereon/oid4vc-common",
3-
"version": "0.18.2",
3+
"version": "0.19.0",
44
"description": "OpenID 4 Verifiable Credentials Common",
55
"source": "./src/index.ts",
66
"type": "module",
@@ -34,7 +34,12 @@
3434
"engines": {
3535
"node": ">=20"
3636
},
37-
"files": ["src", "dist", "README.md", "LICENSE.md"],
37+
"files": [
38+
"src",
39+
"dist",
40+
"README.md",
41+
"LICENSE.md"
42+
],
3843
"keywords": [
3944
"Sphereon",
4045
"Verifiable Credentials",

packages/did-auth-siop-adapter/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.19.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.17.0...v0.19.0) (2025-05-22)
7+
8+
9+
### Features
10+
11+
* add biome ([b8ff6cb](https://github.com/Sphereon-Opensource/OID4VC/commit/b8ff6cb8c7ca78acfc2dffab080ac03ea24ee8d5))
12+
* add biome ([d92e50e](https://github.com/Sphereon-Opensource/OID4VC/commit/d92e50eb349a07f6c76d012ece5e88473b2406c5))
13+
* move from jest to vitest ([6188f4a](https://github.com/Sphereon-Opensource/OID4VC/commit/6188f4a58493429d9ec2581eb587d61e5d91ad64))
14+
* Project is now ESM by default, bundled as CJS as well ([af84cc5](https://github.com/Sphereon-Opensource/OID4VC/commit/af84cc5d0d775d9e76ce49695fd7b0b67d98a9dd))
15+
16+
17+
18+
19+
620
# [0.17.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.16.0...v0.17.0) (2025-03-14)
721

822
### Bug Fixes

packages/did-auth-siop-adapter/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sphereon/did-auth-siop-adapter",
3-
"version": "0.18.2",
3+
"version": "0.19.0",
44
"description": "Self Issued OpenID V2 (SIOPv2) and OpenID 4 Verifiable Presentations (OID4VP) did adapter",
55
"source": "./src/index.ts",
66
"type": "module",
@@ -36,7 +36,9 @@
3636
"engines": {
3737
"node": ">=20"
3838
},
39-
"files": ["dist/**/*"],
39+
"files": [
40+
"dist/**/*"
41+
],
4042
"keywords": [
4143
"Sphereon",
4244
"SSI",

0 commit comments

Comments
 (0)