@metamask/snaps-execution-environments 6.10.0 → 6.12.0

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 (48) hide show
  1. package/CHANGELOG.md +21 -1
  2. package/dist/browserify/iframe/bundle.js +5 -5
  3. package/dist/browserify/node-process/bundle.js +4 -4
  4. package/dist/browserify/node-thread/bundle.js +4 -4
  5. package/dist/browserify/webview/index.html +5 -5
  6. package/dist/browserify/worker-executor/bundle.js +5 -5
  7. package/dist/browserify/worker-pool/bundle.js +5 -5
  8. package/dist/common/BaseSnapExecutor.cjs +9 -7
  9. package/dist/common/BaseSnapExecutor.cjs.map +1 -1
  10. package/dist/common/BaseSnapExecutor.d.cts.map +1 -1
  11. package/dist/common/BaseSnapExecutor.d.mts.map +1 -1
  12. package/dist/common/BaseSnapExecutor.mjs +9 -7
  13. package/dist/common/BaseSnapExecutor.mjs.map +1 -1
  14. package/dist/common/SnapProvider.cjs +14 -0
  15. package/dist/common/SnapProvider.cjs.map +1 -0
  16. package/dist/common/SnapProvider.d.cts +6 -0
  17. package/dist/common/SnapProvider.d.cts.map +1 -0
  18. package/dist/common/SnapProvider.d.mts +6 -0
  19. package/dist/common/SnapProvider.d.mts.map +1 -0
  20. package/dist/common/SnapProvider.mjs +10 -0
  21. package/dist/common/SnapProvider.mjs.map +1 -0
  22. package/dist/common/commands.cjs +1 -0
  23. package/dist/common/commands.cjs.map +1 -1
  24. package/dist/common/commands.d.cts.map +1 -1
  25. package/dist/common/commands.d.mts.map +1 -1
  26. package/dist/common/commands.mjs +1 -0
  27. package/dist/common/commands.mjs.map +1 -1
  28. package/dist/common/utils.cjs +0 -4
  29. package/dist/common/utils.cjs.map +1 -1
  30. package/dist/common/utils.d.cts.map +1 -1
  31. package/dist/common/utils.d.mts.map +1 -1
  32. package/dist/common/utils.mjs +0 -4
  33. package/dist/common/utils.mjs.map +1 -1
  34. package/dist/iframe/IFrameSnapExecutor.mjs +1 -2
  35. package/dist/iframe/IFrameSnapExecutor.mjs.map +1 -1
  36. package/dist/node-process/ChildProcessSnapExecutor.mjs +1 -2
  37. package/dist/node-process/ChildProcessSnapExecutor.mjs.map +1 -1
  38. package/dist/node-thread/ThreadSnapExecutor.mjs +1 -2
  39. package/dist/node-thread/ThreadSnapExecutor.mjs.map +1 -1
  40. package/dist/proxy/ProxySnapExecutor.mjs +1 -2
  41. package/dist/proxy/ProxySnapExecutor.mjs.map +1 -1
  42. package/dist/webview/WebViewExecutorStream.mjs +1 -2
  43. package/dist/webview/WebViewExecutorStream.mjs.map +1 -1
  44. package/dist/webworker/executor/WebWorkerSnapExecutor.mjs +1 -2
  45. package/dist/webworker/executor/WebWorkerSnapExecutor.mjs.map +1 -1
  46. package/dist/webworker/pool/WebWorkerPool.mjs +1 -2
  47. package/dist/webworker/pool/WebWorkerPool.mjs.map +1 -1
  48. package/package.json +10 -10
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.12.0]
11
+
12
+ ### Changed
13
+
14
+ - Bump MetaMask dependencies ([#2946](https://github.com/MetaMask/snaps/pull/2946), [#3007](https://github.com/MetaMask/snaps/pull/3007), [#3003](https://github.com/MetaMask/snaps/pull/3003), [#2989](https://github.com/MetaMask/snaps/pull/2989))
15
+ - Unblock `eth_signTypedData` ([#2969](https://github.com/MetaMask/snaps/pull/2969))
16
+
17
+ ### Fixed
18
+
19
+ - Skip unnecesary provider initialization ([#2967](https://github.com/MetaMask/snaps/pull/2967))
20
+
21
+ ## [6.11.0]
22
+
23
+ ### Added
24
+
25
+ - Allow Snap exports to have async initialization logic ([#2918](https://github.com/MetaMask/snaps/pull/2918))
26
+ - Add support for `onSettingsPage` export ([#2911](https://github.com/MetaMask/snaps/pull/2911))
27
+
10
28
  ## [6.10.0]
11
29
 
12
30
  ### Added
@@ -397,7 +415,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
397
415
  - The version of the package no longer needs to match the version of all other
398
416
  MetaMask Snaps packages.
399
417
 
400
- [Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.10.0...HEAD
418
+ [Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.12.0...HEAD
419
+ [6.12.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.11.0...@metamask/snaps-execution-environments@6.12.0
420
+ [6.11.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.10.0...@metamask/snaps-execution-environments@6.11.0
401
421
  [6.10.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.9.2...@metamask/snaps-execution-environments@6.10.0
402
422
  [6.9.2]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.9.1...@metamask/snaps-execution-environments@6.9.2
403
423
  [6.9.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@6.9.0...@metamask/snaps-execution-environments@6.9.1