Skip to content

Commit

Permalink
chore(release): v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Nov 26, 2024
1 parent d099072 commit 0d9742c
Show file tree
Hide file tree
Showing 22 changed files with 244 additions and 42 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.8.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.7.2...v0.8.0) (2024-11-26)


### Bug Fixes

* also push tags when releasing ([#245](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/245)) ([c3f4580](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/c3f4580c6e93856b5eaaad98d12984a7be932639))
* check if the header includes the string ([#244](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/244)) ([8a48bb5](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/8a48bb57fcf9bbad349f349b0aa1ffd997c86bb2))
* header alg value in examples ([#251](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/251)) ([974efea](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/974efea1e457689bab92d2fc23aae0ed9fb0eafd))


### Features

* add jws serialization feature ([#253](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/253)) ([e83b494](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/e83b4946595d043f56647e6cdc98ad34edf0acde))
* align media type with sd-jwt-vc draft 06 ([#256](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/256)) ([1aa3aea](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/1aa3aea86213e75328975e34d9bf71410fc7a12a))





## [0.7.2](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.7.1...v0.7.2) (2024-07-19)

**Note:** Version bump only for package @sd-jwt/sd-jwt-vc
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.7.2",
"version": "0.8.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.8.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.7.2...v0.8.0) (2024-11-26)

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





## [0.7.2](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.7.1...v0.7.2) (2024-07-19)

**Note:** Version bump only for package @sd-jwt/crypto-browser
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.7.2",
"version": "0.8.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"
}
11 changes: 11 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.7.2...v0.8.0) (2024-11-26)


### Features

* add jws serialization feature ([#253](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/253)) ([e83b494](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/e83b4946595d043f56647e6cdc98ad34edf0acde))





## [0.7.2](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.7.1...v0.7.2) (2024-07-19)

**Note:** Version bump only for package @sd-jwt/core
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.7.2",
"version": "0.8.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": ">=18"
},
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.8.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.7.2...v0.8.0) (2024-11-26)

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





## [0.7.2](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.7.1...v0.7.2) (2024-07-19)

**Note:** Version bump only for package @sd-jwt/decode
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.7.2",
"version": "0.8.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": ">=18"
},
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.8.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.7.2...v0.8.0) (2024-11-26)

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





## [0.7.2](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.7.1...v0.7.2) (2024-07-19)

**Note:** Version bump only for package @sd-jwt/hash
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.7.2",
"version": "0.8.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": ">=18"
},
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/jwt-status-list/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.8.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.7.2...v0.8.0) (2024-11-26)

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





## [0.7.2](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.7.1...v0.7.2) (2024-07-19)

**Note:** Version bump only for package @sd-jwt/jwt-status-list
Expand Down
17 changes: 13 additions & 4 deletions packages/jwt-status-list/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sd-jwt/jwt-status-list",
"version": "0.7.2",
"version": "0.8.0",
"description": "Implementation based on https://datatracker.ietf.org/doc/draft-ietf-oauth-status-list/",
"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-vc", "status-list", "sd-jwt"],
"keywords": [
"sd-jwt-vc",
"status-list",
"sd-jwt"
],
"engines": {
"node": ">=18"
},
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/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.8.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.7.2...v0.8.0) (2024-11-26)

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





## [0.7.2](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.7.1...v0.7.2) (2024-07-19)

**Note:** Version bump only for package @sd-jwt/crypto-nodejs
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.7.2",
"version": "0.8.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": ">=18"
},
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"
}
8 changes: 8 additions & 0 deletions packages/present/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.8.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.7.2...v0.8.0) (2024-11-26)

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





## [0.7.2](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.7.1...v0.7.2) (2024-07-19)

**Note:** Version bump only for package @sd-jwt/present
Expand Down
Loading

0 comments on commit 0d9742c

Please sign in to comment.