@metamask/snaps-execution-environments 6.0.0 → 6.0.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 +11 -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/bundle.js +5 -5
- package/dist/browserify/worker-executor/bundle.js +3 -3
- package/dist/browserify/worker-pool/bundle.js +3 -3
- package/dist/{chunk-UGQV3NZQ.mjs → chunk-5SKATRE7.mjs} +2 -2
- package/dist/{chunk-MD6BQLEH.js → chunk-7XTE6JPO.js} +3 -3
- package/dist/{chunk-VZLDGGRV.js → chunk-HIGOKKWF.js} +2 -1
- package/dist/chunk-HIGOKKWF.js.map +1 -0
- package/dist/{chunk-RYZWYBI2.mjs → chunk-KXMV7RQH.mjs} +2 -1
- package/dist/{chunk-RYZWYBI2.mjs.map → chunk-KXMV7RQH.mjs.map} +1 -1
- package/dist/{chunk-MPITURZG.js → chunk-LEE2ALZ4.js} +3 -3
- package/dist/{chunk-RVEFZW4H.mjs → chunk-TVGFZHMW.mjs} +2 -2
- package/dist/{chunk-2WJGRNAZ.mjs → chunk-UOMROH3T.mjs} +2 -2
- package/dist/{chunk-C3F64ZFC.js → chunk-VONENPGN.js} +3 -3
- package/dist/{chunk-NYAH3BJI.mjs → chunk-YIS2FW72.mjs} +2 -2
- package/dist/{chunk-WDXE7PNC.js → chunk-ZHJC4KKA.js} +3 -3
- package/dist/common/BaseSnapExecutor.js +2 -2
- package/dist/common/BaseSnapExecutor.mjs +1 -1
- package/dist/iframe/IFrameSnapExecutor.js +3 -3
- package/dist/iframe/IFrameSnapExecutor.mjs +2 -2
- package/dist/iframe/index.js +3 -3
- package/dist/iframe/index.mjs +2 -2
- package/dist/node-process/ChildProcessSnapExecutor.js +3 -3
- package/dist/node-process/ChildProcessSnapExecutor.mjs +2 -2
- package/dist/node-process/index.js +3 -3
- package/dist/node-process/index.mjs +2 -2
- package/dist/node-thread/ThreadSnapExecutor.js +3 -3
- package/dist/node-thread/ThreadSnapExecutor.mjs +2 -2
- package/dist/node-thread/index.js +3 -3
- package/dist/node-thread/index.mjs +2 -2
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/common/validation.d.ts +2 -2
- package/dist/webworker/executor/WebWorkerSnapExecutor.js +3 -3
- package/dist/webworker/executor/WebWorkerSnapExecutor.mjs +2 -2
- package/dist/webworker/executor/index.js +3 -3
- package/dist/webworker/executor/index.mjs +2 -2
- package/package.json +3 -3
- package/dist/chunk-VZLDGGRV.js.map +0 -1
- /package/dist/{chunk-UGQV3NZQ.mjs.map → chunk-5SKATRE7.mjs.map} +0 -0
- /package/dist/{chunk-MD6BQLEH.js.map → chunk-7XTE6JPO.js.map} +0 -0
- /package/dist/{chunk-MPITURZG.js.map → chunk-LEE2ALZ4.js.map} +0 -0
- /package/dist/{chunk-RVEFZW4H.mjs.map → chunk-TVGFZHMW.mjs.map} +0 -0
- /package/dist/{chunk-2WJGRNAZ.mjs.map → chunk-UOMROH3T.mjs.map} +0 -0
- /package/dist/{chunk-C3F64ZFC.js.map → chunk-VONENPGN.js.map} +0 -0
- /package/dist/{chunk-NYAH3BJI.mjs.map → chunk-YIS2FW72.mjs.map} +0 -0
- /package/dist/{chunk-WDXE7PNC.js.map → chunk-ZHJC4KKA.js.map} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [6.0.2]
|
|
10
|
+
### Fixed
|
|
11
|
+
- Throw an error if starting Snap has no exports ([#2357](https://github.com/MetaMask/snaps/pull/2357))
|
|
12
|
+
|
|
13
|
+
## [6.0.1]
|
|
14
|
+
### Fixed
|
|
15
|
+
- Allow `null` in `FormSubmitEventStruct` form state ([#2333](https://github.com/MetaMask/snaps/pull/2333))
|
|
16
|
+
|
|
9
17
|
## [6.0.0]
|
|
10
18
|
### Removed
|
|
11
19
|
- **BREAKING:** Remove broken `ethereum` properties ([#2296](https://github.com/MetaMask/snaps/pull/2296))
|
|
@@ -176,7 +184,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
176
184
|
- The version of the package no longer needs to match the version of all other
|
|
177
185
|
MetaMask Snaps packages.
|
|
178
186
|
|
|
179
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.0.
|
|
187
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.0.2...HEAD
|
|
188
|
+
[6.0.2]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.0.1...@metamask/snaps-execution-environments@6.0.2
|
|
189
|
+
[6.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.0.0...@metamask/snaps-execution-environments@6.0.1
|
|
180
190
|
[6.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@5.0.4...@metamask/snaps-execution-environments@6.0.0
|
|
181
191
|
[5.0.4]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@5.0.3...@metamask/snaps-execution-environments@5.0.4
|
|
182
192
|
[5.0.3]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@5.0.2...@metamask/snaps-execution-environments@5.0.3
|