From bb6b9efadb565af1c67125d3b771739696e18dcd Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 13 Dec 2022 11:31:57 +0000 Subject: [PATCH 1/3] 0.26.2 --- package.json | 2 +- packages/examples/CHANGELOG.md | 5 ++++- packages/examples/examples/bls-signer/package.json | 4 ++-- packages/examples/examples/browserify/package.json | 8 ++++---- packages/examples/examples/ethers-js/package.json | 4 ++-- packages/examples/examples/insights/package.json | 6 +++--- packages/examples/examples/ipfs/package.json | 4 ++-- packages/examples/examples/notifications/package.json | 4 ++-- packages/examples/examples/rollup/package.json | 8 ++++---- packages/examples/examples/typescript/package.json | 6 +++--- packages/examples/examples/wasm/package.json | 4 ++-- packages/examples/examples/webpack/package.json | 8 ++++---- packages/examples/package.json | 4 ++-- packages/multichain-provider/CHANGELOG.md | 5 ++++- packages/multichain-provider/package.json | 6 +++--- packages/rpc-methods/CHANGELOG.md | 5 ++++- packages/rpc-methods/package.json | 4 ++-- packages/snaps-browserify-plugin/CHANGELOG.md | 5 ++++- packages/snaps-browserify-plugin/package.json | 4 ++-- packages/snaps-cli/CHANGELOG.md | 5 ++++- packages/snaps-cli/package.json | 6 +++--- packages/snaps-controllers/CHANGELOG.md | 5 ++++- packages/snaps-controllers/package.json | 10 +++++----- packages/snaps-execution-environments/CHANGELOG.md | 7 ++++++- packages/snaps-execution-environments/package.json | 6 +++--- packages/snaps-rollup-plugin/CHANGELOG.md | 5 ++++- packages/snaps-rollup-plugin/package.json | 4 ++-- packages/snaps-types/CHANGELOG.md | 5 ++++- packages/snaps-types/package.json | 4 ++-- packages/snaps-ui/CHANGELOG.md | 5 ++++- packages/snaps-ui/package.json | 2 +- packages/snaps-utils/CHANGELOG.md | 5 ++++- packages/snaps-utils/package.json | 4 ++-- packages/snaps-webpack-plugin/CHANGELOG.md | 5 ++++- packages/snaps-webpack-plugin/package.json | 4 ++-- 35 files changed, 108 insertions(+), 70 deletions(-) diff --git a/package.json b/package.json index 323ee984ad..a8aa372432 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "root", - "version": "0.26.1", + "version": "0.26.2", "private": true, "repository": { "type": "git", diff --git a/packages/examples/CHANGELOG.md b/packages/examples/CHANGELOG.md index b8843115bc..e4d9444293 100644 --- a/packages/examples/CHANGELOG.md +++ b/packages/examples/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.26.2] + ## [0.26.1] ### Changed - No changes this release. @@ -212,7 +214,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-monorepo/compare/v0.26.1...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.2...HEAD +[0.26.2]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...v0.26.2 [0.26.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.0...v0.26.1 [0.26.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.25.0...v0.26.0 [0.25.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.24.1...v0.25.0 diff --git a/packages/examples/examples/bls-signer/package.json b/packages/examples/examples/bls-signer/package.json index a53b837916..5c6dab32b6 100644 --- a/packages/examples/examples/bls-signer/package.json +++ b/packages/examples/examples/bls-signer/package.json @@ -1,6 +1,6 @@ { "name": "bls-signer", - "version": "0.26.1", + "version": "0.26.2", "private": true, "description": "An example Snap that signs messages using BLS.", "repository": { @@ -28,7 +28,7 @@ "@metamask/eslint-config-jest": "^11.0.0", "@metamask/eslint-config-nodejs": "^11.0.1", "@metamask/eslint-config-typescript": "^11.0.0", - "@metamask/snaps-cli": "^0.26.1", + "@metamask/snaps-cli": "^0.26.2", "@typescript-eslint/eslint-plugin": "^5.42.1", "@typescript-eslint/parser": "^5.42.1", "eslint": "^8.27.0", diff --git a/packages/examples/examples/browserify/package.json b/packages/examples/examples/browserify/package.json index 88ebe297eb..f4d6056883 100644 --- a/packages/examples/examples/browserify/package.json +++ b/packages/examples/examples/browserify/package.json @@ -1,6 +1,6 @@ { "name": "browserify-snap", - "version": "0.26.1", + "version": "0.26.2", "private": true, "description": "An example Snap built using TypeScript and Browserify", "repository": { @@ -27,9 +27,9 @@ "@metamask/eslint-config-jest": "^11.0.0", "@metamask/eslint-config-nodejs": "^11.0.1", "@metamask/eslint-config-typescript": "^11.0.0", - "@metamask/snaps-browserify-plugin": "^0.26.1", - "@metamask/snaps-cli": "^0.26.1", - "@metamask/snaps-types": "^0.26.1", + "@metamask/snaps-browserify-plugin": "^0.26.2", + "@metamask/snaps-cli": "^0.26.2", + "@metamask/snaps-types": "^0.26.2", "@types/browserify": "^12.0.37", "@types/gulp": "^4.0.9", "@types/node": "^17.0.33", diff --git a/packages/examples/examples/ethers-js/package.json b/packages/examples/examples/ethers-js/package.json index f50c4e9ce9..1ab09d7826 100644 --- a/packages/examples/examples/ethers-js/package.json +++ b/packages/examples/examples/ethers-js/package.json @@ -1,6 +1,6 @@ { "name": "ethers-js-snap", - "version": "0.26.1", + "version": "0.26.2", "private": true, "description": "An example Snap that that uses ethers.js.", "repository": { @@ -27,7 +27,7 @@ "@metamask/eslint-config-jest": "^11.0.0", "@metamask/eslint-config-nodejs": "^11.0.1", "@metamask/eslint-config-typescript": "^11.0.0", - "@metamask/snaps-cli": "^0.26.1", + "@metamask/snaps-cli": "^0.26.2", "@typescript-eslint/eslint-plugin": "^5.42.1", "@typescript-eslint/parser": "^5.42.1", "eslint": "^8.27.0", diff --git a/packages/examples/examples/insights/package.json b/packages/examples/examples/insights/package.json index 31cdc3b7d0..40ac6b75e7 100644 --- a/packages/examples/examples/insights/package.json +++ b/packages/examples/examples/insights/package.json @@ -1,6 +1,6 @@ { "name": "transaction-insights-snap", - "version": "0.26.1", + "version": "0.26.2", "private": true, "description": "An example transaction insights Snap.", "repository": { @@ -36,8 +36,8 @@ "@metamask/eslint-config-jest": "^11.0.0", "@metamask/eslint-config-nodejs": "^11.0.1", "@metamask/eslint-config-typescript": "^11.0.0", - "@metamask/snaps-cli": "^0.26.1", - "@metamask/snaps-types": "^0.26.1", + "@metamask/snaps-cli": "^0.26.2", + "@metamask/snaps-types": "^0.26.2", "@typescript-eslint/eslint-plugin": "^5.42.1", "@typescript-eslint/parser": "^5.42.1", "eslint": "^8.27.0", diff --git a/packages/examples/examples/ipfs/package.json b/packages/examples/examples/ipfs/package.json index 6cb1a00bec..e95a1d1090 100644 --- a/packages/examples/examples/ipfs/package.json +++ b/packages/examples/examples/ipfs/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-snap", - "version": "0.26.1", + "version": "0.26.2", "private": true, "description": "An example Snap that performs IPFS operations.", "repository": { @@ -28,7 +28,7 @@ "@metamask/eslint-config-jest": "^11.0.0", "@metamask/eslint-config-nodejs": "^11.0.1", "@metamask/eslint-config-typescript": "^11.0.0", - "@metamask/snaps-cli": "^0.26.1", + "@metamask/snaps-cli": "^0.26.2", "@typescript-eslint/eslint-plugin": "^5.42.1", "@typescript-eslint/parser": "^5.42.1", "eslint": "^8.27.0", diff --git a/packages/examples/examples/notifications/package.json b/packages/examples/examples/notifications/package.json index d1c8dc1571..b0f8a10d97 100644 --- a/packages/examples/examples/notifications/package.json +++ b/packages/examples/examples/notifications/package.json @@ -1,6 +1,6 @@ { "name": "notification-snap", - "version": "0.26.1", + "version": "0.26.2", "private": true, "description": "The 'Hello, world!' of MetaMask Snaps.", "repository": { @@ -32,7 +32,7 @@ "@metamask/eslint-config-jest": "^11.0.0", "@metamask/eslint-config-nodejs": "^11.0.1", "@metamask/eslint-config-typescript": "^11.0.0", - "@metamask/snaps-cli": "^0.26.1", + "@metamask/snaps-cli": "^0.26.2", "@typescript-eslint/eslint-plugin": "^5.42.1", "@typescript-eslint/parser": "^5.42.1", "eslint": "^8.27.0", diff --git a/packages/examples/examples/rollup/package.json b/packages/examples/examples/rollup/package.json index 4e5f46b323..cc6d630075 100644 --- a/packages/examples/examples/rollup/package.json +++ b/packages/examples/examples/rollup/package.json @@ -1,6 +1,6 @@ { "name": "rollup-snap", - "version": "0.26.1", + "version": "0.26.2", "private": true, "description": "An example Snap built using TypeScript and Rollup", "repository": { @@ -27,9 +27,9 @@ "@metamask/eslint-config-jest": "^11.0.0", "@metamask/eslint-config-nodejs": "^11.0.1", "@metamask/eslint-config-typescript": "^11.0.0", - "@metamask/snaps-cli": "^0.26.1", - "@metamask/snaps-rollup-plugin": "^0.26.1", - "@metamask/snaps-types": "^0.26.1", + "@metamask/snaps-cli": "^0.26.2", + "@metamask/snaps-rollup-plugin": "^0.26.2", + "@metamask/snaps-types": "^0.26.2", "@rollup/plugin-babel": "^5.3.1", "@types/node": "^17.0.33", "@typescript-eslint/eslint-plugin": "^5.42.1", diff --git a/packages/examples/examples/typescript/package.json b/packages/examples/examples/typescript/package.json index adeef00503..faeff9eecb 100644 --- a/packages/examples/examples/typescript/package.json +++ b/packages/examples/examples/typescript/package.json @@ -1,6 +1,6 @@ { "name": "typescript-snap", - "version": "0.26.1", + "version": "0.26.2", "private": true, "description": "The 'Hello, world!' of MetaMask Snaps, now written in TypeScript.", "repository": { @@ -32,8 +32,8 @@ "@metamask/eslint-config-jest": "^11.0.0", "@metamask/eslint-config-nodejs": "^11.0.1", "@metamask/eslint-config-typescript": "^11.0.0", - "@metamask/snaps-cli": "^0.26.1", - "@metamask/snaps-types": "^0.26.1", + "@metamask/snaps-cli": "^0.26.2", + "@metamask/snaps-types": "^0.26.2", "@typescript-eslint/eslint-plugin": "^5.42.1", "@typescript-eslint/parser": "^5.42.1", "eslint": "^8.27.0", diff --git a/packages/examples/examples/wasm/package.json b/packages/examples/examples/wasm/package.json index 4b360cfef3..5647c4fe7e 100644 --- a/packages/examples/examples/wasm/package.json +++ b/packages/examples/examples/wasm/package.json @@ -1,6 +1,6 @@ { "name": "wasm", - "version": "0.26.1", + "version": "0.26.2", "private": true, "description": "An example Snap that uses WebAssembly.", "repository": { @@ -30,7 +30,7 @@ "@metamask/eslint-config-jest": "^11.0.0", "@metamask/eslint-config-nodejs": "^11.0.1", "@metamask/eslint-config-typescript": "^11.0.0", - "@metamask/snaps-cli": "^0.26.1", + "@metamask/snaps-cli": "^0.26.2", "@typescript-eslint/eslint-plugin": "^5.42.1", "@typescript-eslint/parser": "^5.42.1", "assemblyscript": "^0.19.23", diff --git a/packages/examples/examples/webpack/package.json b/packages/examples/examples/webpack/package.json index d287347f83..338bcbd3bf 100644 --- a/packages/examples/examples/webpack/package.json +++ b/packages/examples/examples/webpack/package.json @@ -1,6 +1,6 @@ { "name": "webpack-snap", - "version": "0.26.1", + "version": "0.26.2", "private": true, "description": "An example Snap built using TypeScript and Webpack", "repository": { @@ -29,9 +29,9 @@ "@metamask/eslint-config-jest": "^11.0.0", "@metamask/eslint-config-nodejs": "^11.0.1", "@metamask/eslint-config-typescript": "^11.0.0", - "@metamask/snaps-cli": "^0.26.1", - "@metamask/snaps-types": "^0.26.1", - "@metamask/snaps-webpack-plugin": "^0.26.1", + "@metamask/snaps-cli": "^0.26.2", + "@metamask/snaps-types": "^0.26.2", + "@metamask/snaps-webpack-plugin": "^0.26.2", "@types/node": "^17.0.33", "@typescript-eslint/eslint-plugin": "^5.42.1", "@typescript-eslint/parser": "^5.42.1", diff --git a/packages/examples/package.json b/packages/examples/package.json index 31f1d43994..579beded4c 100644 --- a/packages/examples/package.json +++ b/packages/examples/package.json @@ -1,6 +1,6 @@ { "name": "examples", - "version": "0.26.1", + "version": "0.26.2", "private": true, "description": "Example MetaMask Snaps.", "repository": { @@ -30,7 +30,7 @@ "@metamask/eslint-config-jest": "^11.0.0", "@metamask/eslint-config-nodejs": "^11.0.1", "@metamask/eslint-config-typescript": "^11.0.0", - "@metamask/snaps-cli": "^0.26.1", + "@metamask/snaps-cli": "^0.26.2", "@typescript-eslint/eslint-plugin": "^5.42.1", "@typescript-eslint/parser": "^5.42.1", "eslint": "^8.27.0", diff --git a/packages/multichain-provider/CHANGELOG.md b/packages/multichain-provider/CHANGELOG.md index 0a1180c5a9..dd6363d986 100644 --- a/packages/multichain-provider/CHANGELOG.md +++ b/packages/multichain-provider/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.26.2] + ## [0.26.1] ### Changed - No changes this release. @@ -46,7 +48,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release ([#700](https://github.com/MetaMask/snaps-monorepo/pull/700)) -[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.2...HEAD +[0.26.2]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...v0.26.2 [0.26.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.0...v0.26.1 [0.26.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.25.0...v0.26.0 [0.25.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.24.1...v0.25.0 diff --git a/packages/multichain-provider/package.json b/packages/multichain-provider/package.json index 319c83dae6..9798fb7ed6 100644 --- a/packages/multichain-provider/package.json +++ b/packages/multichain-provider/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/multichain-provider", - "version": "0.26.1", + "version": "0.26.2", "repository": { "type": "git", "url": "https://github.com/MetaMask/snaps-monorepo.git" @@ -27,7 +27,7 @@ "dependencies": { "@metamask/providers": "^10.2.0", "@metamask/safe-event-emitter": "^2.0.0", - "@metamask/snaps-utils": "^0.26.1", + "@metamask/snaps-utils": "^0.26.2", "@metamask/utils": "^3.3.1", "nanoid": "^3.1.31" }, @@ -38,7 +38,7 @@ "@metamask/eslint-config-jest": "^11.0.0", "@metamask/eslint-config-nodejs": "^11.0.1", "@metamask/eslint-config-typescript": "^11.0.0", - "@metamask/snaps-utils": "^0.26.1", + "@metamask/snaps-utils": "^0.26.2", "@types/jest": "^27.5.1", "@typescript-eslint/eslint-plugin": "^5.42.1", "@typescript-eslint/parser": "^5.42.1", diff --git a/packages/rpc-methods/CHANGELOG.md b/packages/rpc-methods/CHANGELOG.md index af3f72d747..86d543c27a 100644 --- a/packages/rpc-methods/CHANGELOG.md +++ b/packages/rpc-methods/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.26.2] + ## [0.26.1] ### Changed - No changes this release. @@ -255,7 +257,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-monorepo/compare/v0.26.1...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.2...HEAD +[0.26.2]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...v0.26.2 [0.26.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.0...v0.26.1 [0.26.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.25.0...v0.26.0 [0.25.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.24.1...v0.25.0 diff --git a/packages/rpc-methods/package.json b/packages/rpc-methods/package.json index 1cb70dfc6b..2a630c9cb9 100644 --- a/packages/rpc-methods/package.json +++ b/packages/rpc-methods/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/rpc-methods", - "version": "0.26.1", + "version": "0.26.2", "description": "MetaMask Snap RPC method implementations.", "repository": { "type": "git", @@ -28,7 +28,7 @@ "dependencies": { "@metamask/key-tree": "^6.0.0", "@metamask/permission-controller": "^1.0.1", - "@metamask/snaps-utils": "^0.26.1", + "@metamask/snaps-utils": "^0.26.2", "@metamask/types": "^1.1.0", "@metamask/utils": "^3.3.1", "@noble/hashes": "^1.1.3", diff --git a/packages/snaps-browserify-plugin/CHANGELOG.md b/packages/snaps-browserify-plugin/CHANGELOG.md index 05e45b19cd..b06a1642e1 100644 --- a/packages/snaps-browserify-plugin/CHANGELOG.md +++ b/packages/snaps-browserify-plugin/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.26.2] + ## [0.26.1] ### Changed - No changes this release. @@ -95,7 +97,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release ([#410](https://github.com/MetaMask/snaps-monorepo/pull/410), [#421](https://github.com/MetaMask/snaps-monorepo/pull/421)) -[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.2...HEAD +[0.26.2]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...v0.26.2 [0.26.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.0...v0.26.1 [0.26.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.25.0...v0.26.0 [0.25.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.24.1...v0.25.0 diff --git a/packages/snaps-browserify-plugin/package.json b/packages/snaps-browserify-plugin/package.json index 3edfaf3bd7..e1aaf29708 100644 --- a/packages/snaps-browserify-plugin/package.json +++ b/packages/snaps-browserify-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/snaps-browserify-plugin", - "version": "0.26.1", + "version": "0.26.2", "keywords": [ "browserify-plugin" ], @@ -28,7 +28,7 @@ "publish:package": "../../scripts/publish-package.sh" }, "dependencies": { - "@metamask/snaps-utils": "^0.26.1", + "@metamask/snaps-utils": "^0.26.2", "convert-source-map": "^1.8.0" }, "devDependencies": { diff --git a/packages/snaps-cli/CHANGELOG.md b/packages/snaps-cli/CHANGELOG.md index 5915cb744c..ed13a0154f 100644 --- a/packages/snaps-cli/CHANGELOG.md +++ b/packages/snaps-cli/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.26.2] + ## [0.26.1] ### Changed - No changes this release. @@ -280,7 +282,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Example snaps ([#72](https://github.com/MetaMask/snaps-monorepo/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-monorepo/compare/v0.26.1...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.2...HEAD +[0.26.2]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...v0.26.2 [0.26.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.0...v0.26.1 [0.26.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.25.0...v0.26.0 [0.25.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.24.1...v0.25.0 diff --git a/packages/snaps-cli/package.json b/packages/snaps-cli/package.json index 0f5d05059a..d2227a0355 100644 --- a/packages/snaps-cli/package.json +++ b/packages/snaps-cli/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/snaps-cli", - "version": "0.26.1", + "version": "0.26.2", "description": "A CLI for developing MetaMask Snaps.", "repository": { "type": "git", @@ -43,8 +43,8 @@ "@babel/plugin-transform-runtime": "^7.16.7", "@babel/preset-env": "^7.16.7", "@babel/preset-typescript": "^7.16.7", - "@metamask/snaps-browserify-plugin": "^0.26.1", - "@metamask/snaps-utils": "^0.26.1", + "@metamask/snaps-browserify-plugin": "^0.26.2", + "@metamask/snaps-utils": "^0.26.2", "@metamask/utils": "^3.3.1", "babelify": "^10.0.0", "browserify": "^17.0.0", diff --git a/packages/snaps-controllers/CHANGELOG.md b/packages/snaps-controllers/CHANGELOG.md index e6a09339bb..9ed01dffdc 100644 --- a/packages/snaps-controllers/CHANGELOG.md +++ b/packages/snaps-controllers/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.26.2] + ## [0.26.1] ### Fixed - Fix some paths being wrongly normalized ([#1053](https://github.com/MetaMask/snaps-monorepo/pull/1053)) @@ -415,7 +417,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-monorepo/compare/v0.26.1...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.2...HEAD +[0.26.2]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...v0.26.2 [0.26.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.0...v0.26.1 [0.26.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.25.0...v0.26.0 [0.25.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.24.1...v0.25.0 diff --git a/packages/snaps-controllers/package.json b/packages/snaps-controllers/package.json index a0bfe92292..a7da261ef9 100644 --- a/packages/snaps-controllers/package.json +++ b/packages/snaps-controllers/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/snaps-controllers", - "version": "0.26.1", + "version": "0.26.2", "description": "Controllers for MetaMask Snaps.", "repository": { "type": "git", @@ -37,10 +37,10 @@ "@metamask/object-multiplex": "^1.1.0", "@metamask/permission-controller": "^1.0.1", "@metamask/post-message-stream": "^6.0.0", - "@metamask/rpc-methods": "^0.26.1", - "@metamask/snaps-execution-environments": "^0.26.1", - "@metamask/snaps-types": "^0.26.1", - "@metamask/snaps-utils": "^0.26.1", + "@metamask/rpc-methods": "^0.26.2", + "@metamask/snaps-execution-environments": "^0.26.2", + "@metamask/snaps-types": "^0.26.2", + "@metamask/snaps-utils": "^0.26.2", "@metamask/subject-metadata-controller": "^1.0.1", "@metamask/utils": "^3.3.1", "@xstate/fsm": "^2.0.0", diff --git a/packages/snaps-execution-environments/CHANGELOG.md b/packages/snaps-execution-environments/CHANGELOG.md index d411ebdecf..3bd46d06ab 100644 --- a/packages/snaps-execution-environments/CHANGELOG.md +++ b/packages/snaps-execution-environments/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.26.2] +### Uncategorized +- Fix usage of wrong `ethereum` object for `ethereum` endowment ([#1064](https://github.com/MetaMask/snaps-monorepo/pull/1064)) + ## [0.26.1] ### Changed - No changes this release. @@ -183,7 +187,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-monorepo/pull/263)) -[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.2...HEAD +[0.26.2]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...v0.26.2 [0.26.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.0...v0.26.1 [0.26.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.25.0...v0.26.0 [0.25.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.24.1...v0.25.0 diff --git a/packages/snaps-execution-environments/package.json b/packages/snaps-execution-environments/package.json index eaa51e9bb7..4dced5dcb3 100644 --- a/packages/snaps-execution-environments/package.json +++ b/packages/snaps-execution-environments/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/snaps-execution-environments", - "version": "0.26.1", + "version": "0.26.2", "description": "Snap sandbox environments for executing SES javascript", "repository": { "type": "git", @@ -35,8 +35,8 @@ "@metamask/object-multiplex": "^1.2.0", "@metamask/post-message-stream": "^6.0.0", "@metamask/providers": "^10.2.0", - "@metamask/snaps-types": "^0.26.1", - "@metamask/snaps-utils": "^0.26.1", + "@metamask/snaps-types": "^0.26.2", + "@metamask/snaps-utils": "^0.26.2", "@metamask/utils": "^3.3.1", "eth-rpc-errors": "^4.0.3", "json-rpc-engine": "^6.1.0", diff --git a/packages/snaps-rollup-plugin/CHANGELOG.md b/packages/snaps-rollup-plugin/CHANGELOG.md index aa4cc92731..f80abfaf9c 100644 --- a/packages/snaps-rollup-plugin/CHANGELOG.md +++ b/packages/snaps-rollup-plugin/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.26.2] + ## [0.26.1] ### Changed - No changes this release. @@ -94,7 +96,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release ([#431](https://github.com/MetaMask/snaps-monorepo/pull/431)) -[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.2...HEAD +[0.26.2]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...v0.26.2 [0.26.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.0...v0.26.1 [0.26.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.25.0...v0.26.0 [0.25.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.24.1...v0.25.0 diff --git a/packages/snaps-rollup-plugin/package.json b/packages/snaps-rollup-plugin/package.json index 59b6a56306..6bac7dc1d1 100644 --- a/packages/snaps-rollup-plugin/package.json +++ b/packages/snaps-rollup-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/snaps-rollup-plugin", - "version": "0.26.1", + "version": "0.26.2", "keywords": [ "rollup", "rollup-plugin" @@ -29,7 +29,7 @@ "publish:package": "../../scripts/publish-package.sh" }, "dependencies": { - "@metamask/snaps-utils": "^0.26.1" + "@metamask/snaps-utils": "^0.26.2" }, "devDependencies": { "@lavamoat/allow-scripts": "^2.0.3", diff --git a/packages/snaps-types/CHANGELOG.md b/packages/snaps-types/CHANGELOG.md index 1445f1b0a1..1bd47ab89a 100644 --- a/packages/snaps-types/CHANGELOG.md +++ b/packages/snaps-types/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.26.2] + ## [0.26.1] ### Changed - No changes this release. @@ -223,7 +225,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release -[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.2...HEAD +[0.26.2]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...v0.26.2 [0.26.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.0...v0.26.1 [0.26.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.25.0...v0.26.0 [0.25.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.24.1...v0.25.0 diff --git a/packages/snaps-types/package.json b/packages/snaps-types/package.json index ef1ffbb88a..906c5d481b 100644 --- a/packages/snaps-types/package.json +++ b/packages/snaps-types/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/snaps-types", - "version": "0.26.1", + "version": "0.26.2", "description": "TypeScript types for developing MetaMask Snaps.", "repository": { "type": "git", @@ -22,7 +22,7 @@ }, "dependencies": { "@metamask/providers": "^10.2.0", - "@metamask/snaps-utils": "^0.26.1", + "@metamask/snaps-utils": "^0.26.2", "@metamask/types": "^1.1.0" }, "devDependencies": { diff --git a/packages/snaps-ui/CHANGELOG.md b/packages/snaps-ui/CHANGELOG.md index ae46bdf096..911f1dc5f0 100644 --- a/packages/snaps-ui/CHANGELOG.md +++ b/packages/snaps-ui/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.26.2] + ## [0.26.1] ### Changed - No changes this release. @@ -18,7 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release ([#978](https://github.com/MetaMask/snaps-monorepo/pull/978), [#1009](https://github.com/MetaMask/snaps-monorepo/pull/1009)) -[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.2...HEAD +[0.26.2]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...v0.26.2 [0.26.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.0...v0.26.1 [0.26.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.25.0...v0.26.0 [0.25.0]: https://github.com/MetaMask/snaps-monorepo/releases/tag/v0.25.0 diff --git a/packages/snaps-ui/package.json b/packages/snaps-ui/package.json index e53ead7451..1c2205a559 100644 --- a/packages/snaps-ui/package.json +++ b/packages/snaps-ui/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/snaps-ui", - "version": "0.26.1", + "version": "0.26.2", "repository": { "type": "git", "url": "https://github.com/MetaMask/snaps-monorepo.git" diff --git a/packages/snaps-utils/CHANGELOG.md b/packages/snaps-utils/CHANGELOG.md index f9e47a1304..9bbb23288c 100644 --- a/packages/snaps-utils/CHANGELOG.md +++ b/packages/snaps-utils/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.26.2] + ## [0.26.1] ### Fixed - Fix some paths being wrongly normalized ([#1053](https://github.com/MetaMask/snaps-monorepo/pull/1053)) @@ -122,7 +124,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release ([#410](https://github.com/MetaMask/snaps-monorepo/pull/410), [#421](https://github.com/MetaMask/snaps-monorepo/pull/421)) -[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.2...HEAD +[0.26.2]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...v0.26.2 [0.26.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.0...v0.26.1 [0.26.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.25.0...v0.26.0 [0.25.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.24.1...v0.25.0 diff --git a/packages/snaps-utils/package.json b/packages/snaps-utils/package.json index 9250701e7e..3e63f9df1e 100644 --- a/packages/snaps-utils/package.json +++ b/packages/snaps-utils/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/snaps-utils", - "version": "0.26.1", + "version": "0.26.2", "repository": { "type": "git", "url": "https://github.com/MetaMask/snaps-monorepo.git" @@ -52,7 +52,7 @@ "dependencies": { "@babel/core": "^7.18.6", "@babel/types": "^7.18.7", - "@metamask/snaps-types": "^0.26.1", + "@metamask/snaps-types": "^0.26.2", "@metamask/utils": "^3.3.1", "@noble/hashes": "^1.1.3", "@scure/base": "^1.1.1", diff --git a/packages/snaps-webpack-plugin/CHANGELOG.md b/packages/snaps-webpack-plugin/CHANGELOG.md index c73b55fb80..19abb1a5b6 100644 --- a/packages/snaps-webpack-plugin/CHANGELOG.md +++ b/packages/snaps-webpack-plugin/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.26.2] + ## [0.26.1] ### Changed - No changes this release. @@ -95,7 +97,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release ([#420](https://github.com/MetaMask/snaps-monorepo/pull/420)) -[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...HEAD +[Unreleased]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.2...HEAD +[0.26.2]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.1...v0.26.2 [0.26.1]: https://github.com/MetaMask/snaps-monorepo/compare/v0.26.0...v0.26.1 [0.26.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.25.0...v0.26.0 [0.25.0]: https://github.com/MetaMask/snaps-monorepo/compare/v0.24.1...v0.25.0 diff --git a/packages/snaps-webpack-plugin/package.json b/packages/snaps-webpack-plugin/package.json index 4c1cec819a..6e806dda05 100644 --- a/packages/snaps-webpack-plugin/package.json +++ b/packages/snaps-webpack-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/snaps-webpack-plugin", - "version": "0.26.1", + "version": "0.26.2", "keywords": [ "webpack", "plugin" @@ -29,7 +29,7 @@ "publish:package": "../../scripts/publish-package.sh" }, "dependencies": { - "@metamask/snaps-utils": "^0.26.1", + "@metamask/snaps-utils": "^0.26.2", "@metamask/utils": "^3.3.0", "webpack-sources": "^3.2.3" }, From 99c9051ec96b15addf513d125e33309933df2464 Mon Sep 17 00:00:00 2001 From: Frederik Bolding Date: Tue, 13 Dec 2022 12:35:51 +0100 Subject: [PATCH 2/3] Update changelogs --- packages/examples/CHANGELOG.md | 2 ++ packages/multichain-provider/CHANGELOG.md | 2 ++ packages/rpc-methods/CHANGELOG.md | 2 ++ packages/snaps-browserify-plugin/CHANGELOG.md | 2 ++ packages/snaps-cli/CHANGELOG.md | 2 ++ packages/snaps-controllers/CHANGELOG.md | 2 ++ packages/snaps-execution-environments/CHANGELOG.md | 4 ++-- packages/snaps-rollup-plugin/CHANGELOG.md | 2 ++ packages/snaps-types/CHANGELOG.md | 2 ++ packages/snaps-ui/CHANGELOG.md | 2 ++ packages/snaps-utils/CHANGELOG.md | 2 ++ packages/snaps-webpack-plugin/CHANGELOG.md | 2 ++ 12 files changed, 24 insertions(+), 2 deletions(-) diff --git a/packages/examples/CHANGELOG.md b/packages/examples/CHANGELOG.md index e4d9444293..b89ad4cc0c 100644 --- a/packages/examples/CHANGELOG.md +++ b/packages/examples/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [0.26.2] +### Changed +- No changes this release. ## [0.26.1] ### Changed diff --git a/packages/multichain-provider/CHANGELOG.md b/packages/multichain-provider/CHANGELOG.md index dd6363d986..f75d9c70ab 100644 --- a/packages/multichain-provider/CHANGELOG.md +++ b/packages/multichain-provider/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [0.26.2] +### Changed +- No changes this release. ## [0.26.1] ### Changed diff --git a/packages/rpc-methods/CHANGELOG.md b/packages/rpc-methods/CHANGELOG.md index 86d543c27a..28b2dca5ea 100644 --- a/packages/rpc-methods/CHANGELOG.md +++ b/packages/rpc-methods/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [0.26.2] +### Changed +- No changes this release. ## [0.26.1] ### Changed diff --git a/packages/snaps-browserify-plugin/CHANGELOG.md b/packages/snaps-browserify-plugin/CHANGELOG.md index b06a1642e1..dd7eec32cf 100644 --- a/packages/snaps-browserify-plugin/CHANGELOG.md +++ b/packages/snaps-browserify-plugin/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [0.26.2] +### Changed +- No changes this release. ## [0.26.1] ### Changed diff --git a/packages/snaps-cli/CHANGELOG.md b/packages/snaps-cli/CHANGELOG.md index ed13a0154f..a5b4d68339 100644 --- a/packages/snaps-cli/CHANGELOG.md +++ b/packages/snaps-cli/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [0.26.2] +### Changed +- No changes this release. ## [0.26.1] ### Changed diff --git a/packages/snaps-controllers/CHANGELOG.md b/packages/snaps-controllers/CHANGELOG.md index 9ed01dffdc..200b1f8fd6 100644 --- a/packages/snaps-controllers/CHANGELOG.md +++ b/packages/snaps-controllers/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [0.26.2] +### Changed +- No changes this release. ## [0.26.1] ### Fixed diff --git a/packages/snaps-execution-environments/CHANGELOG.md b/packages/snaps-execution-environments/CHANGELOG.md index 3bd46d06ab..0434410051 100644 --- a/packages/snaps-execution-environments/CHANGELOG.md +++ b/packages/snaps-execution-environments/CHANGELOG.md @@ -7,8 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [0.26.2] -### Uncategorized -- Fix usage of wrong `ethereum` object for `ethereum` endowment ([#1064](https://github.com/MetaMask/snaps-monorepo/pull/1064)) +### Fixed +- Fix usage of wrong `ethereum` global for `ethereum` endowment ([#1064](https://github.com/MetaMask/snaps-monorepo/pull/1064)) ## [0.26.1] ### Changed diff --git a/packages/snaps-rollup-plugin/CHANGELOG.md b/packages/snaps-rollup-plugin/CHANGELOG.md index f80abfaf9c..579ef914b3 100644 --- a/packages/snaps-rollup-plugin/CHANGELOG.md +++ b/packages/snaps-rollup-plugin/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [0.26.2] +### Changed +- No changes this release. ## [0.26.1] ### Changed diff --git a/packages/snaps-types/CHANGELOG.md b/packages/snaps-types/CHANGELOG.md index 1bd47ab89a..9dfd03a0ce 100644 --- a/packages/snaps-types/CHANGELOG.md +++ b/packages/snaps-types/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [0.26.2] +### Changed +- No changes this release. ## [0.26.1] ### Changed diff --git a/packages/snaps-ui/CHANGELOG.md b/packages/snaps-ui/CHANGELOG.md index 911f1dc5f0..6b5b80d1f0 100644 --- a/packages/snaps-ui/CHANGELOG.md +++ b/packages/snaps-ui/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [0.26.2] +### Changed +- No changes this release. ## [0.26.1] ### Changed diff --git a/packages/snaps-utils/CHANGELOG.md b/packages/snaps-utils/CHANGELOG.md index 9bbb23288c..57052b5d00 100644 --- a/packages/snaps-utils/CHANGELOG.md +++ b/packages/snaps-utils/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [0.26.2] +### Changed +- No changes this release. ## [0.26.1] ### Fixed diff --git a/packages/snaps-webpack-plugin/CHANGELOG.md b/packages/snaps-webpack-plugin/CHANGELOG.md index 19abb1a5b6..e5f1fe74ba 100644 --- a/packages/snaps-webpack-plugin/CHANGELOG.md +++ b/packages/snaps-webpack-plugin/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [0.26.2] +### Changed +- No changes this release. ## [0.26.1] ### Changed From 3ea8eece3a046652c8eb9a6573a771e22f3b97c2 Mon Sep 17 00:00:00 2001 From: Frederik Bolding Date: Tue, 13 Dec 2022 12:38:13 +0100 Subject: [PATCH 3/3] Update yarn.lock and manifests --- .../examples/bls-signer/snap.manifest.json | 2 +- .../examples/browserify/snap.manifest.json | 2 +- .../examples/ethers-js/snap.manifest.json | 2 +- .../examples/insights/snap.manifest.json | 2 +- .../examples/examples/ipfs/snap.manifest.json | 2 +- .../examples/notifications/snap.manifest.json | 2 +- .../examples/rollup/snap.manifest.json | 2 +- .../examples/typescript/snap.manifest.json | 2 +- .../examples/examples/wasm/snap.manifest.json | 2 +- .../examples/webpack/snap.manifest.json | 2 +- yarn.lock | 84 +++++++++---------- 11 files changed, 52 insertions(+), 52 deletions(-) diff --git a/packages/examples/examples/bls-signer/snap.manifest.json b/packages/examples/examples/bls-signer/snap.manifest.json index a37a20ea23..913a340bee 100644 --- a/packages/examples/examples/bls-signer/snap.manifest.json +++ b/packages/examples/examples/bls-signer/snap.manifest.json @@ -1,5 +1,5 @@ { - "version": "0.26.1", + "version": "0.26.2", "description": "An example Snap that signs messages using BLS.", "proposedName": "bls-signer", "repository": { diff --git a/packages/examples/examples/browserify/snap.manifest.json b/packages/examples/examples/browserify/snap.manifest.json index 0633520987..b054d8bcb5 100644 --- a/packages/examples/examples/browserify/snap.manifest.json +++ b/packages/examples/examples/browserify/snap.manifest.json @@ -1,5 +1,5 @@ { - "version": "0.26.1", + "version": "0.26.2", "description": "An example Snap built using TypeScript and Browserify", "proposedName": "browserify-snap", "repository": { diff --git a/packages/examples/examples/ethers-js/snap.manifest.json b/packages/examples/examples/ethers-js/snap.manifest.json index b37485e417..1424d3e81a 100644 --- a/packages/examples/examples/ethers-js/snap.manifest.json +++ b/packages/examples/examples/ethers-js/snap.manifest.json @@ -1,5 +1,5 @@ { - "version": "0.26.1", + "version": "0.26.2", "description": "An example Snap that that uses ethers.js.", "proposedName": "ethers-js-snap", "repository": { diff --git a/packages/examples/examples/insights/snap.manifest.json b/packages/examples/examples/insights/snap.manifest.json index f556ec615c..3d66f9c9b5 100644 --- a/packages/examples/examples/insights/snap.manifest.json +++ b/packages/examples/examples/insights/snap.manifest.json @@ -1,5 +1,5 @@ { - "version": "0.26.1", + "version": "0.26.2", "description": "An example transaction insights Snap.", "proposedName": "Transaction Insights Example Snap", "repository": { diff --git a/packages/examples/examples/ipfs/snap.manifest.json b/packages/examples/examples/ipfs/snap.manifest.json index d1b7b07c41..7da5ddd09a 100644 --- a/packages/examples/examples/ipfs/snap.manifest.json +++ b/packages/examples/examples/ipfs/snap.manifest.json @@ -1,5 +1,5 @@ { - "version": "0.26.1", + "version": "0.26.2", "description": "An example Snap that performs IPFS operations.", "proposedName": "ipfs-snap", "repository": { diff --git a/packages/examples/examples/notifications/snap.manifest.json b/packages/examples/examples/notifications/snap.manifest.json index 76be7f99eb..599d7f7856 100644 --- a/packages/examples/examples/notifications/snap.manifest.json +++ b/packages/examples/examples/notifications/snap.manifest.json @@ -1,5 +1,5 @@ { - "version": "0.26.1", + "version": "0.26.2", "description": "A notification example snap.", "proposedName": "Notification Example Snap", "repository": { diff --git a/packages/examples/examples/rollup/snap.manifest.json b/packages/examples/examples/rollup/snap.manifest.json index 0af1c89cd3..a03ab18ec6 100644 --- a/packages/examples/examples/rollup/snap.manifest.json +++ b/packages/examples/examples/rollup/snap.manifest.json @@ -1,5 +1,5 @@ { - "version": "0.26.1", + "version": "0.26.2", "description": "An example Snap built using TypeScript and Rollup", "proposedName": "rollup-snap", "repository": { diff --git a/packages/examples/examples/typescript/snap.manifest.json b/packages/examples/examples/typescript/snap.manifest.json index d2d4442594..bea3d1de63 100644 --- a/packages/examples/examples/typescript/snap.manifest.json +++ b/packages/examples/examples/typescript/snap.manifest.json @@ -1,5 +1,5 @@ { - "version": "0.26.1", + "version": "0.26.2", "description": "An example Snap written in TypeScript.", "proposedName": "TypeScript Example Snap", "repository": { diff --git a/packages/examples/examples/wasm/snap.manifest.json b/packages/examples/examples/wasm/snap.manifest.json index 9000979bb2..de11f51479 100644 --- a/packages/examples/examples/wasm/snap.manifest.json +++ b/packages/examples/examples/wasm/snap.manifest.json @@ -1,5 +1,5 @@ { - "version": "0.26.1", + "version": "0.26.2", "description": "An example Snap that uses WebAssembly.", "proposedName": "wasm", "repository": { diff --git a/packages/examples/examples/webpack/snap.manifest.json b/packages/examples/examples/webpack/snap.manifest.json index aed3cea449..d633797edd 100644 --- a/packages/examples/examples/webpack/snap.manifest.json +++ b/packages/examples/examples/webpack/snap.manifest.json @@ -1,5 +1,5 @@ { - "version": "0.26.1", + "version": "0.26.2", "description": "An example Snap built using TypeScript and Webpack", "proposedName": "webpack-snap", "repository": { diff --git a/yarn.lock b/yarn.lock index 02a2a66530..7e90897214 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2586,7 +2586,7 @@ __metadata: "@metamask/eslint-config-typescript": ^11.0.0 "@metamask/providers": ^10.2.0 "@metamask/safe-event-emitter": ^2.0.0 - "@metamask/snaps-utils": ^0.26.1 + "@metamask/snaps-utils": ^0.26.2 "@metamask/utils": ^3.3.1 "@types/jest": ^27.5.1 "@typescript-eslint/eslint-plugin": ^5.42.1 @@ -2672,7 +2672,7 @@ __metadata: languageName: node linkType: hard -"@metamask/rpc-methods@^0.26.1, @metamask/rpc-methods@workspace:packages/rpc-methods": +"@metamask/rpc-methods@^0.26.2, @metamask/rpc-methods@workspace:packages/rpc-methods": version: 0.0.0-use.local resolution: "@metamask/rpc-methods@workspace:packages/rpc-methods" dependencies: @@ -2684,7 +2684,7 @@ __metadata: "@metamask/eslint-config-typescript": ^11.0.0 "@metamask/key-tree": ^6.0.0 "@metamask/permission-controller": ^1.0.1 - "@metamask/snaps-utils": ^0.26.1 + "@metamask/snaps-utils": ^0.26.2 "@metamask/types": ^1.1.0 "@metamask/utils": ^3.3.1 "@noble/hashes": ^1.1.3 @@ -2720,7 +2720,7 @@ __metadata: languageName: node linkType: hard -"@metamask/snaps-browserify-plugin@^0.26.1, @metamask/snaps-browserify-plugin@workspace:packages/snaps-browserify-plugin": +"@metamask/snaps-browserify-plugin@^0.26.2, @metamask/snaps-browserify-plugin@workspace:packages/snaps-browserify-plugin": version: 0.0.0-use.local resolution: "@metamask/snaps-browserify-plugin@workspace:packages/snaps-browserify-plugin" dependencies: @@ -2730,7 +2730,7 @@ __metadata: "@metamask/eslint-config-jest": ^11.0.0 "@metamask/eslint-config-nodejs": ^11.0.1 "@metamask/eslint-config-typescript": ^11.0.0 - "@metamask/snaps-utils": ^0.26.1 + "@metamask/snaps-utils": ^0.26.2 "@types/browserify": ^12.0.37 "@types/convert-source-map": ^1.5.2 "@types/jest": ^27.5.1 @@ -2758,7 +2758,7 @@ __metadata: languageName: unknown linkType: soft -"@metamask/snaps-cli@^0.26.1, @metamask/snaps-cli@workspace:packages/snaps-cli": +"@metamask/snaps-cli@^0.26.2, @metamask/snaps-cli@workspace:packages/snaps-cli": version: 0.0.0-use.local resolution: "@metamask/snaps-cli@workspace:packages/snaps-cli" dependencies: @@ -2776,8 +2776,8 @@ __metadata: "@metamask/eslint-config-jest": ^11.0.0 "@metamask/eslint-config-nodejs": ^11.0.1 "@metamask/eslint-config-typescript": ^11.0.0 - "@metamask/snaps-browserify-plugin": ^0.26.1 - "@metamask/snaps-utils": ^0.26.1 + "@metamask/snaps-browserify-plugin": ^0.26.2 + "@metamask/snaps-utils": ^0.26.2 "@metamask/utils": ^3.3.1 "@types/browserify": ^12.0.36 "@types/is-url": ^1.2.28 @@ -2838,10 +2838,10 @@ __metadata: "@metamask/object-multiplex": ^1.1.0 "@metamask/permission-controller": ^1.0.1 "@metamask/post-message-stream": ^6.0.0 - "@metamask/rpc-methods": ^0.26.1 - "@metamask/snaps-execution-environments": ^0.26.1 - "@metamask/snaps-types": ^0.26.1 - "@metamask/snaps-utils": ^0.26.1 + "@metamask/rpc-methods": ^0.26.2 + "@metamask/snaps-execution-environments": ^0.26.2 + "@metamask/snaps-types": ^0.26.2 + "@metamask/snaps-utils": ^0.26.2 "@metamask/subject-metadata-controller": ^1.0.1 "@metamask/template-snap": ^0.7.0 "@metamask/utils": ^3.3.1 @@ -2889,7 +2889,7 @@ __metadata: languageName: unknown linkType: soft -"@metamask/snaps-execution-environments@^0.26.1, @metamask/snaps-execution-environments@workspace:packages/snaps-execution-environments": +"@metamask/snaps-execution-environments@^0.26.2, @metamask/snaps-execution-environments@workspace:packages/snaps-execution-environments": version: 0.0.0-use.local resolution: "@metamask/snaps-execution-environments@workspace:packages/snaps-execution-environments" dependencies: @@ -2903,8 +2903,8 @@ __metadata: "@metamask/object-multiplex": ^1.2.0 "@metamask/post-message-stream": ^6.0.0 "@metamask/providers": ^10.2.0 - "@metamask/snaps-types": ^0.26.1 - "@metamask/snaps-utils": ^0.26.1 + "@metamask/snaps-types": ^0.26.2 + "@metamask/snaps-utils": ^0.26.2 "@metamask/utils": ^3.3.1 "@types/jest": ^27.5.1 "@types/node": ^17.0.36 @@ -2949,7 +2949,7 @@ __metadata: languageName: unknown linkType: soft -"@metamask/snaps-rollup-plugin@^0.26.1, @metamask/snaps-rollup-plugin@workspace:packages/snaps-rollup-plugin": +"@metamask/snaps-rollup-plugin@^0.26.2, @metamask/snaps-rollup-plugin@workspace:packages/snaps-rollup-plugin": version: 0.0.0-use.local resolution: "@metamask/snaps-rollup-plugin@workspace:packages/snaps-rollup-plugin" dependencies: @@ -2959,7 +2959,7 @@ __metadata: "@metamask/eslint-config-jest": ^11.0.0 "@metamask/eslint-config-nodejs": ^11.0.1 "@metamask/eslint-config-typescript": ^11.0.0 - "@metamask/snaps-utils": ^0.26.1 + "@metamask/snaps-utils": ^0.26.2 "@rollup/plugin-virtual": ^2.1.0 "@types/jest": ^27.5.1 "@typescript-eslint/eslint-plugin": ^5.42.1 @@ -2984,7 +2984,7 @@ __metadata: languageName: unknown linkType: soft -"@metamask/snaps-types@^0.26.1, @metamask/snaps-types@workspace:packages/snaps-types": +"@metamask/snaps-types@^0.26.2, @metamask/snaps-types@workspace:packages/snaps-types": version: 0.0.0-use.local resolution: "@metamask/snaps-types@workspace:packages/snaps-types" dependencies: @@ -2995,7 +2995,7 @@ __metadata: "@metamask/eslint-config-nodejs": ^11.0.1 "@metamask/eslint-config-typescript": ^11.0.0 "@metamask/providers": ^10.2.0 - "@metamask/snaps-utils": ^0.26.1 + "@metamask/snaps-utils": ^0.26.2 "@metamask/types": ^1.1.0 "@typescript-eslint/eslint-plugin": ^5.42.1 "@typescript-eslint/parser": ^5.42.1 @@ -3049,7 +3049,7 @@ __metadata: languageName: unknown linkType: soft -"@metamask/snaps-utils@^0.26.1, @metamask/snaps-utils@workspace:packages/snaps-utils": +"@metamask/snaps-utils@^0.26.2, @metamask/snaps-utils@workspace:packages/snaps-utils": version: 0.0.0-use.local resolution: "@metamask/snaps-utils@workspace:packages/snaps-utils" dependencies: @@ -3061,7 +3061,7 @@ __metadata: "@metamask/eslint-config-jest": ^11.0.0 "@metamask/eslint-config-nodejs": ^11.0.1 "@metamask/eslint-config-typescript": ^11.0.0 - "@metamask/snaps-types": ^0.26.1 + "@metamask/snaps-types": ^0.26.2 "@metamask/utils": ^3.3.1 "@noble/hashes": ^1.1.3 "@scure/base": ^1.1.1 @@ -3097,7 +3097,7 @@ __metadata: languageName: unknown linkType: soft -"@metamask/snaps-webpack-plugin@^0.26.1, @metamask/snaps-webpack-plugin@workspace:packages/snaps-webpack-plugin": +"@metamask/snaps-webpack-plugin@^0.26.2, @metamask/snaps-webpack-plugin@workspace:packages/snaps-webpack-plugin": version: 0.0.0-use.local resolution: "@metamask/snaps-webpack-plugin@workspace:packages/snaps-webpack-plugin" dependencies: @@ -3107,7 +3107,7 @@ __metadata: "@metamask/eslint-config-jest": ^11.0.0 "@metamask/eslint-config-nodejs": ^11.0.1 "@metamask/eslint-config-typescript": ^11.0.0 - "@metamask/snaps-utils": ^0.26.1 + "@metamask/snaps-utils": ^0.26.2 "@metamask/utils": ^3.3.0 "@types/jest": ^27.5.1 "@types/webpack-sources": ^3.2.0 @@ -5348,7 +5348,7 @@ __metadata: "@metamask/eslint-config-jest": ^11.0.0 "@metamask/eslint-config-nodejs": ^11.0.1 "@metamask/eslint-config-typescript": ^11.0.0 - "@metamask/snaps-cli": ^0.26.1 + "@metamask/snaps-cli": ^0.26.2 "@typescript-eslint/eslint-plugin": ^5.42.1 "@typescript-eslint/parser": ^5.42.1 eslint: ^8.27.0 @@ -5576,9 +5576,9 @@ __metadata: "@metamask/eslint-config-jest": ^11.0.0 "@metamask/eslint-config-nodejs": ^11.0.1 "@metamask/eslint-config-typescript": ^11.0.0 - "@metamask/snaps-browserify-plugin": ^0.26.1 - "@metamask/snaps-cli": ^0.26.1 - "@metamask/snaps-types": ^0.26.1 + "@metamask/snaps-browserify-plugin": ^0.26.2 + "@metamask/snaps-cli": ^0.26.2 + "@metamask/snaps-types": ^0.26.2 "@types/browserify": ^12.0.37 "@types/gulp": ^4.0.9 "@types/node": ^17.0.33 @@ -8063,7 +8063,7 @@ __metadata: "@metamask/eslint-config-jest": ^11.0.0 "@metamask/eslint-config-nodejs": ^11.0.1 "@metamask/eslint-config-typescript": ^11.0.0 - "@metamask/snaps-cli": ^0.26.1 + "@metamask/snaps-cli": ^0.26.2 "@typescript-eslint/eslint-plugin": ^5.42.1 "@typescript-eslint/parser": ^5.42.1 eslint: ^8.27.0 @@ -8182,7 +8182,7 @@ __metadata: "@metamask/eslint-config-jest": ^11.0.0 "@metamask/eslint-config-nodejs": ^11.0.1 "@metamask/eslint-config-typescript": ^11.0.0 - "@metamask/snaps-cli": ^0.26.1 + "@metamask/snaps-cli": ^0.26.2 "@typescript-eslint/eslint-plugin": ^5.42.1 "@typescript-eslint/parser": ^5.42.1 eslint: ^8.27.0 @@ -9752,7 +9752,7 @@ __metadata: "@metamask/eslint-config-jest": ^11.0.0 "@metamask/eslint-config-nodejs": ^11.0.1 "@metamask/eslint-config-typescript": ^11.0.0 - "@metamask/snaps-cli": ^0.26.1 + "@metamask/snaps-cli": ^0.26.2 "@typescript-eslint/eslint-plugin": ^5.42.1 "@typescript-eslint/parser": ^5.42.1 eslint: ^8.27.0 @@ -12358,7 +12358,7 @@ __metadata: "@metamask/eslint-config-jest": ^11.0.0 "@metamask/eslint-config-nodejs": ^11.0.1 "@metamask/eslint-config-typescript": ^11.0.0 - "@metamask/snaps-cli": ^0.26.1 + "@metamask/snaps-cli": ^0.26.2 "@typescript-eslint/eslint-plugin": ^5.42.1 "@typescript-eslint/parser": ^5.42.1 eslint: ^8.27.0 @@ -14096,9 +14096,9 @@ __metadata: "@metamask/eslint-config-jest": ^11.0.0 "@metamask/eslint-config-nodejs": ^11.0.1 "@metamask/eslint-config-typescript": ^11.0.0 - "@metamask/snaps-cli": ^0.26.1 - "@metamask/snaps-rollup-plugin": ^0.26.1 - "@metamask/snaps-types": ^0.26.1 + "@metamask/snaps-cli": ^0.26.2 + "@metamask/snaps-rollup-plugin": ^0.26.2 + "@metamask/snaps-types": ^0.26.2 "@rollup/plugin-babel": ^5.3.1 "@types/node": ^17.0.33 "@typescript-eslint/eslint-plugin": ^5.42.1 @@ -15613,8 +15613,8 @@ __metadata: "@metamask/eslint-config-jest": ^11.0.0 "@metamask/eslint-config-nodejs": ^11.0.1 "@metamask/eslint-config-typescript": ^11.0.0 - "@metamask/snaps-cli": ^0.26.1 - "@metamask/snaps-types": ^0.26.1 + "@metamask/snaps-cli": ^0.26.2 + "@metamask/snaps-types": ^0.26.2 "@metamask/utils": ^3.3.1 "@typescript-eslint/eslint-plugin": ^5.42.1 "@typescript-eslint/parser": ^5.42.1 @@ -15897,8 +15897,8 @@ __metadata: "@metamask/eslint-config-jest": ^11.0.0 "@metamask/eslint-config-nodejs": ^11.0.1 "@metamask/eslint-config-typescript": ^11.0.0 - "@metamask/snaps-cli": ^0.26.1 - "@metamask/snaps-types": ^0.26.1 + "@metamask/snaps-cli": ^0.26.2 + "@metamask/snaps-types": ^0.26.2 "@typescript-eslint/eslint-plugin": ^5.42.1 "@typescript-eslint/parser": ^5.42.1 eslint: ^8.27.0 @@ -16372,7 +16372,7 @@ __metadata: "@metamask/eslint-config-jest": ^11.0.0 "@metamask/eslint-config-nodejs": ^11.0.1 "@metamask/eslint-config-typescript": ^11.0.0 - "@metamask/snaps-cli": ^0.26.1 + "@metamask/snaps-cli": ^0.26.2 "@typescript-eslint/eslint-plugin": ^5.42.1 "@typescript-eslint/parser": ^5.42.1 assemblyscript: ^0.19.23 @@ -16526,9 +16526,9 @@ __metadata: "@metamask/eslint-config-jest": ^11.0.0 "@metamask/eslint-config-nodejs": ^11.0.1 "@metamask/eslint-config-typescript": ^11.0.0 - "@metamask/snaps-cli": ^0.26.1 - "@metamask/snaps-types": ^0.26.1 - "@metamask/snaps-webpack-plugin": ^0.26.1 + "@metamask/snaps-cli": ^0.26.2 + "@metamask/snaps-types": ^0.26.2 + "@metamask/snaps-webpack-plugin": ^0.26.2 "@types/node": ^17.0.33 "@typescript-eslint/eslint-plugin": ^5.42.1 "@typescript-eslint/parser": ^5.42.1