@metamask/snaps-execution-environments 6.9.0 → 6.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -1
- package/dist/browserify/iframe/bundle.js +5 -5
- package/dist/browserify/node-process/bundle.js +4 -4
- package/dist/browserify/node-thread/bundle.js +4 -4
- package/dist/browserify/webview/index.html +5 -5
- package/dist/browserify/worker-executor/bundle.js +5 -5
- package/dist/browserify/worker-pool/bundle.js +5 -5
- package/dist/common/BaseSnapExecutor.cjs +4 -0
- package/dist/common/BaseSnapExecutor.cjs.map +1 -1
- package/dist/common/BaseSnapExecutor.d.cts.map +1 -1
- package/dist/common/BaseSnapExecutor.d.mts.map +1 -1
- package/dist/common/BaseSnapExecutor.mjs +4 -0
- package/dist/common/BaseSnapExecutor.mjs.map +1 -1
- package/dist/common/utils.cjs +0 -3
- package/dist/common/utils.cjs.map +1 -1
- package/dist/common/utils.d.cts.map +1 -1
- package/dist/common/utils.d.mts.map +1 -1
- package/dist/common/utils.mjs +1 -4
- package/dist/common/utils.mjs.map +1 -1
- package/dist/common/validation.cjs +4 -1
- package/dist/common/validation.cjs.map +1 -1
- package/dist/common/validation.d.cts +1 -1
- package/dist/common/validation.d.cts.map +1 -1
- package/dist/common/validation.d.mts +1 -1
- package/dist/common/validation.d.mts.map +1 -1
- package/dist/common/validation.mjs +5 -2
- package/dist/common/validation.mjs.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [6.9.2]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump MetaMask dependencies ([#2853](https://github.com/MetaMask/snaps/pull/2853))
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- Reduce unnecessary JSON validation ([#2844](https://github.com/MetaMask/snaps/pull/2844))
|
|
19
|
+
|
|
20
|
+
## [6.9.1]
|
|
21
|
+
|
|
22
|
+
### Removed
|
|
23
|
+
|
|
24
|
+
- Remove `eth_sign` ([#2772](https://github.com/MetaMask/snaps/pull/2772))
|
|
25
|
+
- This method was removed from the MetaMask extension, so any references to it
|
|
26
|
+
in Snaps can be removed.
|
|
27
|
+
|
|
10
28
|
## [6.9.0]
|
|
11
29
|
|
|
12
30
|
### Changed
|
|
@@ -368,7 +386,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
368
386
|
- The version of the package no longer needs to match the version of all other
|
|
369
387
|
MetaMask Snaps packages.
|
|
370
388
|
|
|
371
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.9.
|
|
389
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.9.2...HEAD
|
|
390
|
+
[6.9.2]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.9.1...@metamask/snaps-execution-environments@6.9.2
|
|
391
|
+
[6.9.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.9.0...@metamask/snaps-execution-environments@6.9.1
|
|
372
392
|
[6.9.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.8.0...@metamask/snaps-execution-environments@6.9.0
|
|
373
393
|
[6.8.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.7.2...@metamask/snaps-execution-environments@6.8.0
|
|
374
394
|
[6.7.2]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.7.1...@metamask/snaps-execution-environments@6.7.2
|