From ec92d4de21b3390ff3a9370aa51d612598a935e4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 May 2022 11:51:42 -0700 Subject: [PATCH] 0.14.0 (#454) * 0.14.0 * Update changelogs Co-authored-by: github-actions Co-authored-by: Erik Marks --- package.json | 2 +- packages/cli/CHANGELOG.md | 8 +++++++- packages/cli/package.json | 6 +++--- packages/controllers/CHANGELOG.md | 8 +++++++- packages/controllers/package.json | 6 +++--- packages/examples/CHANGELOG.md | 7 ++++++- packages/examples/package.json | 4 ++-- packages/execution-environments/CHANGELOG.md | 8 +++++++- packages/execution-environments/package.json | 4 ++-- packages/plugin-browserify/CHANGELOG.md | 8 +++++++- packages/plugin-browserify/package.json | 4 ++-- packages/plugin-rollup/CHANGELOG.md | 8 +++++++- packages/plugin-rollup/package.json | 4 ++-- packages/plugin-webpack/CHANGELOG.md | 8 +++++++- packages/plugin-webpack/package.json | 4 ++-- packages/rpc-methods/CHANGELOG.md | 8 +++++++- packages/rpc-methods/package.json | 4 ++-- packages/types/CHANGELOG.md | 7 ++++++- packages/types/package.json | 2 +- packages/utils/CHANGELOG.md | 8 +++++++- packages/utils/package.json | 2 +- 21 files changed, 89 insertions(+), 31 deletions(-) diff --git a/package.json b/package.json index 5adb347040..6f7a440bdc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "root", - "version": "0.13.0", + "version": "0.14.0", "private": true, "repository": { "type": "git", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 11ac5a6d24..7f9683cec6 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.0] +### Changed +- **BREAKING:** Increase TypeScript compilation target to ES2020 ([#449](https://github.com/MetaMask/snaps-skunkworks/pull/449)) + - This should not be breaking for consumers on any non-deprecated browser or Node.js version. + ## [0.13.0] ### Changed - No changes this release. @@ -173,7 +178,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Example snaps ([#72](https://github.com/MetaMask/snaps-skunkworks/pull/72)) - The examples now live in their own package, [`@metamask/snap-examples`](https://npmjs.com/package/@metamask/snap-examples). -[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.14.0...HEAD +[0.14.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.1...v0.12.0 [0.11.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.0...v0.11.1 diff --git a/packages/cli/package.json b/packages/cli/package.json index 03dc2d1507..8f82937728 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/snaps-cli", - "version": "0.13.0", + "version": "0.14.0", "description": "A CLI for developing MetaMask Snaps.", "repository": { "type": "git", @@ -47,8 +47,8 @@ "@babel/plugin-transform-runtime": "^7.16.7", "@babel/preset-env": "^7.16.7", "@chainsafe/strip-comments": "^1.0.5", - "@metamask/snap-controllers": "^0.13.0", - "@metamask/snaps-browserify-plugin": "^0.13.0", + "@metamask/snap-controllers": "^0.14.0", + "@metamask/snaps-browserify-plugin": "^0.14.0", "babelify": "^10.0.0", "browserify": "^17.0.0", "chokidar": "^3.0.2", diff --git a/packages/controllers/CHANGELOG.md b/packages/controllers/CHANGELOG.md index d0c2fd78f3..3514bcb6f3 100644 --- a/packages/controllers/CHANGELOG.md +++ b/packages/controllers/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.0] +### Changed +- **BREAKING:** Increase TypeScript compilation target to ES2020 ([#449](https://github.com/MetaMask/snaps-skunkworks/pull/449)) + - This should not be breaking for consumers on any non-deprecated browser or Node.js version. + ## [0.13.0] ### Added - Add long-running endowment permission ([#386](https://github.com/MetaMask/snaps-skunkworks/pull/386)) @@ -265,7 +270,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - First semi-stable release. -[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.14.0...HEAD +[0.14.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.1...v0.12.0 [0.11.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.0...v0.11.1 diff --git a/packages/controllers/package.json b/packages/controllers/package.json index 23938d6c98..cadfabd5ea 100644 --- a/packages/controllers/package.json +++ b/packages/controllers/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/snap-controllers", - "version": "0.13.0", + "version": "0.14.0", "description": "Controllers for MetaMask Snaps.", "repository": { "type": "git", @@ -33,7 +33,7 @@ }, "dependencies": { "@metamask/controllers": "^29.0.1", - "@metamask/execution-environments": "^0.13.0", + "@metamask/execution-environments": "^0.14.0", "@metamask/object-multiplex": "^1.1.0", "@metamask/obs-store": "^7.0.0", "@metamask/post-message-stream": "4.0.0", @@ -58,7 +58,7 @@ "devDependencies": { "@jest-runner/electron": "^3.0.1", "@json-schema-tools/transpiler": "^1.10.2", - "@metamask/snap-types": "^0.13.0", + "@metamask/snap-types": "^0.14.0", "@metamask/template-snap": "^0.7.0", "@types/concat-stream": "^1.6.1", "@types/gunzip-maybe": "^1.4.0", diff --git a/packages/examples/CHANGELOG.md b/packages/examples/CHANGELOG.md index b1fae65dde..48e931a2af 100644 --- a/packages/examples/CHANGELOG.md +++ b/packages/examples/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.0] +### Changed +- No changes this release. + ## [0.13.0] ### Changed - No changes this release. @@ -120,7 +124,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - This package was previously a subset of [`snaps-cli`](https://github.com/MetaMask/snaps-cli/tree/main/examples), which has been renamed to [`@metamask/snaps-cli`](https://npmjs.com/package/@metamask/snaps-cli). - Some examples have been deleted because they were outdated. -[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.14.0...HEAD +[0.14.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.1...v0.12.0 [0.11.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.0...v0.11.1 diff --git a/packages/examples/package.json b/packages/examples/package.json index 472988f6a4..1734356240 100644 --- a/packages/examples/package.json +++ b/packages/examples/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/snap-examples", - "version": "0.13.0", + "version": "0.14.0", "description": "Example MetaMask Snaps.", "repository": { "type": "git", @@ -33,7 +33,7 @@ "@metamask/eslint-config-jest": "^8.0.0", "@metamask/eslint-config-nodejs": "^8.0.0", "@metamask/eslint-config-typescript": "^8.0.0", - "@metamask/snaps-cli": "^0.13.0", + "@metamask/snaps-cli": "^0.14.0", "@types/jest": "^26.0.13", "@typescript-eslint/eslint-plugin": "^5.19.0", "@typescript-eslint/parser": "^5.19.0", diff --git a/packages/execution-environments/CHANGELOG.md b/packages/execution-environments/CHANGELOG.md index 95d91feb49..f2a54945ca 100644 --- a/packages/execution-environments/CHANGELOG.md +++ b/packages/execution-environments/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.0] +### Changed +- **BREAKING:** Increase TypeScript compilation target to ES2020 ([#449](https://github.com/MetaMask/snaps-skunkworks/pull/449)) + - This should not be breaking for consumers on any non-deprecated browser or Node.js version. + ## [0.13.0] ### Changed - **BREAKING:** Change `execution-environment` build output ([#424](https://github.com/MetaMask/snaps-skunkworks/pull/424)) @@ -69,7 +74,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Previously, default endowments were specified in the execution environment itself. Now, all endowments must be specified in the `executeSnap` RPC parameters, except for the `wallet` API object. - Add endowments to the global `self` in addition to `window` ([#263](https://github.com/MetaMask/snaps-skunkworks/pull/263)) -[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.14.0...HEAD +[0.14.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.1...v0.12.0 [0.11.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.0...v0.11.1 diff --git a/packages/execution-environments/package.json b/packages/execution-environments/package.json index 77de5556ee..3005617207 100644 --- a/packages/execution-environments/package.json +++ b/packages/execution-environments/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/execution-environments", - "version": "0.13.0", + "version": "0.14.0", "description": "Snap sandbox environments for executing SES javascript", "repository": { "type": "git", @@ -37,7 +37,7 @@ "@metamask/object-multiplex": "^1.2.0", "@metamask/post-message-stream": "^4.0.0", "@metamask/providers": "^8.1.1", - "@metamask/snap-types": "^0.13.0", + "@metamask/snap-types": "^0.14.0", "eth-rpc-errors": "^4.0.3", "pump": "^3.0.0", "ses": "^0.15.15", diff --git a/packages/plugin-browserify/CHANGELOG.md b/packages/plugin-browserify/CHANGELOG.md index b88ddff0d4..e1a25b3e48 100644 --- a/packages/plugin-browserify/CHANGELOG.md +++ b/packages/plugin-browserify/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.0] +### Fixed +- Actually publish package contents ([#449](https://github.com/MetaMask/snaps-skunkworks/pull/449)) + - Package contents were omitted from the previous version due to a build failure. + ## [0.13.0] ### Changed - No changes this release. @@ -14,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release ([#410](https://github.com/MetaMask/snaps-skunkworks/pull/410), [#421](https://github.com/MetaMask/snaps-skunkworks/pull/421)) -[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.14.0...HEAD +[0.14.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/MetaMask/snaps-skunkworks/releases/tag/v0.12.0 diff --git a/packages/plugin-browserify/package.json b/packages/plugin-browserify/package.json index 363a66cc6f..d7c2329dfb 100644 --- a/packages/plugin-browserify/package.json +++ b/packages/plugin-browserify/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/snaps-browserify-plugin", - "version": "0.13.0", + "version": "0.14.0", "keywords": [ "browserify-plugin" ], @@ -30,7 +30,7 @@ "publish": "../../scripts/publish-package.sh" }, "dependencies": { - "@metamask/snap-utils": "^0.13.0" + "@metamask/snap-utils": "^0.14.0" }, "devDependencies": { "@types/browserify": "^12.0.37", diff --git a/packages/plugin-rollup/CHANGELOG.md b/packages/plugin-rollup/CHANGELOG.md index 38f38060d4..ed189b6352 100644 --- a/packages/plugin-rollup/CHANGELOG.md +++ b/packages/plugin-rollup/CHANGELOG.md @@ -6,9 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.0] +### Fixed +- Actually publish package contents ([#449](https://github.com/MetaMask/snaps-skunkworks/pull/449)) + - Package contents were omitted from the previous version due to a build failure. + ## [0.13.0] ### Added - Initial release ([#431](https://github.com/MetaMask/snaps-skunkworks/pull/431)) -[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.14.0...HEAD +[0.14.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/MetaMask/snaps-skunkworks/releases/tag/v0.13.0 diff --git a/packages/plugin-rollup/package.json b/packages/plugin-rollup/package.json index 42647fb9ed..044157e246 100644 --- a/packages/plugin-rollup/package.json +++ b/packages/plugin-rollup/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/rollup-plugin-snaps", - "version": "0.13.0", + "version": "0.14.0", "keywords": [ "rollup", "rollup-plugin" @@ -31,7 +31,7 @@ "publish": "../../scripts/publish-package.sh" }, "dependencies": { - "@metamask/snap-utils": "^0.13.0" + "@metamask/snap-utils": "^0.14.0" }, "devDependencies": { "@rollup/plugin-virtual": "^2.1.0", diff --git a/packages/plugin-webpack/CHANGELOG.md b/packages/plugin-webpack/CHANGELOG.md index 17c67b42f3..f19ec970ce 100644 --- a/packages/plugin-webpack/CHANGELOG.md +++ b/packages/plugin-webpack/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.0] +### Fixed +- Actually publish package contents ([#449](https://github.com/MetaMask/snaps-skunkworks/pull/449)) + - Package contents were omitted from the previous version due to a build failure. + ## [0.13.0] ### Changed - No changes this release. @@ -14,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release ([#420](https://github.com/MetaMask/snaps-skunkworks/pull/420)) -[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.14.0...HEAD +[0.14.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/MetaMask/snaps-skunkworks/releases/tag/v0.12.0 diff --git a/packages/plugin-webpack/package.json b/packages/plugin-webpack/package.json index b50c65a8b1..b020efebd5 100644 --- a/packages/plugin-webpack/package.json +++ b/packages/plugin-webpack/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/snaps-webpack-plugin", - "version": "0.13.0", + "version": "0.14.0", "keywords": [ "webpack", "plugin" @@ -31,7 +31,7 @@ "publish": "../../scripts/publish-package.sh" }, "dependencies": { - "@metamask/snap-utils": "^0.13.0", + "@metamask/snap-utils": "^0.14.0", "webpack-sources": "^3.2.3" }, "devDependencies": { diff --git a/packages/rpc-methods/CHANGELOG.md b/packages/rpc-methods/CHANGELOG.md index 82482cb7de..059d690fa6 100644 --- a/packages/rpc-methods/CHANGELOG.md +++ b/packages/rpc-methods/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.0] +### Changed +- **BREAKING:** Increase TypeScript compilation target to ES2020 ([#449](https://github.com/MetaMask/snaps-skunkworks/pull/449)) + - This should not be breaking for consumers on any non-deprecated browser or Node.js version. + ## [0.13.0] ### Added - **BREAKING:** Add in-app notifications ([#419](https://github.com/MetaMask/snaps-skunkworks/pull/419)) @@ -145,7 +150,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - First semi-stable release. -[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.14.0...HEAD +[0.14.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.1...v0.12.0 [0.11.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.0...v0.11.1 diff --git a/packages/rpc-methods/package.json b/packages/rpc-methods/package.json index d49ee6aaf5..3a7778700d 100644 --- a/packages/rpc-methods/package.json +++ b/packages/rpc-methods/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/rpc-methods", - "version": "0.13.0", + "version": "0.14.0", "description": "MetaMask Snap RPC method implementations.", "repository": { "type": "git", @@ -29,7 +29,7 @@ "dependencies": { "@metamask/controllers": "^29.0.1", "@metamask/key-tree": "^4.0.0", - "@metamask/snap-controllers": "^0.13.0", + "@metamask/snap-controllers": "^0.14.0", "@metamask/types": "^1.1.0", "eth-rpc-errors": "^4.0.2" }, diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 539dd64235..65782375f6 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.0] +### Changed +- No changes this release. + ## [0.13.0] ### Changed - No changes this release. @@ -121,7 +125,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release -[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.14.0...HEAD +[0.14.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.1...v0.12.0 [0.11.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.0...v0.11.1 diff --git a/packages/types/package.json b/packages/types/package.json index 5917e8f000..ee90e3b9d8 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/snap-types", - "version": "0.13.0", + "version": "0.14.0", "description": "Shared types for MetaMask Snaps packages.", "repository": { "type": "git", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index b88ddff0d4..54a23db75f 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.0] +### Changed +- **BREAKING:** Increase TypeScript compilation target to ES2020 ([#449](https://github.com/MetaMask/snaps-skunkworks/pull/449)) + - This should not be breaking for consumers on any non-deprecated browser or Node.js version. + ## [0.13.0] ### Changed - No changes this release. @@ -14,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release ([#410](https://github.com/MetaMask/snaps-skunkworks/pull/410), [#421](https://github.com/MetaMask/snaps-skunkworks/pull/421)) -[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.14.0...HEAD +[0.14.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/MetaMask/snaps-skunkworks/releases/tag/v0.12.0 diff --git a/packages/utils/package.json b/packages/utils/package.json index 0e417f4165..ce814826c7 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/snap-utils", - "version": "0.13.0", + "version": "0.14.0", "repository": { "type": "git", "url": "https://github.com/MetaMask/snaps-skunkworks.git"