Skip to content

Commit 246c725

Browse files
committed
v0.20.0
1 parent f221d86 commit 246c725

20 files changed

Lines changed: 193 additions & 24 deletions

File tree

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
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.20.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.19.0...v0.20.0) (2025-11-19)
7+
8+
9+
### Bug Fixes
10+
11+
* added verified data types ([73d688d](https://github.com/Sphereon-Opensource/OID4VC/commit/73d688d585a1635937029e65a579d567277eaa58))
12+
* DIIPv4 fixes ([012b87c](https://github.com/Sphereon-Opensource/OID4VC/commit/012b87c5aa0795286a6dbdf21fa9c7a1bb688384))
13+
14+
15+
### Features
16+
17+
* added callback support when creating auth requests ([daddf2d](https://github.com/Sphereon-Opensource/OID4VC/commit/daddf2d8102adeaa3db71dd37c1ab6867c21e8b8))
18+
* support draft 28 OID4VP ([ab84e8b](https://github.com/Sphereon-Opensource/OID4VC/commit/ab84e8b6f4d69bb0b120a55ac6463a18878eded8))
19+
* use dcql queries only based on v1 of openid4vp spec ([2ea4e37](https://github.com/Sphereon-Opensource/OID4VC/commit/2ea4e37c465491bf437627840e1b420c97d5200f))
20+
21+
22+
23+
24+
625
# [0.19.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.17.0...v0.19.0) (2025-05-22)
726

827

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.19.0",
2+
"packages": [
3+
"packages/*"
4+
],
5+
"version": "0.20.0",
46
"npmClient": "pnpm",
5-
"workspaces": ["packages/*"]
6-
}
7+
"workspaces": [
8+
"packages/*"
9+
]
10+
}

packages/callback-example/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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.20.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.19.0...v0.20.0) (2025-11-19)
7+
8+
9+
### Bug Fixes
10+
11+
* DIIPv4 fixes ([012b87c](https://github.com/Sphereon-Opensource/OID4VC/commit/012b87c5aa0795286a6dbdf21fa9c7a1bb688384))
12+
13+
14+
15+
16+
617
# [0.19.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.17.0...v0.19.0) (2025-05-22)
718

819

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.19.0",
3+
"version": "0.20.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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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.20.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.19.0...v0.20.0) (2025-11-19)
7+
8+
9+
### Bug Fixes
10+
11+
* DIIPv4 fixes ([012b87c](https://github.com/Sphereon-Opensource/OID4VC/commit/012b87c5aa0795286a6dbdf21fa9c7a1bb688384))
12+
13+
14+
15+
16+
617
# [0.19.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.17.0...v0.19.0) (2025-05-22)
718

819

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.19.0",
3+
"version": "0.20.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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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.20.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.19.0...v0.20.0) (2025-11-19)
7+
8+
9+
### Bug Fixes
10+
11+
* DIIPv4 fixes ([012b87c](https://github.com/Sphereon-Opensource/OID4VC/commit/012b87c5aa0795286a6dbdf21fa9c7a1bb688384))
12+
13+
14+
15+
16+
617
# [0.19.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.17.0...v0.19.0) (2025-05-22)
718

819

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.19.0",
3+
"version": "0.20.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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.20.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.19.0...v0.20.0) (2025-11-19)
7+
8+
**Note:** Version bump only for package @sphereon/did-auth-siop-adapter
9+
10+
11+
12+
13+
614
# [0.19.0](https://github.com/Sphereon-Opensource/OID4VC/compare/v0.17.0...v0.19.0) (2025-05-22)
715

816

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.19.0",
3+
"version": "0.20.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)