@metamask/snaps-execution-environments 2.0.0 → 2.0.1
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/iframe/index.html +7569 -7166
- package/dist/browserify/node-process/bundle.js +7570 -7167
- package/dist/browserify/node-thread/bundle.js +7570 -7167
- package/dist/browserify/offscreen/index.html +7569 -7166
- package/dist/browserify/worker-executor/bundle.js +7574 -7171
- package/dist/browserify/worker-pool/index.html +7569 -7166
- package/dist/cjs/common/BaseSnapExecutor.js +12 -15
- package/dist/cjs/common/BaseSnapExecutor.js.map +1 -1
- package/dist/cjs/common/utils.js +9 -0
- package/dist/cjs/common/utils.js.map +1 -1
- package/dist/esm/common/BaseSnapExecutor.js +13 -11
- package/dist/esm/common/BaseSnapExecutor.js.map +1 -1
- package/dist/esm/common/utils.js +12 -1
- package/dist/esm/common/utils.js.map +1 -1
- package/dist/types/common/utils.d.ts +7 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [2.0.1]
|
|
10
|
+
### Changed
|
|
11
|
+
- Remove unmaintained OpenRPC doc for execution environment ([#1782](https://github.com/MetaMask/snaps/pull/1782))
|
|
12
|
+
- Update LavaMoat ([#1754](https://github.com/MetaMask/snaps/pull/1754))
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- Allow passing `undefined` parameters to `request()` ([#1776](https://github.com/MetaMask/snaps/pull/1776))
|
|
16
|
+
- Fix an issue where errors would not correctly be returned ([#1772](https://github.com/MetaMask/snaps/pull/1772))
|
|
17
|
+
|
|
9
18
|
## [2.0.0]
|
|
10
19
|
### Changed
|
|
11
20
|
- Initial stable release from main branch ([#1757](https://github.com/MetaMask/snaps/pull/1757))
|
|
@@ -62,7 +71,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
62
71
|
- The version of the package no longer needs to match the version of all other
|
|
63
72
|
MetaMask Snaps packages.
|
|
64
73
|
|
|
65
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@2.0.
|
|
74
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@2.0.1...HEAD
|
|
75
|
+
[2.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@2.0.0...@metamask/snaps-execution-environments@2.0.1
|
|
66
76
|
[2.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@0.39.0-flask.1...@metamask/snaps-execution-environments@2.0.0
|
|
67
77
|
[0.39.0-flask.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@0.38.3-flask.1...@metamask/snaps-execution-environments@0.39.0-flask.1
|
|
68
78
|
[0.38.3-flask.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@0.38.2-flask.1...@metamask/snaps-execution-environments@0.38.3-flask.1
|