Skip to content

Commit a26955a

Browse files
author
github-actions
committed
chore(release): v0.6.0
1 parent 552b594 commit a26955a

20 files changed

+218
-38
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
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.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)
7+
8+
9+
### Bug Fixes
10+
11+
* add missing export ([#159](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/159)) ([f92b3e2](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/f92b3e246371a83c51c5450b9bccb04753c58bf4))
12+
* validate JWT signed other implemenation ([#158](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/158)) ([9f28a26](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/9f28a26214d4112e5ef280e5e754b62e36772328))
13+
14+
15+
### Features
16+
17+
* make _digest value public in disclosure ([#151](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/151)) ([9baa93e](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/9baa93efb612ee2fe73c5872766cbc37e541c4dc))
18+
19+
20+
21+
22+
623
# [0.5.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.4.0...v0.5.0) (2024-03-11)
724

825

lerna.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"npmClient": "pnpm",
55
"exact": true,
66
"message": "chore(release): %s",
7-
"packages": ["packages/*"],
7+
"packages": [
8+
"packages/*"
9+
],
810
"command": {
911
"publish": {
1012
"conventionalCommits": true

packages/browser-crypto/CHANGELOG.md

+8
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.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)
7+
8+
**Note:** Version bump only for package @sd-jwt/crypto-browser
9+
10+
11+
12+
13+
614
# [0.5.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.4.0...v0.5.0) (2024-03-11)
715

816

packages/browser-crypto/package.json

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sd-jwt/crypto-browser",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "sd-jwt draft 7 implementation in typescript",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",
@@ -18,7 +18,11 @@
1818
"test:browser": "vitest run ./src/test/*.spec.ts",
1919
"test:cov": "vitest run --coverage"
2020
},
21-
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
21+
"keywords": [
22+
"sd-jwt",
23+
"sdjwt",
24+
"sd-jwt-vc"
25+
],
2226
"repository": {
2327
"type": "git",
2428
"url": "https://github.com/openwallet-foundation-labs/sd-jwt-js"
@@ -33,12 +37,17 @@
3337
"access": "public"
3438
},
3539
"tsup": {
36-
"entry": ["./src/index.ts"],
40+
"entry": [
41+
"./src/index.ts"
42+
],
3743
"sourceMap": true,
3844
"splitting": false,
3945
"clean": true,
4046
"dts": true,
41-
"format": ["cjs", "esm"]
47+
"format": [
48+
"cjs",
49+
"esm"
50+
]
4251
},
4352
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
4453
}

packages/core/CHANGELOG.md

+8
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.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)
7+
8+
**Note:** Version bump only for package @sd-jwt/core
9+
10+
11+
12+
13+
614
# [0.5.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.4.0...v0.5.0) (2024-03-11)
715

816

packages/core/package.json

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sd-jwt/core",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "sd-jwt draft 7 implementation in typescript",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",
@@ -19,7 +19,11 @@
1919
"test:browser": "vitest run ./src/test/*.spec.ts --environment jsdom",
2020
"test:cov": "vitest run --coverage"
2121
},
22-
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
22+
"keywords": [
23+
"sd-jwt",
24+
"sdjwt",
25+
"sd-jwt-vc"
26+
],
2327
"engines": {
2428
"node": ">=16"
2529
},
@@ -46,12 +50,17 @@
4650
"access": "public"
4751
},
4852
"tsup": {
49-
"entry": ["./src/index.ts"],
53+
"entry": [
54+
"./src/index.ts"
55+
],
5056
"sourceMap": true,
5157
"splitting": false,
5258
"clean": true,
5359
"dts": true,
54-
"format": ["cjs", "esm"]
60+
"format": [
61+
"cjs",
62+
"esm"
63+
]
5564
},
5665
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
5766
}

packages/decode/CHANGELOG.md

+8
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.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)
7+
8+
**Note:** Version bump only for package @sd-jwt/decode
9+
10+
11+
12+
13+
614
# [0.5.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.4.0...v0.5.0) (2024-03-11)
715

816

packages/decode/package.json

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sd-jwt/decode",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "sd-jwt draft 7 implementation in typescript",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",
@@ -18,7 +18,11 @@
1818
"test:node": "vitest run ./src/test/*.spec.ts --coverage",
1919
"test:browser": "vitest run ./src/test/*.spec.ts --environment jsdom --coverage"
2020
},
21-
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
21+
"keywords": [
22+
"sd-jwt",
23+
"sdjwt",
24+
"sd-jwt-vc"
25+
],
2226
"engines": {
2327
"node": ">=16"
2428
},
@@ -43,12 +47,17 @@
4347
"access": "public"
4448
},
4549
"tsup": {
46-
"entry": ["./src/index.ts"],
50+
"entry": [
51+
"./src/index.ts"
52+
],
4753
"sourceMap": true,
4854
"splitting": false,
4955
"clean": true,
5056
"dts": true,
51-
"format": ["cjs", "esm"]
57+
"format": [
58+
"cjs",
59+
"esm"
60+
]
5261
},
5362
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
5463
}

