diff --git a/CHANGELOG.md b/CHANGELOG.md index 76a5afecc..ff0f084cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,49 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Bug Fixes + +* **did-manager:** rename AbstractDIDStore methods for SES compatibility ([0287340](https://github.com/uport-project/veramo/commit/02873401508a8a7d8c999bc12dc1d107a4a5202f)), closes [#1090](https://github.com/uport-project/veramo/issues/1090) +* **did-provider-pkh:** add missing caip dependency ([#1112](https://github.com/uport-project/veramo/issues/1112)) ([60bc5fd](https://github.com/uport-project/veramo/commit/60bc5fd6f654236c072f7943494b3e27bd045ce8)), closes [#1111](https://github.com/uport-project/veramo/issues/1111) +* **did-provider-pkh:** refactor and simplify did:pkh plugin ([#1113](https://github.com/uport-project/veramo/issues/1113)) ([42be48f](https://github.com/uport-project/veramo/commit/42be48ffe2251510f7bd5e10b43362e816655eb9)) +* **key-manager:** rename Abstract[Private]KeyStore methods for SES compatibility ([91631b6](https://github.com/uport-project/veramo/commit/91631b6d2a09d46accff6509f44792d88209b801)), closes [#1090](https://github.com/uport-project/veramo/issues/1090) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* increase request limit for express routers ([#1118](https://github.com/uport-project/veramo/issues/1118)) ([2db3149](https://github.com/uport-project/veramo/commit/2db314930e883fc599d5b670088e7be6475346a2)), closes [#1117](https://github.com/uport-project/veramo/issues/1117) +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* **did-manager:** implementations of AbstractDIDStore need to rename their methods to conform to the new API. Functionality remains the same. +* **key-manager:** implementations of AbstractKeyStore and AbstractPrivateKeyStore need to rename their methods to conform to the new API. Functionality remains the same. +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) diff --git a/lerna.json b/lerna.json index 48974bb1e..cc61691b1 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "4.3.0", + "version": "5.0.0", "npmClient": "pnpm", "changelog": { "repo": "uport-project/veramo", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index cc3145438..e77dae7b4 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) diff --git a/packages/cli/package.json b/packages/cli/package.json index 291b4133e..93eb651bc 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/cli", "description": "Veramo command line application.", - "version": "4.3.0", + "version": "5.0.0", "main": "build/cli.js", "exports": "./build/cli.js", "types": "build/cli.d.ts", @@ -20,28 +20,28 @@ "@transmute/credentials-context": "^0.7.0-unstable.79", "@types/blessed": "^0.1.19", "@types/swagger-ui-express": "^4.1.3", - "@veramo/core": "^4.3.0", - "@veramo/core-types": "^4.3.0", - "@veramo/credential-eip712": "^4.3.0", - "@veramo/credential-ld": "^4.3.0", - "@veramo/credential-w3c": "^4.3.0", - "@veramo/data-store": "^4.3.0", - "@veramo/did-comm": "^4.3.0", - "@veramo/did-discovery": "^4.3.0", - "@veramo/did-jwt": "^4.3.0", - "@veramo/did-manager": "^4.3.0", - "@veramo/did-provider-ethr": "^4.3.0", - "@veramo/did-provider-key": "^4.3.0", - "@veramo/did-provider-web": "^4.3.0", - "@veramo/did-resolver": "^4.3.0", - "@veramo/key-manager": "^4.3.0", - "@veramo/kms-local": "^4.3.0", - "@veramo/message-handler": "^4.3.0", - "@veramo/remote-client": "^4.3.0", - "@veramo/remote-server": "^4.3.0", - "@veramo/selective-disclosure": "^4.3.0", - "@veramo/url-handler": "^4.3.0", - "@veramo/utils": "^4.3.0", + "@veramo/core": "^5.0.0", + "@veramo/core-types": "^5.0.0", + "@veramo/credential-eip712": "^5.0.0", + "@veramo/credential-ld": "^5.0.0", + "@veramo/credential-w3c": "^5.0.0", + "@veramo/data-store": "^5.0.0", + "@veramo/did-comm": "^5.0.0", + "@veramo/did-discovery": "^5.0.0", + "@veramo/did-jwt": "^5.0.0", + "@veramo/did-manager": "^5.0.0", + "@veramo/did-provider-ethr": "^5.0.0", + "@veramo/did-provider-key": "^5.0.0", + "@veramo/did-provider-web": "^5.0.0", + "@veramo/did-resolver": "^5.0.0", + "@veramo/key-manager": "^5.0.0", + "@veramo/kms-local": "^5.0.0", + "@veramo/message-handler": "^5.0.0", + "@veramo/remote-client": "^5.0.0", + "@veramo/remote-server": "^5.0.0", + "@veramo/selective-disclosure": "^5.0.0", + "@veramo/url-handler": "^5.0.0", + "@veramo/utils": "^5.0.0", "blessed": "^0.1.81", "commander": "^9.0.0", "console-table-printer": "^2.10.0", diff --git a/packages/core-types/CHANGELOG.md b/packages/core-types/CHANGELOG.md index 3788bae31..a3501ac85 100644 --- a/packages/core-types/CHANGELOG.md +++ b/packages/core-types/CHANGELOG.md @@ -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. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) diff --git a/packages/core-types/package.json b/packages/core-types/package.json index ebb5141c8..043b0d72c 100644 --- a/packages/core-types/package.json +++ b/packages/core-types/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/core-types", "description": "Veramo Core Logic & Interfaces.", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": { ".": "./build/index.js", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 3788bae31..8d2d0c3ef 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) diff --git a/packages/core/package.json b/packages/core/package.json index 6e47912c2..4db47412d 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/core", "description": "Veramo Core Logic & Interfaces.", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": { ".": "./build/index.js", @@ -13,7 +13,7 @@ "extract-api": "node ../cli/bin/veramo.js dev extract-api" }, "dependencies": { - "@veramo/core-types": "^4.3.0", + "@veramo/core-types": "^5.0.0", "events": "^3.2.0", "z-schema": "^5.0.5" }, diff --git a/packages/credential-eip712/CHANGELOG.md b/packages/credential-eip712/CHANGELOG.md index 4100b015a..af437dd5c 100644 --- a/packages/credential-eip712/CHANGELOG.md +++ b/packages/credential-eip712/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/credential-eip712 diff --git a/packages/credential-eip712/package.json b/packages/credential-eip712/package.json index 19b057ace..242bf6dc6 100644 --- a/packages/credential-eip712/package.json +++ b/packages/credential-eip712/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/credential-eip712", "description": "Veramo plugin for working with EIP712 Verifiable Credentials & Presentations.", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": { ".": "./build/index.js", @@ -19,8 +19,8 @@ }, "dependencies": { "@metamask/eth-sig-util": "^5.0.0", - "@veramo/core-types": "^4.3.0", - "@veramo/utils": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/utils": "^5.0.0", "debug": "^4.3.3", "eip-712-types-generation": "^0.1.6" }, diff --git a/packages/credential-ld/CHANGELOG.md b/packages/credential-ld/CHANGELOG.md index 992cd4db0..9e60cba3a 100644 --- a/packages/credential-ld/CHANGELOG.md +++ b/packages/credential-ld/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) diff --git a/packages/credential-ld/package.json b/packages/credential-ld/package.json index 9ee3bb0f3..aaa8a969e 100644 --- a/packages/credential-ld/package.json +++ b/packages/credential-ld/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/credential-ld", "description": "Veramo plugin for working with W3C JSON-LD Verifiable Credentials & Presentations.", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": { ".": "./build/index.js", @@ -27,8 +27,8 @@ "@transmute/ed25519-signature-2018": "^0.7.0-unstable.79", "@transmute/json-web-signature": "^0.7.0-unstable.79", "@veramo-community/lds-ecdsa-secp256k1-recovery2020": "uport-project/EcdsaSecp256k1RecoverySignature2020", - "@veramo/core-types": "^4.3.0", - "@veramo/utils": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/utils": "^5.0.0", "cross-fetch": "^3.1.5", "debug": "^4.3.3", "did-resolver": "^4.0.1", diff --git a/packages/credential-status/CHANGELOG.md b/packages/credential-status/CHANGELOG.md index 4491b246a..954ddae2d 100644 --- a/packages/credential-status/CHANGELOG.md +++ b/packages/credential-status/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/credential-status diff --git a/packages/credential-status/package.json b/packages/credential-status/package.json index 5d43892d7..52c661713 100644 --- a/packages/credential-status/package.json +++ b/packages/credential-status/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/credential-status", "description": "Veramo plugin for resolving a credential status", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -10,8 +10,8 @@ "extract-api": "node ../cli/bin/veramo.js dev extract-api" }, "dependencies": { - "@veramo/core-types": "^4.3.0", - "@veramo/utils": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/utils": "^5.0.0", "credential-status": "^2.0.5", "did-jwt": "^6.9.0", "did-resolver": "^4.0.1" diff --git a/packages/credential-w3c/CHANGELOG.md b/packages/credential-w3c/CHANGELOG.md index 1ee89eab7..1b128fc28 100644 --- a/packages/credential-w3c/CHANGELOG.md +++ b/packages/credential-w3c/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/credential-w3c diff --git a/packages/credential-w3c/package.json b/packages/credential-w3c/package.json index eb70dfae6..3e19c71c6 100644 --- a/packages/credential-w3c/package.json +++ b/packages/credential-w3c/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/credential-w3c", "description": "Veramo plugin for working with W3C Verifiable Credentials & Presentations.", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": { ".": "./build/index.js", @@ -13,9 +13,9 @@ "extract-api": "node ../cli/bin/veramo.js dev extract-api" }, "dependencies": { - "@veramo/core-types": "^4.3.0", - "@veramo/message-handler": "^4.3.0", - "@veramo/utils": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/message-handler": "^5.0.0", + "@veramo/utils": "^5.0.0", "canonicalize": "^1.0.8", "debug": "^4.3.3", "did-jwt": "^6.11.0", @@ -25,7 +25,7 @@ "uuid": "^9.0.0" }, "optionalDependencies": { - "@veramo/credential-ld": "^4.3.0" + "@veramo/credential-ld": "^5.0.0" }, "devDependencies": { "@types/debug": "4.1.7", diff --git a/packages/data-store-json/CHANGELOG.md b/packages/data-store-json/CHANGELOG.md index 2dcdcf1ad..952863bbf 100644 --- a/packages/data-store-json/CHANGELOG.md +++ b/packages/data-store-json/CHANGELOG.md @@ -3,6 +3,46 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Bug Fixes + +* **did-manager:** rename AbstractDIDStore methods for SES compatibility ([0287340](https://github.com/uport-project/veramo/commit/02873401508a8a7d8c999bc12dc1d107a4a5202f)), closes [#1090](https://github.com/uport-project/veramo/issues/1090) +* **key-manager:** rename Abstract[Private]KeyStore methods for SES compatibility ([91631b6](https://github.com/uport-project/veramo/commit/91631b6d2a09d46accff6509f44792d88209b801)), closes [#1090](https://github.com/uport-project/veramo/issues/1090) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* **did-manager:** implementations of AbstractDIDStore need to rename their methods to conform to the new API. Functionality remains the same. +* **key-manager:** implementations of AbstractKeyStore and AbstractPrivateKeyStore need to rename their methods to conform to the new API. Functionality remains the same. +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/data-store-json diff --git a/packages/data-store-json/package.json b/packages/data-store-json/package.json index 1864f13d9..cd4488281 100644 --- a/packages/data-store-json/package.json +++ b/packages/data-store-json/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/data-store-json", "description": "Veramo data storage based on a JSON tree", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -11,10 +11,10 @@ }, "dependencies": { "@ungap/structured-clone": "^1.0.0", - "@veramo/core-types": "^4.3.0", - "@veramo/did-manager": "^4.3.0", - "@veramo/key-manager": "^4.3.0", - "@veramo/utils": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/did-manager": "^5.0.0", + "@veramo/key-manager": "^5.0.0", + "@veramo/utils": "^5.0.0", "debug": "^4.3.3", "did-jwt-vc": "^3.1.0", "uuid": "^9.0.0" diff --git a/packages/data-store/CHANGELOG.md b/packages/data-store/CHANGELOG.md index 7090eb23e..96e4da7fa 100644 --- a/packages/data-store/CHANGELOG.md +++ b/packages/data-store/CHANGELOG.md @@ -3,6 +3,46 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Bug Fixes + +* **did-manager:** rename AbstractDIDStore methods for SES compatibility ([0287340](https://github.com/uport-project/veramo/commit/02873401508a8a7d8c999bc12dc1d107a4a5202f)), closes [#1090](https://github.com/uport-project/veramo/issues/1090) +* **key-manager:** rename Abstract[Private]KeyStore methods for SES compatibility ([91631b6](https://github.com/uport-project/veramo/commit/91631b6d2a09d46accff6509f44792d88209b801)), closes [#1090](https://github.com/uport-project/veramo/issues/1090) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* **did-manager:** implementations of AbstractDIDStore need to rename their methods to conform to the new API. Functionality remains the same. +* **key-manager:** implementations of AbstractKeyStore and AbstractPrivateKeyStore need to rename their methods to conform to the new API. Functionality remains the same. +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/data-store diff --git a/packages/data-store/package.json b/packages/data-store/package.json index 23b299e9b..0e007ed3a 100644 --- a/packages/data-store/package.json +++ b/packages/data-store/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/data-store", "description": "Veramo data storage plugin based on TypeORM database drivers", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "types": "build/index.d.ts", "scripts": { @@ -9,11 +9,11 @@ "extract-api": "node ../cli/bin/veramo.js dev extract-api" }, "dependencies": { - "@veramo/core-types": "^4.3.0", - "@veramo/did-discovery": "^4.3.0", - "@veramo/did-manager": "^4.3.0", - "@veramo/key-manager": "^4.3.0", - "@veramo/utils": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/did-discovery": "^5.0.0", + "@veramo/did-manager": "^5.0.0", + "@veramo/key-manager": "^5.0.0", + "@veramo/utils": "^5.0.0", "debug": "^4.3.3", "did-jwt-vc": "^3.1.0", "typeorm": "^0.3.10", diff --git a/packages/did-comm/CHANGELOG.md b/packages/did-comm/CHANGELOG.md index 4a97f7222..78b814ae6 100644 --- a/packages/did-comm/CHANGELOG.md +++ b/packages/did-comm/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) diff --git a/packages/did-comm/package.json b/packages/did-comm/package.json index a47dbdf9d..025c2843a 100644 --- a/packages/did-comm/package.json +++ b/packages/did-comm/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/did-comm", "description": "Veramo messaging plugin implementing DIDComm v2.", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": { ".": "./build/index.js", @@ -20,9 +20,9 @@ "dependencies": { "@ethersproject/signing-key": "^5.7.0", "@stablelib/ed25519": "^1.0.3", - "@veramo/core-types": "^4.3.0", - "@veramo/message-handler": "^4.3.0", - "@veramo/utils": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/message-handler": "^5.0.0", + "@veramo/utils": "^5.0.0", "cross-fetch": "^3.1.4", "debug": "^4.3.3", "did-jwt": "^6.9.0", diff --git a/packages/did-discovery/CHANGELOG.md b/packages/did-discovery/CHANGELOG.md index f0ce5ba49..ac7b4add4 100644 --- a/packages/did-discovery/CHANGELOG.md +++ b/packages/did-discovery/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/did-discovery diff --git a/packages/did-discovery/package.json b/packages/did-discovery/package.json index 26c471431..cd181fa25 100644 --- a/packages/did-discovery/package.json +++ b/packages/did-discovery/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/did-discovery", "description": "Veramo DID discovery plugin", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": { ".": "./build/index.js", @@ -18,7 +18,7 @@ } }, "dependencies": { - "@veramo/core-types": "^4.3.0", + "@veramo/core-types": "^5.0.0", "debug": "^4.3.3" }, "devDependencies": { diff --git a/packages/did-jwt/CHANGELOG.md b/packages/did-jwt/CHANGELOG.md index cb74c333f..8dd7c68ad 100644 --- a/packages/did-jwt/CHANGELOG.md +++ b/packages/did-jwt/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/did-jwt diff --git a/packages/did-jwt/package.json b/packages/did-jwt/package.json index ba377c612..e7363a935 100644 --- a/packages/did-jwt/package.json +++ b/packages/did-jwt/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/did-jwt", "description": "Veramo message validator plugin for decoding and verifying JWT payloads.", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -10,8 +10,8 @@ "extract-api": "node ../cli/bin/veramo.js dev extract-api" }, "dependencies": { - "@veramo/core-types": "^4.3.0", - "@veramo/message-handler": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/message-handler": "^5.0.0", "debug": "^4.3.3", "did-jwt": "^6.9.0", "did-resolver": "^4.0.1" diff --git a/packages/did-manager/CHANGELOG.md b/packages/did-manager/CHANGELOG.md index d2b2aa6da..dc86baf1e 100644 --- a/packages/did-manager/CHANGELOG.md +++ b/packages/did-manager/CHANGELOG.md @@ -3,6 +3,44 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Bug Fixes + +* **did-manager:** rename AbstractDIDStore methods for SES compatibility ([0287340](https://github.com/uport-project/veramo/commit/02873401508a8a7d8c999bc12dc1d107a4a5202f)), closes [#1090](https://github.com/uport-project/veramo/issues/1090) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* **did-manager:** implementations of AbstractDIDStore need to rename their methods to conform to the new API. Functionality remains the same. +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/did-manager diff --git a/packages/did-manager/package.json b/packages/did-manager/package.json index 31422db78..085818143 100644 --- a/packages/did-manager/package.json +++ b/packages/did-manager/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/did-manager", "description": "Veramo DID manager plugin", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -10,8 +10,8 @@ "extract-api": "node ../cli/bin/veramo.js dev extract-api" }, "dependencies": { - "@veramo/core-types": "^4.3.0", - "@veramo/did-discovery": "^4.3.0" + "@veramo/core-types": "^5.0.0", + "@veramo/did-discovery": "^5.0.0" }, "devDependencies": { "typescript": "4.9.4" diff --git a/packages/did-provider-ethr/CHANGELOG.md b/packages/did-provider-ethr/CHANGELOG.md index 924e9b902..9c5ed4210 100644 --- a/packages/did-provider-ethr/CHANGELOG.md +++ b/packages/did-provider-ethr/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/did-provider-ethr diff --git a/packages/did-provider-ethr/package.json b/packages/did-provider-ethr/package.json index 3b57956a9..cc50e1d4a 100644 --- a/packages/did-provider-ethr/package.json +++ b/packages/did-provider-ethr/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/did-provider-ethr", "description": "Veramo ethr-did based identity controller plugin.", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -19,8 +19,8 @@ "@ethersproject/providers": "^5.7.0", "@ethersproject/signing-key": "^5.7.0", "@ethersproject/transactions": "^5.7.0", - "@veramo/core-types": "^4.3.0", - "@veramo/did-manager": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/did-manager": "^5.0.0", "debug": "^4.3.3", "ethr-did": "^2.3.6" }, diff --git a/packages/did-provider-ion/CHANGELOG.md b/packages/did-provider-ion/CHANGELOG.md index 5a7dabe70..87036b41d 100644 --- a/packages/did-provider-ion/CHANGELOG.md +++ b/packages/did-provider-ion/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/did-provider-ion diff --git a/packages/did-provider-ion/package.json b/packages/did-provider-ion/package.json index 523f4d332..ed4e65f01 100644 --- a/packages/did-provider-ion/package.json +++ b/packages/did-provider-ion/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/did-provider-ion", "description": "Veramo ion-did based identity controller plugin.", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -18,10 +18,10 @@ "@stablelib/ed25519": "^1.0.3", "@stablelib/sha256": "^1.0.1", "@trust/keyto": "^1.0.1", - "@veramo/core-types": "^4.3.0", - "@veramo/did-manager": "^4.3.0", - "@veramo/key-manager": "^4.3.0", - "@veramo/kms-local": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/did-manager": "^5.0.0", + "@veramo/key-manager": "^5.0.0", + "@veramo/kms-local": "^5.0.0", "canonicalize": "^1.0.8", "cross-fetch": "^3.1.5", "debug": "^4.3.3", diff --git a/packages/did-provider-key/CHANGELOG.md b/packages/did-provider-key/CHANGELOG.md index 67d8f4f1b..a84627ef6 100644 --- a/packages/did-provider-key/CHANGELOG.md +++ b/packages/did-provider-key/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/did-provider-key diff --git a/packages/did-provider-key/package.json b/packages/did-provider-key/package.json index bb1d3a301..60cbab66b 100644 --- a/packages/did-provider-key/package.json +++ b/packages/did-provider-key/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/did-provider-key", "description": "Veramo plugin that can enable creation and control of did:key identifiers.", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -13,8 +13,8 @@ "@transmute/did-key-ed25519": "^0.3.0-unstable.10", "@transmute/did-key-secp256k1": "^0.3.0-unstable.10", "@transmute/did-key-x25519": "^0.3.0-unstable.10", - "@veramo/core-types": "^4.3.0", - "@veramo/did-manager": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/did-manager": "^5.0.0", "debug": "^4.3.3", "did-resolver": "^4.0.1", "multibase": "^4.0.6", diff --git a/packages/did-provider-pkh/CHANGELOG.md b/packages/did-provider-pkh/CHANGELOG.md index 84b1024f6..b52850636 100644 --- a/packages/did-provider-pkh/CHANGELOG.md +++ b/packages/did-provider-pkh/CHANGELOG.md @@ -3,6 +3,44 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Bug Fixes + +* **did-provider-pkh:** add missing caip dependency ([#1112](https://github.com/uport-project/veramo/issues/1112)) ([60bc5fd](https://github.com/uport-project/veramo/commit/60bc5fd6f654236c072f7943494b3e27bd045ce8)), closes [#1111](https://github.com/uport-project/veramo/issues/1111) +* **did-provider-pkh:** refactor and simplify did:pkh plugin ([#1113](https://github.com/uport-project/veramo/issues/1113)) ([42be48f](https://github.com/uport-project/veramo/commit/42be48ffe2251510f7bd5e10b43362e816655eb9)) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/did-provider-pkh diff --git a/packages/did-provider-pkh/package.json b/packages/did-provider-pkh/package.json index 7b96e121f..55a7d7421 100644 --- a/packages/did-provider-pkh/package.json +++ b/packages/did-provider-pkh/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/did-provider-pkh", "description": "Veramo plugin that can enable creation and control of did:pkh identifiers.", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -14,8 +14,8 @@ "@ethersproject/bignumber": "^5.7.0", "@ethersproject/signing-key": "^5.7.0", "@ethersproject/transactions": "^5.7.0", - "@veramo/core-types": "^4.3.0", - "@veramo/did-manager": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/did-manager": "^5.0.0", "caip": "^1.1.0", "debug": "^4.3.3", "did-resolver": "^4.0.1" diff --git a/packages/did-provider-web/CHANGELOG.md b/packages/did-provider-web/CHANGELOG.md index 383d13b49..8123d3f6e 100644 --- a/packages/did-provider-web/CHANGELOG.md +++ b/packages/did-provider-web/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/did-provider-web diff --git a/packages/did-provider-web/package.json b/packages/did-provider-web/package.json index c3bd77d4e..d8f9b90eb 100644 --- a/packages/did-provider-web/package.json +++ b/packages/did-provider-web/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/did-provider-web", "description": "Veramo plugin that can enable creation and control of did:web identifiers.", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -10,8 +10,8 @@ "extract-api": "node ../cli/bin/veramo.js dev extract-api" }, "dependencies": { - "@veramo/core-types": "^4.3.0", - "@veramo/did-manager": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/did-manager": "^5.0.0", "debug": "^4.3.3" }, "devDependencies": { diff --git a/packages/did-resolver/CHANGELOG.md b/packages/did-resolver/CHANGELOG.md index c3bb4a5a6..34062ec27 100644 --- a/packages/did-resolver/CHANGELOG.md +++ b/packages/did-resolver/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/did-resolver diff --git a/packages/did-resolver/package.json b/packages/did-resolver/package.json index a6d6dd46e..b1fc0d785 100644 --- a/packages/did-resolver/package.json +++ b/packages/did-resolver/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/did-resolver", "description": "A DID resolver plugin for Veramo", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -10,8 +10,8 @@ "extract-api": "node ../cli/bin/veramo.js dev extract-api" }, "dependencies": { - "@veramo/core-types": "^4.3.0", - "@veramo/utils": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/utils": "^5.0.0", "cross-fetch": "^3.1.4", "debug": "^4.3.3", "did-resolver": "^4.0.1" diff --git a/packages/key-manager/CHANGELOG.md b/packages/key-manager/CHANGELOG.md index 2b7ec0c11..eafb7c48b 100644 --- a/packages/key-manager/CHANGELOG.md +++ b/packages/key-manager/CHANGELOG.md @@ -3,6 +3,44 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Bug Fixes + +* **key-manager:** rename Abstract[Private]KeyStore methods for SES compatibility ([91631b6](https://github.com/uport-project/veramo/commit/91631b6d2a09d46accff6509f44792d88209b801)), closes [#1090](https://github.com/uport-project/veramo/issues/1090) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* **key-manager:** implementations of AbstractKeyStore and AbstractPrivateKeyStore need to rename their methods to conform to the new API. Functionality remains the same. +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/key-manager diff --git a/packages/key-manager/package.json b/packages/key-manager/package.json index 50935ba06..1f71147f6 100644 --- a/packages/key-manager/package.json +++ b/packages/key-manager/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/key-manager", "description": "Key Manager plugin for Veramo", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -14,7 +14,7 @@ "@ethersproject/strings": "^5.7.0", "@ethersproject/transactions": "^5.7.0", "@stablelib/ed25519": "^1.0.3", - "@veramo/core-types": "^4.3.0", + "@veramo/core-types": "^5.0.0", "debug": "^4.3.4", "did-jwt": "^6.9.0", "uint8arrays": "^3.0.0", diff --git a/packages/kms-local/CHANGELOG.md b/packages/kms-local/CHANGELOG.md index ea767d160..e61cd7846 100644 --- a/packages/kms-local/CHANGELOG.md +++ b/packages/kms-local/CHANGELOG.md @@ -3,6 +3,44 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Bug Fixes + +* **key-manager:** rename Abstract[Private]KeyStore methods for SES compatibility ([91631b6](https://github.com/uport-project/veramo/commit/91631b6d2a09d46accff6509f44792d88209b801)), closes [#1090](https://github.com/uport-project/veramo/issues/1090) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* **key-manager:** implementations of AbstractKeyStore and AbstractPrivateKeyStore need to rename their methods to conform to the new API. Functionality remains the same. +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/kms-local diff --git a/packages/kms-local/package.json b/packages/kms-local/package.json index 627111e19..23329e067 100644 --- a/packages/kms-local/package.json +++ b/packages/kms-local/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/kms-local", "description": "Veramo KMS implementation that provides Ed25519 and secp256k1 crypto", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -21,8 +21,8 @@ "@stablelib/nacl": "^1.0.4", "@stablelib/random": "^1.0.2", "@stablelib/x25519": "^1.0.3", - "@veramo/core-types": "^4.3.0", - "@veramo/key-manager": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/key-manager": "^5.0.0", "base-58": "^0.0.1", "debug": "^4.3.3", "did-jwt": "^6.9.0", diff --git a/packages/kms-web3/CHANGELOG.md b/packages/kms-web3/CHANGELOG.md index 5aa6319ae..21a4d5835 100644 --- a/packages/kms-web3/CHANGELOG.md +++ b/packages/kms-web3/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/kms-web3 diff --git a/packages/kms-web3/package.json b/packages/kms-web3/package.json index 057322670..c7d2799d9 100644 --- a/packages/kms-web3/package.json +++ b/packages/kms-web3/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/kms-web3", "description": "Veramo KMS implementation backed by web3 wallets", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -13,8 +13,8 @@ "@ethersproject/providers": "^5.7.0", "@ethersproject/strings": "^5.7.0", "@ethersproject/transactions": "^5.7.0", - "@veramo/core-types": "^4.3.0", - "@veramo/key-manager": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/key-manager": "^5.0.0", "debug": "^4.3.3" }, "devDependencies": { diff --git a/packages/message-handler/CHANGELOG.md b/packages/message-handler/CHANGELOG.md index b305414a1..1d3c1cfed 100644 --- a/packages/message-handler/CHANGELOG.md +++ b/packages/message-handler/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) diff --git a/packages/message-handler/package.json b/packages/message-handler/package.json index 930a852ef..0365b1c8c 100644 --- a/packages/message-handler/package.json +++ b/packages/message-handler/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/message-handler", "description": "Message Handler plugin for Veramo", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -10,7 +10,7 @@ "extract-api": "node ../cli/bin/veramo.js dev extract-api" }, "dependencies": { - "@veramo/core-types": "^4.3.0", + "@veramo/core-types": "^5.0.0", "debug": "^4.3.4" }, "devDependencies": { diff --git a/packages/remote-client/CHANGELOG.md b/packages/remote-client/CHANGELOG.md index 73e3cf4e1..cccc9095d 100644 --- a/packages/remote-client/CHANGELOG.md +++ b/packages/remote-client/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/remote-client diff --git a/packages/remote-client/package.json b/packages/remote-client/package.json index bc8a78187..98c83c644 100644 --- a/packages/remote-client/package.json +++ b/packages/remote-client/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/remote-client", "description": "A remote client plugin for Veramo", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -10,7 +10,7 @@ "extract-api": "node ../cli/bin/veramo.js dev extract-api" }, "dependencies": { - "@veramo/core-types": "^4.3.0", + "@veramo/core-types": "^5.0.0", "cross-fetch": "^3.1.4", "debug": "^4.3.3", "openapi-types": "12.1.0" diff --git a/packages/remote-server/CHANGELOG.md b/packages/remote-server/CHANGELOG.md index 71518b0a8..c4a8c51cd 100644 --- a/packages/remote-server/CHANGELOG.md +++ b/packages/remote-server/CHANGELOG.md @@ -3,6 +3,39 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* increase request limit for express routers ([#1118](https://github.com/uport-project/veramo/issues/1118)) ([2db3149](https://github.com/uport-project/veramo/commit/2db314930e883fc599d5b670088e7be6475346a2)), closes [#1117](https://github.com/uport-project/veramo/issues/1117) +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/remote-server diff --git a/packages/remote-server/package.json b/packages/remote-server/package.json index e6e236702..3b9fa7c64 100644 --- a/packages/remote-server/package.json +++ b/packages/remote-server/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/remote-server", "description": "Express.js module that can expose some agent methods and messaging endpoints", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -10,8 +10,8 @@ "extract-api": "node ../cli/bin/veramo.js dev extract-api" }, "dependencies": { - "@veramo/core-types": "^4.3.0", - "@veramo/remote-client": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/remote-client": "^5.0.0", "debug": "^4.3.3", "did-resolver": "^4.0.1", "express": "^4.18.2", diff --git a/packages/selective-disclosure/CHANGELOG.md b/packages/selective-disclosure/CHANGELOG.md index 51a13ccff..767f01001 100644 --- a/packages/selective-disclosure/CHANGELOG.md +++ b/packages/selective-disclosure/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/selective-disclosure diff --git a/packages/selective-disclosure/package.json b/packages/selective-disclosure/package.json index 004173158..9a7ae8c53 100644 --- a/packages/selective-disclosure/package.json +++ b/packages/selective-disclosure/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/selective-disclosure", "description": "Veramo plugin to enable the uPort selective disclosure protocol with W3C compatibility.", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": { ".": "./build/index.js", @@ -18,9 +18,9 @@ } }, "dependencies": { - "@veramo/core-types": "^4.3.0", - "@veramo/message-handler": "^4.3.0", - "@veramo/utils": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/message-handler": "^5.0.0", + "@veramo/utils": "^5.0.0", "debug": "^4.3.3", "did-jwt": "^6.9.0", "uuid": "^9.0.0" diff --git a/packages/test-react-app/CHANGELOG.md b/packages/test-react-app/CHANGELOG.md index 52dbe9638..439596828 100644 --- a/packages/test-react-app/CHANGELOG.md +++ b/packages/test-react-app/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/test-react-app diff --git a/packages/test-react-app/package.json b/packages/test-react-app/package.json index c59d2ee5c..aad90617a 100644 --- a/packages/test-react-app/package.json +++ b/packages/test-react-app/package.json @@ -1,31 +1,31 @@ { "name": "@veramo/test-react-app", "description": "This package is only meant for testing that veramo core dependencies function in a react environment.", - "version": "4.3.0", + "version": "5.0.0", "private": true, "dependencies": { - "@veramo/core": "^4.3.0", - "@veramo/core-types": "^4.3.0", - "@veramo/credential-ld": "^4.3.0", - "@veramo/credential-w3c": "^4.3.0", - "@veramo/data-store": "^4.3.0", - "@veramo/data-store-json": "^4.3.0", - "@veramo/did-comm": "^4.3.0", - "@veramo/did-jwt": "^4.3.0", - "@veramo/did-manager": "^4.3.0", - "@veramo/did-provider-ethr": "^4.3.0", - "@veramo/did-provider-key": "^4.3.0", - "@veramo/did-provider-pkh": "^4.3.0", - "@veramo/did-provider-web": "^4.3.0", - "@veramo/did-resolver": "^4.3.0", - "@veramo/key-manager": "^4.3.0", - "@veramo/kms-local": "^4.3.0", - "@veramo/kms-web3": "^4.3.0", - "@veramo/message-handler": "^4.3.0", - "@veramo/selective-disclosure": "^4.3.0", - "@veramo/test-utils": "^4.3.0", - "@veramo/url-handler": "^4.3.0", - "@veramo/utils": "^4.3.0", + "@veramo/core": "^5.0.0", + "@veramo/core-types": "^5.0.0", + "@veramo/credential-ld": "^5.0.0", + "@veramo/credential-w3c": "^5.0.0", + "@veramo/data-store": "^5.0.0", + "@veramo/data-store-json": "^5.0.0", + "@veramo/did-comm": "^5.0.0", + "@veramo/did-jwt": "^5.0.0", + "@veramo/did-manager": "^5.0.0", + "@veramo/did-provider-ethr": "^5.0.0", + "@veramo/did-provider-key": "^5.0.0", + "@veramo/did-provider-pkh": "^5.0.0", + "@veramo/did-provider-web": "^5.0.0", + "@veramo/did-resolver": "^5.0.0", + "@veramo/key-manager": "^5.0.0", + "@veramo/kms-local": "^5.0.0", + "@veramo/kms-web3": "^5.0.0", + "@veramo/message-handler": "^5.0.0", + "@veramo/selective-disclosure": "^5.0.0", + "@veramo/test-utils": "^5.0.0", + "@veramo/url-handler": "^5.0.0", + "@veramo/utils": "^5.0.0", "buffer": "npm:buffer", "crypto": "npm:crypto-browserify", "did-resolver": "^4.0.1", diff --git a/packages/test-utils/CHANGELOG.md b/packages/test-utils/CHANGELOG.md index a681bf87b..034de93f6 100644 --- a/packages/test-utils/CHANGELOG.md +++ b/packages/test-utils/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/test-utils diff --git a/packages/test-utils/package.json b/packages/test-utils/package.json index 012a51af8..4da8547f4 100644 --- a/packages/test-utils/package.json +++ b/packages/test-utils/package.json @@ -2,7 +2,7 @@ "name": "@veramo/test-utils", "private": true, "description": "Helper methods for Veramo integration tests. This package is not meant to be used in production.", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -10,10 +10,10 @@ "build": "tsc" }, "dependencies": { - "@veramo/core-types": "^4.3.0", - "@veramo/did-discovery": "^4.3.0", - "@veramo/did-manager": "^4.3.0", - "@veramo/utils": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/did-discovery": "^5.0.0", + "@veramo/did-manager": "^5.0.0", + "@veramo/utils": "^5.0.0", "did-resolver": "^4.0.1" }, "devDependencies": { diff --git a/packages/url-handler/CHANGELOG.md b/packages/url-handler/CHANGELOG.md index 0df2cbbe9..1a81674a7 100644 --- a/packages/url-handler/CHANGELOG.md +++ b/packages/url-handler/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) **Note:** Version bump only for package @veramo/url-handler diff --git a/packages/url-handler/package.json b/packages/url-handler/package.json index 90a9e4222..90a29d36e 100644 --- a/packages/url-handler/package.json +++ b/packages/url-handler/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/url-handler", "description": "Veramo message handler plugin to decode URL messages.", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -10,8 +10,8 @@ "extract-api": "node ../cli/bin/veramo.js dev extract-api" }, "dependencies": { - "@veramo/core-types": "^4.3.0", - "@veramo/message-handler": "^4.3.0", + "@veramo/core-types": "^5.0.0", + "@veramo/message-handler": "^5.0.0", "cross-fetch": "^3.1.4", "debug": "^4.3.3", "url-parse": "^1.5.4" diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 1c131d7b3..920fa36dc 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0](https://github.com/uport-project/veramo/compare/v4.3.0...v5.0.0) (2023-02-09) + + +### Build System + +* convert veramo modules to ESM instead of CommonJS ([#1103](https://github.com/uport-project/veramo/issues/1103)) ([b5cea3c](https://github.com/uport-project/veramo/commit/b5cea3c0d80d900a47bd1d9eea68f84b70a35e7b)), closes [#1099](https://github.com/uport-project/veramo/issues/1099) + + +### Features + +* isolate `core-types` package from `core` ([#1116](https://github.com/uport-project/veramo/issues/1116)) ([ba7a303](https://github.com/uport-project/veramo/commit/ba7a303de91cf4cc568a3af1ddf8ca98ed022e9f)) + + +### BREAKING CHANGES + +* this is a breaking change as modules will have to be imported differently: +* https://www.typescriptlang.org/docs/handbook/esm-node.html +* https://nodejs.org/api/esm.html +* https://caniuse.com/?search=modules + +test(did-provider-ion): skip a couple of tests that fail with unreasonable errors +chore: use ubuntu-latest on CI +fix: temporarily remove puppeteer tests +fix: use craco for test-react-app to enable babel config +test: fix unit and integration tests (browser tests still broken) +fix: fix some build issues that prevented tests from working +fix: missing deps flagged by pnpm + + + + + # [4.3.0](https://github.com/uport-project/veramo/compare/v4.2.0...v4.3.0) (2023-01-27) diff --git a/packages/utils/package.json b/packages/utils/package.json index 43bd6113b..f928f4bc0 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,7 +1,7 @@ { "name": "@veramo/utils", "description": "Helper methods for Veramo plugins", - "version": "4.3.0", + "version": "5.0.0", "main": "build/index.js", "exports": "./build/index.js", "types": "build/index.d.ts", @@ -13,7 +13,7 @@ "@ethersproject/signing-key": "^5.7.0", "@ethersproject/transactions": "^5.7.0", "@stablelib/ed25519": "^1.0.3", - "@veramo/core-types": "^4.3.0", + "@veramo/core-types": "^5.0.0", "blakejs": "^1.1.1", "credential-status": "^2.0.5", "cross-fetch": "^3.1.5", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f9fef2c36..36bd7c983 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -116,28 +116,28 @@ importers: '@types/swagger-ui-express': ^4.1.3 '@types/url-parse': 1.4.8 '@types/ws': 8.5.4 - '@veramo/core': ^4.3.0 - '@veramo/core-types': ^4.3.0 - '@veramo/credential-eip712': ^4.3.0 - '@veramo/credential-ld': ^4.3.0 - '@veramo/credential-w3c': ^4.3.0 - '@veramo/data-store': ^4.3.0 - '@veramo/did-comm': ^4.3.0 - '@veramo/did-discovery': ^4.3.0 - '@veramo/did-jwt': ^4.3.0 - '@veramo/did-manager': ^4.3.0 - '@veramo/did-provider-ethr': ^4.3.0 - '@veramo/did-provider-key': ^4.3.0 - '@veramo/did-provider-web': ^4.3.0 - '@veramo/did-resolver': ^4.3.0 - '@veramo/key-manager': ^4.3.0 - '@veramo/kms-local': ^4.3.0 - '@veramo/message-handler': ^4.3.0 - '@veramo/remote-client': ^4.3.0 - '@veramo/remote-server': ^4.3.0 - '@veramo/selective-disclosure': ^4.3.0 - '@veramo/url-handler': ^4.3.0 - '@veramo/utils': ^4.3.0 + '@veramo/core': ^5.0.0 + '@veramo/core-types': ^5.0.0 + '@veramo/credential-eip712': ^5.0.0 + '@veramo/credential-ld': ^5.0.0 + '@veramo/credential-w3c': ^5.0.0 + '@veramo/data-store': ^5.0.0 + '@veramo/did-comm': ^5.0.0 + '@veramo/did-discovery': ^5.0.0 + '@veramo/did-jwt': ^5.0.0 + '@veramo/did-manager': ^5.0.0 + '@veramo/did-provider-ethr': ^5.0.0 + '@veramo/did-provider-key': ^5.0.0 + '@veramo/did-provider-web': ^5.0.0 + '@veramo/did-resolver': ^5.0.0 + '@veramo/key-manager': ^5.0.0 + '@veramo/kms-local': ^5.0.0 + '@veramo/message-handler': ^5.0.0 + '@veramo/remote-client': ^5.0.0 + '@veramo/remote-server': ^5.0.0 + '@veramo/selective-disclosure': ^5.0.0 + '@veramo/url-handler': ^5.0.0 + '@veramo/utils': ^5.0.0 blessed: ^0.1.81 commander: ^9.0.0 console-table-printer: ^2.10.0 @@ -246,7 +246,7 @@ importers: packages/core: specifiers: '@types/debug': 4.1.7 - '@veramo/core-types': ^4.3.0 + '@veramo/core-types': ^5.0.0 events: ^3.2.0 typescript: 4.9.4 z-schema: ^5.0.5 @@ -279,8 +279,8 @@ importers: specifiers: '@metamask/eth-sig-util': ^5.0.0 '@types/debug': 4.1.7 - '@veramo/core-types': ^4.3.0 - '@veramo/utils': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/utils': ^5.0.0 debug: ^4.3.3 eip-712-types-generation: ^0.1.6 typescript: 4.9.4 @@ -306,8 +306,8 @@ importers: '@transmute/json-web-signature': ^0.7.0-unstable.79 '@types/debug': 4.1.7 '@veramo-community/lds-ecdsa-secp256k1-recovery2020': uport-project/EcdsaSecp256k1RecoverySignature2020 - '@veramo/core-types': ^4.3.0 - '@veramo/utils': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/utils': ^5.0.0 borc: 3.0.0 cross-fetch: ^3.1.5 debug: ^4.3.3 @@ -338,8 +338,8 @@ importers: packages/credential-status: specifiers: '@types/debug': 4.1.7 - '@veramo/core-types': ^4.3.0 - '@veramo/utils': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/utils': ^5.0.0 credential-status: ^2.0.5 did-jwt: ^6.9.0 did-resolver: ^4.0.1 @@ -358,10 +358,10 @@ importers: specifiers: '@types/debug': 4.1.7 '@types/uuid': 9.0.0 - '@veramo/core-types': ^4.3.0 - '@veramo/credential-ld': ^4.3.0 - '@veramo/message-handler': ^4.3.0 - '@veramo/utils': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/credential-ld': ^5.0.0 + '@veramo/message-handler': ^5.0.0 + '@veramo/utils': ^5.0.0 canonicalize: ^1.0.8 debug: ^4.3.3 did-jwt: ^6.11.0 @@ -392,11 +392,11 @@ importers: specifiers: '@types/debug': 4.1.7 '@types/uuid': 9.0.0 - '@veramo/core-types': ^4.3.0 - '@veramo/did-discovery': ^4.3.0 - '@veramo/did-manager': ^4.3.0 - '@veramo/key-manager': ^4.3.0 - '@veramo/utils': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/did-discovery': ^5.0.0 + '@veramo/did-manager': ^5.0.0 + '@veramo/key-manager': ^5.0.0 + '@veramo/utils': ^5.0.0 debug: ^4.3.3 did-jwt-vc: ^3.1.0 sqlite3: 5.1.4 @@ -425,10 +425,10 @@ importers: '@types/ungap__structured-clone': 0.3.0 '@types/uuid': 9.0.0 '@ungap/structured-clone': ^1.0.0 - '@veramo/core-types': ^4.3.0 - '@veramo/did-manager': ^4.3.0 - '@veramo/key-manager': ^4.3.0 - '@veramo/utils': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/did-manager': ^5.0.0 + '@veramo/key-manager': ^5.0.0 + '@veramo/utils': ^5.0.0 debug: ^4.3.3 did-jwt-vc: ^3.1.0 typescript: 4.9.4 @@ -454,9 +454,9 @@ importers: '@stablelib/ed25519': ^1.0.3 '@types/debug': 4.1.7 '@types/uuid': 9.0.0 - '@veramo/core-types': ^4.3.0 - '@veramo/message-handler': ^4.3.0 - '@veramo/utils': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/message-handler': ^5.0.0 + '@veramo/utils': ^5.0.0 cross-fetch: ^3.1.4 debug: ^4.3.3 did-jwt: ^6.9.0 @@ -484,7 +484,7 @@ importers: packages/did-discovery: specifiers: '@types/debug': 4.1.7 - '@veramo/core-types': ^4.3.0 + '@veramo/core-types': ^5.0.0 debug: ^4.3.3 typescript: 4.9.4 dependencies: @@ -497,8 +497,8 @@ importers: packages/did-jwt: specifiers: '@types/debug': 4.1.7 - '@veramo/core-types': ^4.3.0 - '@veramo/message-handler': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/message-handler': ^5.0.0 debug: ^4.3.3 did-jwt: ^6.9.0 did-resolver: ^4.0.1 @@ -515,8 +515,8 @@ importers: packages/did-manager: specifiers: - '@veramo/core-types': ^4.3.0 - '@veramo/did-discovery': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/did-discovery': ^5.0.0 typescript: 4.9.4 dependencies: '@veramo/core-types': link:../core-types @@ -536,8 +536,8 @@ importers: '@ethersproject/signing-key': ^5.7.0 '@ethersproject/transactions': ^5.7.0 '@types/debug': 4.1.7 - '@veramo/core-types': ^4.3.0 - '@veramo/did-manager': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/did-manager': ^5.0.0 debug: ^4.3.3 ethr-did: ^2.3.6 typescript: 4.9.4 @@ -570,10 +570,10 @@ importers: '@stablelib/sha256': ^1.0.1 '@trust/keyto': ^1.0.1 '@types/debug': 4.1.7 - '@veramo/core-types': ^4.3.0 - '@veramo/did-manager': ^4.3.0 - '@veramo/key-manager': ^4.3.0 - '@veramo/kms-local': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/did-manager': ^5.0.0 + '@veramo/key-manager': ^5.0.0 + '@veramo/kms-local': ^5.0.0 canonicalize: ^1.0.8 cross-fetch: ^3.1.5 debug: ^4.3.3 @@ -610,8 +610,8 @@ importers: '@transmute/did-key-secp256k1': ^0.3.0-unstable.10 '@transmute/did-key-x25519': ^0.3.0-unstable.10 '@types/debug': 4.1.7 - '@veramo/core-types': ^4.3.0 - '@veramo/did-manager': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/did-manager': ^5.0.0 debug: ^4.3.3 did-resolver: ^4.0.1 multibase: ^4.0.6 @@ -638,8 +638,8 @@ importers: '@ethersproject/signing-key': ^5.7.0 '@ethersproject/transactions': ^5.7.0 '@types/debug': 4.1.7 - '@veramo/core-types': ^4.3.0 - '@veramo/did-manager': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/did-manager': ^5.0.0 caip: ^1.1.0 debug: ^4.3.3 did-resolver: ^4.0.1 @@ -661,8 +661,8 @@ importers: packages/did-provider-web: specifiers: '@types/debug': 4.1.7 - '@veramo/core-types': ^4.3.0 - '@veramo/did-manager': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/did-manager': ^5.0.0 debug: ^4.3.3 typescript: 4.9.4 dependencies: @@ -676,8 +676,8 @@ importers: packages/did-resolver: specifiers: '@types/debug': 4.1.7 - '@veramo/core-types': ^4.3.0 - '@veramo/utils': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/utils': ^5.0.0 cross-fetch: ^3.1.4 debug: ^4.3.3 did-resolver: ^4.0.1 @@ -705,7 +705,7 @@ importers: '@stablelib/ed25519': ^1.0.3 '@types/debug': 4.1.7 '@types/uuid': 9.0.0 - '@veramo/core-types': ^4.3.0 + '@veramo/core-types': ^5.0.0 debug: ^4.3.4 did-jwt: ^6.9.0 typescript: 4.9.4 @@ -742,8 +742,8 @@ importers: '@stablelib/x25519': ^1.0.3 '@types/debug': 4.1.7 '@types/elliptic': 6.4.14 - '@veramo/core-types': ^4.3.0 - '@veramo/key-manager': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/key-manager': ^5.0.0 base-58: ^0.0.1 debug: ^4.3.3 did-jwt: ^6.9.0 @@ -780,8 +780,8 @@ importers: '@ethersproject/strings': ^5.7.0 '@ethersproject/transactions': ^5.7.0 '@types/debug': 4.1.7 - '@veramo/core-types': ^4.3.0 - '@veramo/key-manager': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/key-manager': ^5.0.0 debug: ^4.3.3 typescript: 4.9.4 dependencies: @@ -798,7 +798,7 @@ importers: packages/message-handler: specifiers: '@types/debug': 4.1.7 - '@veramo/core-types': ^4.3.0 + '@veramo/core-types': ^5.0.0 debug: ^4.3.4 typescript: 4.9.4 dependencies: @@ -811,7 +811,7 @@ importers: packages/remote-client: specifiers: '@types/debug': 4.1.7 - '@veramo/core-types': ^4.3.0 + '@veramo/core-types': ^5.0.0 cross-fetch: ^3.1.4 debug: ^4.3.3 openapi-types: 12.1.0 @@ -832,8 +832,8 @@ importers: '@types/passport': 1.0.11 '@types/passport-http-bearer': 1.0.37 '@types/url-parse': 1.4.8 - '@veramo/core-types': ^4.3.0 - '@veramo/remote-client': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/remote-client': ^5.0.0 debug: ^4.3.3 did-resolver: ^4.0.1 express: ^4.18.2 @@ -862,9 +862,9 @@ importers: specifiers: '@types/debug': 4.1.7 '@types/uuid': 9.0.0 - '@veramo/core-types': ^4.3.0 - '@veramo/message-handler': ^4.3.0 - '@veramo/utils': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/message-handler': ^5.0.0 + '@veramo/utils': ^5.0.0 debug: ^4.3.3 did-jwt: ^6.9.0 typescript: 4.9.4 @@ -894,28 +894,28 @@ importers: '@types/node': 18.11.18 '@types/react': 18.0.27 '@types/react-dom': 18.0.10 - '@veramo/core': ^4.3.0 - '@veramo/core-types': ^4.3.0 - '@veramo/credential-ld': ^4.3.0 - '@veramo/credential-w3c': ^4.3.0 - '@veramo/data-store': ^4.3.0 - '@veramo/data-store-json': ^4.3.0 - '@veramo/did-comm': ^4.3.0 - '@veramo/did-jwt': ^4.3.0 - '@veramo/did-manager': ^4.3.0 - '@veramo/did-provider-ethr': ^4.3.0 - '@veramo/did-provider-key': ^4.3.0 - '@veramo/did-provider-pkh': ^4.3.0 - '@veramo/did-provider-web': ^4.3.0 - '@veramo/did-resolver': ^4.3.0 - '@veramo/key-manager': ^4.3.0 - '@veramo/kms-local': ^4.3.0 - '@veramo/kms-web3': ^4.3.0 - '@veramo/message-handler': ^4.3.0 - '@veramo/selective-disclosure': ^4.3.0 - '@veramo/test-utils': ^4.3.0 - '@veramo/url-handler': ^4.3.0 - '@veramo/utils': ^4.3.0 + '@veramo/core': ^5.0.0 + '@veramo/core-types': ^5.0.0 + '@veramo/credential-ld': ^5.0.0 + '@veramo/credential-w3c': ^5.0.0 + '@veramo/data-store': ^5.0.0 + '@veramo/data-store-json': ^5.0.0 + '@veramo/did-comm': ^5.0.0 + '@veramo/did-jwt': ^5.0.0 + '@veramo/did-manager': ^5.0.0 + '@veramo/did-provider-ethr': ^5.0.0 + '@veramo/did-provider-key': ^5.0.0 + '@veramo/did-provider-pkh': ^5.0.0 + '@veramo/did-provider-web': ^5.0.0 + '@veramo/did-resolver': ^5.0.0 + '@veramo/key-manager': ^5.0.0 + '@veramo/kms-local': ^5.0.0 + '@veramo/kms-web3': ^5.0.0 + '@veramo/message-handler': ^5.0.0 + '@veramo/selective-disclosure': ^5.0.0 + '@veramo/test-utils': ^5.0.0 + '@veramo/url-handler': ^5.0.0 + '@veramo/utils': ^5.0.0 buffer: npm:buffer cross-env: 7.0.3 crypto: npm:crypto-browserify @@ -1002,10 +1002,10 @@ importers: packages/test-utils: specifiers: - '@veramo/core-types': ^4.3.0 - '@veramo/did-discovery': ^4.3.0 - '@veramo/did-manager': ^4.3.0 - '@veramo/utils': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/did-discovery': ^5.0.0 + '@veramo/did-manager': ^5.0.0 + '@veramo/utils': ^5.0.0 did-resolver: ^4.0.1 typescript: 4.9.4 dependencies: @@ -1021,8 +1021,8 @@ importers: specifiers: '@types/debug': 4.1.7 '@types/url-parse': 1.4.8 - '@veramo/core-types': ^4.3.0 - '@veramo/message-handler': ^4.3.0 + '@veramo/core-types': ^5.0.0 + '@veramo/message-handler': ^5.0.0 cross-fetch: ^3.1.4 debug: ^4.3.3 jest-fetch-mock: 3.0.3 @@ -1048,7 +1048,7 @@ importers: '@types/debug': 4.1.7 '@types/elliptic': 6.4.14 '@types/uuid': 9.0.0 - '@veramo/core-types': ^4.3.0 + '@veramo/core-types': ^5.0.0 blakejs: ^1.1.1 credential-status: ^2.0.5 cross-fetch: ^3.1.5 @@ -18202,7 +18202,7 @@ packages: dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.3.1_zfha7dvnw4nti6zkbsmhmn6xo4 + jest: 29.3.1_@types+node@18.11.18 jest-util: 29.3.1 json5: 2.2.3 lodash.memoize: 4.1.2