@metamask/snaps-execution-environments 3.4.3 → 3.5.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.
- package/CHANGELOG.md +10 -1
- package/dist/browserify/iframe/bundle.js +5 -5
- package/dist/browserify/iframe/index.html +1131 -388
- package/dist/browserify/node-process/bundle.js +1135 -392
- package/dist/browserify/node-thread/bundle.js +1135 -392
- package/dist/browserify/offscreen/bundle.js +5 -5
- package/dist/browserify/offscreen/index.html +1131 -388
- package/dist/browserify/worker-executor/bundle.js +1136 -393
- package/dist/browserify/worker-pool/bundle.js +5 -5
- package/dist/browserify/worker-pool/index.html +1131 -388
- package/dist/cjs/common/commands.js +9 -0
- package/dist/cjs/common/commands.js.map +1 -1
- package/dist/cjs/common/validation.js +13 -0
- package/dist/cjs/common/validation.js.map +1 -1
- package/dist/cjs/offscreen/index.js +2 -2
- package/dist/cjs/offscreen/index.js.map +1 -1
- package/dist/cjs/{offscreen/OffscreenSnapExecutor.js → proxy/ProxySnapExecutor.js} +25 -15
- package/dist/cjs/proxy/ProxySnapExecutor.js.map +1 -0
- package/dist/esm/common/commands.js +10 -1
- package/dist/esm/common/commands.js.map +1 -1
- package/dist/esm/common/validation.js +14 -0
- package/dist/esm/common/validation.js.map +1 -1
- package/dist/esm/offscreen/index.js +2 -2
- package/dist/esm/offscreen/index.js.map +1 -1
- package/dist/esm/{offscreen/OffscreenSnapExecutor.js → proxy/ProxySnapExecutor.js} +24 -19
- package/dist/esm/proxy/ProxySnapExecutor.js.map +1 -0
- package/dist/types/common/validation.d.ts +17 -0
- package/dist/types/{offscreen/OffscreenSnapExecutor.d.ts → proxy/ProxySnapExecutor.d.ts} +9 -9
- package/package.json +11 -11
- package/dist/cjs/offscreen/OffscreenSnapExecutor.js.map +0 -1
- package/dist/esm/offscreen/OffscreenSnapExecutor.js.map +0 -1
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
|
+
## [3.5.0]
|
|
10
|
+
### Added
|
|
11
|
+
- Add support for signature insights ([#2074](https://github.com/MetaMask/snaps/pull/2074))
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Bump SES and LavaMoat ([#2105](https://github.com/MetaMask/snaps/pull/2105))
|
|
15
|
+
- Bump several MetaMask dependencies ([#2054](https://github.com/MetaMask/snaps/pull/2054), [#2100](https://github.com/MetaMask/snaps/pull/2100))
|
|
16
|
+
|
|
9
17
|
## [3.4.3]
|
|
10
18
|
### Changed
|
|
11
19
|
- Move iframe bundle to HTML body ([#2045](https://github.com/MetaMask/snaps/pull/2045))
|
|
@@ -120,7 +128,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
120
128
|
- The version of the package no longer needs to match the version of all other
|
|
121
129
|
MetaMask Snaps packages.
|
|
122
130
|
|
|
123
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@3.
|
|
131
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@3.5.0...HEAD
|
|
132
|
+
[3.5.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@3.4.3...@metamask/snaps-execution-environments@3.5.0
|
|
124
133
|
[3.4.3]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@3.4.2...@metamask/snaps-execution-environments@3.4.3
|
|
125
134
|
[3.4.2]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@3.4.1...@metamask/snaps-execution-environments@3.4.2
|
|
126
135
|
[3.4.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@3.4.0...@metamask/snaps-execution-environments@3.4.1
|