Skip to content

Commit

Permalink
chore(release): v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sphereon-ci committed Apr 30, 2023
1 parent a09809c commit 178beb9
Show file tree
Hide file tree
Showing 24 changed files with 218 additions and 51 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.11.0](https://github.com/Sphereon-Opensource/veramo-BBS/compare/v0.10.2...v0.11.0) (2023-04-30)


### Features

* Add 2020 ed25519 support. ([50cc65e](https://github.com/Sphereon-Opensource/veramo-BBS/commit/50cc65e249001809c18d1ef0e2e751c8428ccc70))
* Add EBSI LE DID Provider (does not persist into the registry yet) ([7a8cf56](https://github.com/Sphereon-Opensource/veramo-BBS/commit/7a8cf5687152ba0a7449d93eeb40289d6af07acf))
* add ebsi v1 did driver ([8869643](https://github.com/Sphereon-Opensource/veramo-BBS/commit/88696430b671d46127d3dcff41936cbcb1a66d4c))
* add key utils package for common key functions ([0543254](https://github.com/Sphereon-Opensource/veramo-BBS/commit/0543254d14b4ba54adeeab944315db5ba6221d47))
* allow default registry from environment for ebsi v1 did driver ([217dfc0](https://github.com/Sphereon-Opensource/veramo-BBS/commit/217dfc0d89a72229591be3313cb1e7f3eebb25ad))
* Move to pnpm from yarn ([6ed9bd5](https://github.com/Sphereon-Opensource/veramo-BBS/commit/6ed9bd5fe72645364e631be1628710f57d5deb19))
* Reorganize SSI-SDK crypto extensions and DIDs ([5578914](https://github.com/Sphereon-Opensource/veramo-BBS/commit/55789146f48b31e8efdd64afa464a42779a2137b))





## [0.10.2](https://github.com/Sphereon-Opensource/veramo-BBS/compare/v0.10.1...v0.10.2) (2023-03-11)

**Note:** Version bump only for package @sphereon/veramo-BBS-workspace
Expand Down
11 changes: 8 additions & 3 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"packages": ["packages/*"],
"version": "0.10.2",
"packages": [
"packages/*"
],
"version": "0.11.0",
"npmClient": "pnpm",
"command": {
"publish": {
"allowBranch": ["main", "master"],
"allowBranch": [
"main",
"master"
],
"conventionalCommits": true,
"gitRemote": "origin",
"message": "chore(release): %s"
Expand Down
12 changes: 12 additions & 0 deletions packages/did-provider-ebsi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.11.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.10.2...v0.11.0) (2023-04-30)


### Features

* Add EBSI LE DID Provider (does not persist into the registry yet) ([7a8cf56](https://github.com/Sphereon-Opensource/SSI-SDK/commit/7a8cf5687152ba0a7449d93eeb40289d6af07acf))
* add key utils package for common key functions ([0543254](https://github.com/Sphereon-Opensource/SSI-SDK/commit/0543254d14b4ba54adeeab944315db5ba6221d47))





## [0.10.2](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.10.1...v0.10.2) (2023-03-11)

**Note:** Version bump only for package @sphereon/bls-did-provider-key
Expand Down
18 changes: 9 additions & 9 deletions packages/did-provider-ebsi/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@sphereon/ssi-sdk-ext.did-provider-ebsi",
"description": "Sphereon SSI-SDK plugin for management of did:ebsi v1 Legal Entity identifiers.",
"version": "0.10.1",
"version": "0.11.0",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -10,22 +10,22 @@
"extract-api": "pnpm veramo dev extract-api"
},
"dependencies": {
"@transmute/did-key-bls12381": "^0.3.0-unstable.10",
"@ethersproject/random": "^5.7.0",
"@sphereon/ssi-sdk-ext.did-resolver-ebsi": "workspace:*",
"@veramo/did-provider-key": "4.2.0",
"@transmute/did-key-bls12381": "^0.3.0-unstable.10",
"@veramo/core": "4.2.0",
"@veramo/did-manager": "4.2.0",
"@veramo/did-provider-key": "4.2.0",
"debug": "^4.3.4",
"did-resolver": "^4.1.0",
"@ethersproject/random": "^5.7.0",
"multiformats": "9.9.0",
"uint8arrays": "3.1.1",
"debug": "^4.3.4"
"uint8arrays": "3.1.1"
},
"devDependencies": {
"@veramo/cli": "4.2.0",
"@veramo/key-manager": "4.2.0",
"@sphereon/ssi-sdk-ext.key-manager": "workspace:*",
"@sphereon/ssi-sdk-ext.kms-local": "workspace:*"
"@sphereon/ssi-sdk-ext.kms-local": "workspace:*",
"@veramo/cli": "4.2.0",
"@veramo/key-manager": "4.2.0"
},
"resolutions": {
"jsonld": "npm:@digitalcredentials/jsonld@^5.2.1",
Expand Down
14 changes: 14 additions & 0 deletions packages/did-provider-jwk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.11.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.10.2...v0.11.0) (2023-04-30)


### Features

* Add EBSI LE DID Provider (does not persist into the registry yet) ([7a8cf56](https://github.com/Sphereon-OpenSource/ssi-sdk/commit/7a8cf5687152ba0a7449d93eeb40289d6af07acf))
* add key utils package for common key functions ([0543254](https://github.com/Sphereon-OpenSource/ssi-sdk/commit/0543254d14b4ba54adeeab944315db5ba6221d47))
* Move to pnpm from yarn ([6ed9bd5](https://github.com/Sphereon-OpenSource/ssi-sdk/commit/6ed9bd5fe72645364e631be1628710f57d5deb19))
* Reorganize SSI-SDK crypto extensions and DIDs ([5578914](https://github.com/Sphereon-OpenSource/ssi-sdk/commit/55789146f48b31e8efdd64afa464a42779a2137b))





# [0.9.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.8.0...v0.9.0) (2023-03-09)

### Features
Expand Down
6 changes: 3 additions & 3 deletions packages/did-provider-jwk/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@sphereon/ssi-sdk-ext.did-provider-jwk",
"description": "Sphereon SSI-SDK plugin for management of did:key identifiers.",
"version": "0.10.1",
"version": "0.11.0",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -11,14 +11,14 @@
},
"dependencies": {
"@ethersproject/random": "^5.6.1",
"@sphereon/ssi-types": "^0.9.0",
"@sphereon/ssi-sdk-ext.key-utils": "workspace:*",
"@sphereon/ssi-types": "^0.9.0",
"@stablelib/ed25519": "^1.0.2",
"@veramo/core": "4.2.0",
"@veramo/did-manager": "4.2.0",
"base64url": "^3.0.1",
"debug": "^4.3.4",
"did-resolver": "^4.1.0",
"base64url": "^3.0.1",
"elliptic": "^6.5.4"
},
"devDependencies": {
Expand Down
15 changes: 15 additions & 0 deletions packages/did-provider-key/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.11.0](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.10.2...v0.11.0) (2023-04-30)


### Features

* Add EBSI LE DID Provider (does not persist into the registry yet) ([7a8cf56](https://github.com/Sphereon-Opensource/SSI-SDK/commit/7a8cf5687152ba0a7449d93eeb40289d6af07acf))
* add ebsi v1 did driver ([8869643](https://github.com/Sphereon-Opensource/SSI-SDK/commit/88696430b671d46127d3dcff41936cbcb1a66d4c))
* add key utils package for common key functions ([0543254](https://github.com/Sphereon-Opensource/SSI-SDK/commit/0543254d14b4ba54adeeab944315db5ba6221d47))
* Move to pnpm from yarn ([6ed9bd5](https://github.com/Sphereon-Opensource/SSI-SDK/commit/6ed9bd5fe72645364e631be1628710f57d5deb19))
* Reorganize SSI-SDK crypto extensions and DIDs ([5578914](https://github.com/Sphereon-Opensource/SSI-SDK/commit/55789146f48b31e8efdd64afa464a42779a2137b))





## [0.10.1](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.10.0...v0.10.1) (2023-03-10)

**Note:** Version bump only for package @sphereon/bls-did-provider-key
Expand Down
2 changes: 1 addition & 1 deletion packages/did-provider-key/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@sphereon/ssi-sdk-ext.did-provider-key",
"description": "Sphereon SSI-SDK plugin for management of did:key identifiers.",
"version": "0.10.2",
"version": "0.11.0",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
13 changes: 13 additions & 0 deletions packages/did-provider-lto/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Change Log

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

# [0.11.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.10.2...v0.11.0) (2023-04-30)


### Features

* add ebsi v1 did driver ([8869643](https://github.com/Sphereon-OpenSource/ssi-sdk/commit/88696430b671d46127d3dcff41936cbcb1a66d4c))
* add key utils package for common key functions ([0543254](https://github.com/Sphereon-OpenSource/ssi-sdk/commit/0543254d14b4ba54adeeab944315db5ba6221d47))
* allow default registry from environment for ebsi v1 did driver ([217dfc0](https://github.com/Sphereon-OpenSource/ssi-sdk/commit/217dfc0d89a72229591be3313cb1e7f3eebb25ad))
2 changes: 1 addition & 1 deletion packages/did-provider-lto/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@sphereon/ssi-sdk-ext.did-provider-lto",
"description": "LTO Network DID provider",
"version": "0.10.1",
"version": "0.11.0",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
15 changes: 15 additions & 0 deletions packages/did-resolver-ebsi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.11.0](https://github.com/Sphereon-Opensource/SSI-SDK-crypto-extensions/compare/v0.10.2...v0.11.0) (2023-04-30)


### Features

* Add 2020 ed25519 support. ([50cc65e](https://github.com/Sphereon-Opensource/SSI-SDK-crypto-extensions/commit/50cc65e249001809c18d1ef0e2e751c8428ccc70))
* Add EBSI LE DID Provider (does not persist into the registry yet) ([7a8cf56](https://github.com/Sphereon-Opensource/SSI-SDK-crypto-extensions/commit/7a8cf5687152ba0a7449d93eeb40289d6af07acf))
* add ebsi v1 did driver ([8869643](https://github.com/Sphereon-Opensource/SSI-SDK-crypto-extensions/commit/88696430b671d46127d3dcff41936cbcb1a66d4c))
* add key utils package for common key functions ([0543254](https://github.com/Sphereon-Opensource/SSI-SDK-crypto-extensions/commit/0543254d14b4ba54adeeab944315db5ba6221d47))
* allow default registry from environment for ebsi v1 did driver ([217dfc0](https://github.com/Sphereon-Opensource/SSI-SDK-crypto-extensions/commit/217dfc0d89a72229591be3313cb1e7f3eebb25ad))





## [0.10.2](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.10.1...v0.10.2) (2023-03-11)

**Note:** Version bump only for package @sphereon/bls-did-resolver-key
Expand Down
6 changes: 3 additions & 3 deletions packages/did-resolver-ebsi/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@sphereon/ssi-sdk-ext.did-resolver-ebsi",
"description": "Sphereon did:ebsi resolver for Legal Entities.",
"version": "0.10.1",
"version": "0.11.0",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -14,8 +14,8 @@
"dotenv": "^16.0.3"
},
"devDependencies": {
"@types/varint": "^6.0.1",
"@types/lodash.isplainobject": "^4.0.7"
"@types/lodash.isplainobject": "^4.0.7",
"@types/varint": "^6.0.1"
},
"files": [
"dist/**/*",
Expand Down
12 changes: 12 additions & 0 deletions packages/did-resolver-jwk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.11.0](https://github.com/Sphereon-OpenSource/ssi-sdk-crypto-extensions/compare/v0.10.2...v0.11.0) (2023-04-30)


### Features

* add key utils package for common key functions ([0543254](https://github.com/Sphereon-OpenSource/ssi-sdk-crypto-extensions/commit/0543254d14b4ba54adeeab944315db5ba6221d47))
* Reorganize SSI-SDK crypto extensions and DIDs ([5578914](https://github.com/Sphereon-OpenSource/ssi-sdk-crypto-extensions/commit/55789146f48b31e8efdd64afa464a42779a2137b))





# [0.9.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.8.0...v0.9.0) (2023-03-09)

### Features
Expand Down
8 changes: 4 additions & 4 deletions packages/did-resolver-jwk/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@sphereon/ssi-sdk-ext.did-resolver-jwk",
"description": "DIF resolver for resolution of did:jwk identifiers.",
"version": "0.10.1",
"version": "0.11.0",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -11,10 +11,10 @@
},
"dependencies": {
"@sphereon/ssi-types": "^0.9.0",
"debug": "^4.3.4",
"base64url": "^3.0.1",
"uint8arrays": "^3.1.1",
"did-resolver": "^4.1.0"
"debug": "^4.3.4",
"did-resolver": "^4.1.0",
"uint8arrays": "^3.1.1"
},
"devDependencies": {
"@or13/did-jwk": "^0.0.4",
Expand Down
14 changes: 14 additions & 0 deletions packages/did-resolver-key/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.11.0](https://github.com/Sphereon-Opensource/SSI-SDK-crypto-extensions/compare/v0.10.2...v0.11.0) (2023-04-30)


### Features

* Add 2020 ed25519 support. ([50cc65e](https://github.com/Sphereon-Opensource/SSI-SDK-crypto-extensions/commit/50cc65e249001809c18d1ef0e2e751c8428ccc70))
* add key utils package for common key functions ([0543254](https://github.com/Sphereon-Opensource/SSI-SDK-crypto-extensions/commit/0543254d14b4ba54adeeab944315db5ba6221d47))
* Move to pnpm from yarn ([6ed9bd5](https://github.com/Sphereon-Opensource/SSI-SDK-crypto-extensions/commit/6ed9bd5fe72645364e631be1628710f57d5deb19))
* Reorganize SSI-SDK crypto extensions and DIDs ([5578914](https://github.com/Sphereon-Opensource/SSI-SDK-crypto-extensions/commit/55789146f48b31e8efdd64afa464a42779a2137b))





## [0.10.1](https://github.com/Sphereon-Opensource/SSI-SDK/compare/v0.10.0...v0.10.1) (2023-03-10)

**Note:** Version bump only for package @sphereon/bls-did-resolver-key
Expand Down
16 changes: 8 additions & 8 deletions packages/did-resolver-key/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@sphereon/ssi-sdk-ext.did-resolver-key",
"description": "Sphereon did:key resolver with BBS+/BLS and EBSI support.",
"version": "0.10.1",
"version": "0.11.0",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -11,19 +11,19 @@
"dependencies": {
"@sphereon/ssi-sdk-ext.key-utils": "workspace:*",
"@stablelib/ed25519": "^1.0.3",
"bigint-mod-arith": "^3.2.1",
"did-resolver": "^4.1.0",
"enhanced-resolve": "^5.12.0",
"lodash.isplainobject": "^4.0.6",
"multiformats": "^9.9.0",
"nist-weierstrauss": "^1.6.1",
"uint8arrays": "^3.1.1",
"lodash.isplainobject": "^4.0.6",
"web-encoding": "^1.1.5",
"varint": "^6.0.0",
"nist-weierstrauss": "^1.6.1",
"bigint-mod-arith": "^3.2.1",
"enhanced-resolve": "^5.12.0"
"web-encoding": "^1.1.5"
},
"devDependencies": {
"@types/varint": "^6.0.1",
"@types/lodash.isplainobject": "^4.0.7"
"@types/lodash.isplainobject": "^4.0.7",
"@types/varint": "^6.0.1"
},
"files": [
"dist/**/*",
Expand Down
11 changes: 11 additions & 0 deletions packages/did-utils/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.11.0](https://github.com/Sphereon-OpenSource/ssi-sdk-crypto-extensions/compare/v0.10.2...v0.11.0) (2023-04-30)


### Features

* add key utils package for common key functions ([0543254](https://github.com/Sphereon-OpenSource/ssi-sdk-crypto-extensions/commit/0543254d14b4ba54adeeab944315db5ba6221d47))





# [0.9.0](https://github.com/Sphereon-OpenSource/ssi-sdk/compare/v0.8.0...v0.9.0) (2023-03-09)

### Bug Fixes
Expand Down
7 changes: 3 additions & 4 deletions packages/did-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@sphereon/ssi-sdk-ext.did-utils",
"description": "DID Utils",
"version": "0.10.1",
"version": "0.11.0",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -10,16 +10,15 @@
"build:clean": "tsc --build --clean && tsc --build"
},
"dependencies": {
"@sphereon/ssi-sdk-ext.key-utils": "workspace:*",
"@sphereon/did-uni-client": "^0.6.0",
"@sphereon/ssi-sdk-ext.key-utils": "workspace:*",
"@veramo/core": "4.2.0",
"@veramo/utils": "4.2.0",
"did-resolver": "^4.1.0",
"did-jwt": "^6.11.6",
"did-resolver": "^4.1.0",
"elliptic": "^6.5.4",
"uint8arrays": "^3.1.1"
},
"devDependencies": {},
"files": [
"dist/**/*",
"src/**/*",
Expand Down
Loading

0 comments on commit 178beb9

Please sign in to comment.