Skip to content

Commit

Permalink
chore(release): v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Mar 12, 2024
1 parent 552b594 commit a26955a
Show file tree
Hide file tree
Showing 20 changed files with 218 additions and 38 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)


### Bug Fixes

* 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))
* 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))


### Features

* 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))





# [0.5.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.4.0...v0.5.0) (2024-03-11)


Expand Down
6 changes: 4 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.5.0",
"version": "0.6.0",
"npmClient": "pnpm",
"exact": true,
"message": "chore(release): %s",
"packages": ["packages/*"],
"packages": [
"packages/*"
],
"command": {
"publish": {
"conventionalCommits": true
Expand Down
8 changes: 8 additions & 0 deletions packages/browser-crypto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)

**Note:** Version bump only for package @sd-jwt/crypto-browser





# [0.5.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.4.0...v0.5.0) (2024-03-11)


Expand Down
17 changes: 13 additions & 4 deletions packages/browser-crypto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sd-jwt/crypto-browser",
"version": "0.5.0",
"version": "0.6.0",
"description": "sd-jwt draft 7 implementation in typescript",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -18,7 +18,11 @@
"test:browser": "vitest run ./src/test/*.spec.ts",
"test:cov": "vitest run --coverage"
},
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
"keywords": [
"sd-jwt",
"sdjwt",
"sd-jwt-vc"
],
"repository": {
"type": "git",
"url": "https://github.com/openwallet-foundation-labs/sd-jwt-js"
Expand All @@ -33,12 +37,17 @@
"access": "public"
},
"tsup": {
"entry": ["./src/index.ts"],
"entry": [
"./src/index.ts"
],
"sourceMap": true,
"splitting": false,
"clean": true,
"dts": true,
"format": ["cjs", "esm"]
"format": [
"cjs",
"esm"
]
},
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
}
8 changes: 8 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)

**Note:** Version bump only for package @sd-jwt/core





# [0.5.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.4.0...v0.5.0) (2024-03-11)


Expand Down
17 changes: 13 additions & 4 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sd-jwt/core",
"version": "0.5.0",
"version": "0.6.0",
"description": "sd-jwt draft 7 implementation in typescript",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -19,7 +19,11 @@
"test:browser": "vitest run ./src/test/*.spec.ts --environment jsdom",
"test:cov": "vitest run --coverage"
},
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
"keywords": [
"sd-jwt",
"sdjwt",
"sd-jwt-vc"
],
"engines": {
"node": ">=16"
},
Expand All @@ -46,12 +50,17 @@
"access": "public"
},
"tsup": {
"entry": ["./src/index.ts"],
"entry": [
"./src/index.ts"
],
"sourceMap": true,
"splitting": false,
"clean": true,
"dts": true,
"format": ["cjs", "esm"]
"format": [
"cjs",
"esm"
]
},
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
}
8 changes: 8 additions & 0 deletions packages/decode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)

**Note:** Version bump only for package @sd-jwt/decode





# [0.5.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.4.0...v0.5.0) (2024-03-11)


Expand Down
17 changes: 13 additions & 4 deletions packages/decode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sd-jwt/decode",
"version": "0.5.0",
"version": "0.6.0",
"description": "sd-jwt draft 7 implementation in typescript",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -18,7 +18,11 @@
"test:node": "vitest run ./src/test/*.spec.ts --coverage",
"test:browser": "vitest run ./src/test/*.spec.ts --environment jsdom --coverage"
},
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
"keywords": [
"sd-jwt",
"sdjwt",
"sd-jwt-vc"
],
"engines": {
"node": ">=16"
},
Expand All @@ -43,12 +47,17 @@
"access": "public"
},
"tsup": {
"entry": ["./src/index.ts"],
"entry": [
"./src/index.ts"
],
"sourceMap": true,
"splitting": false,
"clean": true,
"dts": true,
"format": ["cjs", "esm"]
"format": [
"cjs",
"esm"
]
},
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
}
8 changes: 8 additions & 0 deletions packages/hash/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)

**Note:** Version bump only for package @sd-jwt/hash





# [0.5.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.4.0...v0.5.0) (2024-03-11)


Expand Down
17 changes: 13 additions & 4 deletions packages/hash/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sd-jwt/hash",
"version": "0.5.0",
"version": "0.6.0",
"description": "sd-jwt draft 7 implementation in typescript",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -19,7 +19,11 @@
"test:browser": "vitest run ./src/test/*.spec.ts --environment jsdom",
"test:cov": "vitest run --coverage"
},
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
"keywords": [
"sd-jwt",
"sdjwt",
"sd-jwt-vc"
],
"engines": {
"node": ">=16"
},
Expand All @@ -44,12 +48,17 @@
"access": "public"
},
"tsup": {
"entry": ["./src/index.ts"],
"entry": [
"./src/index.ts"
],
"sourceMap": true,
"splitting": false,
"clean": true,
"dts": true,
"format": ["cjs", "esm"]
"format": [
"cjs",
"esm"
]
},
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
}
8 changes: 8 additions & 0 deletions packages/node-crypto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)

**Note:** Version bump only for package @sd-jwt/crypto-nodejs





# [0.5.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.4.0...v0.5.0) (2024-03-11)


Expand Down
17 changes: 13 additions & 4 deletions packages/node-crypto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sd-jwt/crypto-nodejs",
"version": "0.5.0",
"version": "0.6.0",
"description": "sd-jwt draft 7 implementation in typescript",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -18,7 +18,11 @@
"test:node": "vitest run ./src/test/*.spec.ts",
"test:cov": "vitest run --coverage"
},
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
"keywords": [
"sd-jwt",
"sdjwt",
"sd-jwt-vc"
],
"engines": {
"node": ">=16"
},
Expand All @@ -36,12 +40,17 @@
"access": "public"
},
"tsup": {
"entry": ["./src/index.ts"],
"entry": [
"./src/index.ts"
],
"sourceMap": true,
"splitting": false,
"clean": true,
"dts": true,
"format": ["cjs", "esm"]
"format": [
"cjs",
"esm"
]
},
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
}
16 changes: 16 additions & 0 deletions packages/present/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)


### Bug Fixes

* 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))


### Features

* 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))





# [0.5.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.4.0...v0.5.0) (2024-03-11)


Expand Down
17 changes: 13 additions & 4 deletions packages/present/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sd-jwt/present",
"version": "0.5.0",
"version": "0.6.0",
"description": "sd-jwt draft 7 implementation in typescript",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -19,7 +19,11 @@
"test:browser": "vitest run ./src/test/*.spec.ts --environment jsdom",
"test:cov": "vitest run --coverage"
},
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
"keywords": [
"sd-jwt",
"sdjwt",
"sd-jwt-vc"
],
"engines": {
"node": ">=16"
},
Expand All @@ -45,12 +49,17 @@
"access": "public"
},
"tsup": {
"entry": ["./src/index.ts"],
"entry": [
"./src/index.ts"
],
"sourceMap": true,
"splitting": false,
"clean": true,
"dts": true,
"format": ["cjs", "esm"]
"format": [
"cjs",
"esm"
]
},
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
}
8 changes: 8 additions & 0 deletions packages/sd-jwt-vc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)

**Note:** Version bump only for package @sd-jwt/sd-jwt-vc





# [0.5.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.4.0...v0.5.0) (2024-03-11)


Expand Down
Loading

0 comments on commit a26955a

Please sign in to comment.