@metamask/snaps-execution-environments 6.7.1 → 6.7.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 +6 -1
- package/dist/browserify/iframe/bundle.js +9 -0
- package/dist/browserify/iframe/index.html +13394 -0
- package/dist/browserify/node-process/bundle.js +13390 -0
- package/dist/browserify/node-thread/bundle.js +13390 -0
- package/dist/browserify/webview/index.html +13402 -0
- package/dist/browserify/worker-executor/bundle.js +13392 -0
- package/dist/browserify/worker-pool/bundle.js +9 -0
- package/dist/browserify/worker-pool/index.html +13394 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [6.7.2]
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fix missing execution environment bundles ([#2734](https://github.com/MetaMask/snaps/pull/2734))
|
|
12
|
+
|
|
9
13
|
## [6.7.1]
|
|
10
14
|
### Fixed
|
|
11
15
|
- Fix invalid types in type declaration in some cases ([#2714](https://github.com/MetaMask/snaps/pull/2714))
|
|
@@ -255,7 +259,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
255
259
|
- The version of the package no longer needs to match the version of all other
|
|
256
260
|
MetaMask Snaps packages.
|
|
257
261
|
|
|
258
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.7.
|
|
262
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.7.2...HEAD
|
|
263
|
+
[6.7.2]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.7.1...@metamask/snaps-execution-environments@6.7.2
|
|
259
264
|
[6.7.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.7.0...@metamask/snaps-execution-environments@6.7.1
|
|
260
265
|
[6.7.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.6.2...@metamask/snaps-execution-environments@6.7.0
|
|
261
266
|
[6.6.2]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.6.1...@metamask/snaps-execution-environments@6.6.2
|