packages/hash/CHANGELOG.md

+8
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.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)
7+
8+
**Note:** Version bump only for package @sd-jwt/hash
9+
10+
11+
12+
13+
614
# [0.5.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.4.0...v0.5.0) (2024-03-11)
715

816

packages/hash/package.json

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sd-jwt/hash",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "sd-jwt draft 7 implementation in typescript",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",
@@ -19,7 +19,11 @@
1919
"test:browser": "vitest run ./src/test/*.spec.ts --environment jsdom",
2020
"test:cov": "vitest run --coverage"
2121
},
22-
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
22+
"keywords": [
23+
"sd-jwt",
24+
"sdjwt",
25+
"sd-jwt-vc"
26+
],
2327
"engines": {
2428
"node": ">=16"
2529
},
@@ -44,12 +48,17 @@
4448
"access": "public"
4549
},
4650
"tsup": {
47-
"entry": ["./src/index.ts"],
51+
"entry": [
52+
"./src/index.ts"
53+
],
4854
"sourceMap": true,
4955
"splitting": false,
5056
"clean": true,
5157
"dts": true,
52-
"format": ["cjs", "esm"]
58+
"format": [
59+
"cjs",
60+
"esm"
61+
]
5362
},
5463
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
5564
}

packages/node-crypto/CHANGELOG.md

+8
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.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)
7+
8+
**Note:** Version bump only for package @sd-jwt/crypto-nodejs
9+
10+
11+
12+
13+
614
# [0.5.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.4.0...v0.5.0) (2024-03-11)
715

816

packages/node-crypto/package.json

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sd-jwt/crypto-nodejs",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "sd-jwt draft 7 implementation in typescript",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",
@@ -18,7 +18,11 @@
1818
"test:node": "vitest run ./src/test/*.spec.ts",
1919
"test:cov": "vitest run --coverage"
2020
},
21-
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
21+
"keywords": [
22+
"sd-jwt",
23+
"sdjwt",
24+
"sd-jwt-vc"
25+
],
2226
"engines": {
2327
"node": ">=16"
2428
},
@@ -36,12 +40,17 @@
3640
"access": "public"
3741
},
3842
"tsup": {
39-
"entry": ["./src/index.ts"],
43+
"entry": [
44+
"./src/index.ts"
45+
],
4046
"sourceMap": true,
4147
"splitting": false,
4248
"clean": true,
4349
"dts": true,
44-
"format": ["cjs", "esm"]
50+
"format": [
51+
"cjs",
52+
"esm"
53+
]
4554
},
4655
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
4756
}

packages/present/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)
7+
8+
9+
### Bug Fixes
10+
11+
* add missing export ([#159](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/159)) ([f92b3e2](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/f92b3e246371a83c51c5450b9bccb04753c58bf4))
12+
13+
14+
### Features
15+
16+
* make _digest value public in disclosure ([#151](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/151)) ([9baa93e](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/9baa93efb612ee2fe73c5872766cbc37e541c4dc))
17+
18+
19+
20+
21+
622
# [0.5.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.4.0...v0.5.0) (2024-03-11)
723

824

packages/present/package.json

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sd-jwt/present",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "sd-jwt draft 7 implementation in typescript",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",
@@ -19,7 +19,11 @@
1919
"test:browser": "vitest run ./src/test/*.spec.ts --environment jsdom",
2020
"test:cov": "vitest run --coverage"
2121
},
22-
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
22+
"keywords": [
23+
"sd-jwt",
24+
"sdjwt",
25+
"sd-jwt-vc"
26+
],
2327
"engines": {
2428
"node": ">=16"
2529
},
@@ -45,12 +49,17 @@
4549
"access": "public"
4650
},
4751
"tsup": {
48-
"entry": ["./src/index.ts"],
52+
"entry": [
53+
"./src/index.ts"
54+
],
4955
"sourceMap": true,
5056
"splitting": false,
5157
"clean": true,
5258
"dts": true,
53-
"format": ["cjs", "esm"]
59+
"format": [
60+
"cjs",
61+
"esm"
62+
]
5463
},
5564
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
5665
}

packages/sd-jwt-vc/CHANGELOG.md

+8
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.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)
7+
8+
**Note:** Version bump only for package @sd-jwt/sd-jwt-vc
9+
10+
11+
12+
13+
614
# [0.5.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.4.0...v0.5.0) (2024-03-11)
715

816

0 commit comments

Comments
 (0)