@metamask/snaps-execution-environments 6.0.1 → 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.
Files changed (47) hide show
  1. package/CHANGELOG.md +6 -1
  2. package/dist/browserify/iframe/bundle.js +1 -1
  3. package/dist/browserify/node-process/bundle.js +1 -1
  4. package/dist/browserify/node-thread/bundle.js +1 -1
  5. package/dist/browserify/webview/bundle.js +1 -1
  6. package/dist/browserify/worker-executor/bundle.js +1 -1
  7. package/dist/{chunk-UGQV3NZQ.mjs → chunk-5SKATRE7.mjs} +2 -2
  8. package/dist/{chunk-MD6BQLEH.js → chunk-7XTE6JPO.js} +3 -3
  9. package/dist/{chunk-VZLDGGRV.js → chunk-HIGOKKWF.js} +2 -1
  10. package/dist/chunk-HIGOKKWF.js.map +1 -0
  11. package/dist/{chunk-RYZWYBI2.mjs → chunk-KXMV7RQH.mjs} +2 -1
  12. package/dist/{chunk-RYZWYBI2.mjs.map → chunk-KXMV7RQH.mjs.map} +1 -1
  13. package/dist/{chunk-MPITURZG.js → chunk-LEE2ALZ4.js} +3 -3
  14. package/dist/{chunk-RVEFZW4H.mjs → chunk-TVGFZHMW.mjs} +2 -2
  15. package/dist/{chunk-2WJGRNAZ.mjs → chunk-UOMROH3T.mjs} +2 -2
  16. package/dist/{chunk-C3F64ZFC.js → chunk-VONENPGN.js} +3 -3
  17. package/dist/{chunk-NYAH3BJI.mjs → chunk-YIS2FW72.mjs} +2 -2
  18. package/dist/{chunk-WDXE7PNC.js → chunk-ZHJC4KKA.js} +3 -3
  19. package/dist/common/BaseSnapExecutor.js +2 -2
  20. package/dist/common/BaseSnapExecutor.mjs +1 -1
  21. package/dist/iframe/IFrameSnapExecutor.js +3 -3
  22. package/dist/iframe/IFrameSnapExecutor.mjs +2 -2
  23. package/dist/iframe/index.js +3 -3
  24. package/dist/iframe/index.mjs +2 -2
  25. package/dist/node-process/ChildProcessSnapExecutor.js +3 -3
  26. package/dist/node-process/ChildProcessSnapExecutor.mjs +2 -2
  27. package/dist/node-process/index.js +3 -3
  28. package/dist/node-process/index.mjs +2 -2
  29. package/dist/node-thread/ThreadSnapExecutor.js +3 -3
  30. package/dist/node-thread/ThreadSnapExecutor.mjs +2 -2
  31. package/dist/node-thread/index.js +3 -3
  32. package/dist/node-thread/index.mjs +2 -2
  33. package/dist/tsconfig.build.tsbuildinfo +1 -1
  34. package/dist/webworker/executor/WebWorkerSnapExecutor.js +3 -3
  35. package/dist/webworker/executor/WebWorkerSnapExecutor.mjs +2 -2
  36. package/dist/webworker/executor/index.js +3 -3
  37. package/dist/webworker/executor/index.mjs +2 -2
  38. package/package.json +2 -2
  39. package/dist/chunk-VZLDGGRV.js.map +0 -1
  40. /package/dist/{chunk-UGQV3NZQ.mjs.map → chunk-5SKATRE7.mjs.map} +0 -0
  41. /package/dist/{chunk-MD6BQLEH.js.map → chunk-7XTE6JPO.js.map} +0 -0
  42. /package/dist/{chunk-MPITURZG.js.map → chunk-LEE2ALZ4.js.map} +0 -0
  43. /package/dist/{chunk-RVEFZW4H.mjs.map → chunk-TVGFZHMW.mjs.map} +0 -0
  44. /package/dist/{chunk-2WJGRNAZ.mjs.map → chunk-UOMROH3T.mjs.map} +0 -0
  45. /package/dist/{chunk-C3F64ZFC.js.map → chunk-VONENPGN.js.map} +0 -0
  46. /package/dist/{chunk-NYAH3BJI.mjs.map → chunk-YIS2FW72.mjs.map} +0 -0
  47. /package/dist/{chunk-WDXE7PNC.js.map → chunk-ZHJC4KKA.js.map} +0 -0
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.0.2]
10
+ ### Fixed
11
+ - Throw an error if starting Snap has no exports ([#2357](https://github.com/MetaMask/snaps/pull/2357))
12
+
9
13
  ## [6.0.1]
10
14
  ### Fixed
11
15
  - Allow `null` in `FormSubmitEventStruct` form state ([#2333](https://github.com/MetaMask/snaps/pull/2333))
@@ -180,7 +184,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
180
184
  - The version of the package no longer needs to match the version of all other
181
185
  MetaMask Snaps packages.
182
186
 
183
- [Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.0.1...HEAD
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
184
189
  [6.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.0.0...@metamask/snaps-execution-environments@6.0.1
185
190
  [6.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@5.0.4...@metamask/snaps-execution-environments@6.0.0
186
191
  [5.0.4]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@5.0.3...@metamask/snaps-execution-environments@5.0.4