@metamask/snaps-execution-environments 0.35.0-flask.1 → 0.35.2-flask.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 +12 -0
- package/dist/browserify/iframe/index.html +12128 -0
- package/dist/browserify/node-process/bundle.js +12127 -0
- package/dist/browserify/node-thread/bundle.js +12127 -0
- package/dist/browserify/offscreen/bundle.js +10 -0
- package/dist/browserify/offscreen/index.html +12128 -0
- package/dist/browserify/worker-executor/bundle.js +12131 -0
- package/dist/browserify/worker-pool/bundle.js +10 -0
- package/dist/browserify/worker-pool/index.html +12128 -0
- package/package.json +5 -33
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
|
+
## [0.35.2-flask.1]
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fix type issue introduced by [#1532](https://github.com/MetaMask/snaps/pull/1532) ([#1541](https://github.com/MetaMask/snaps/pull/1541))
|
|
12
|
+
|
|
13
|
+
## [0.35.1-flask.1]
|
|
14
|
+
### Changed
|
|
15
|
+
- No changes this release.
|
|
16
|
+
|
|
9
17
|
## [0.35.0-flask.1]
|
|
10
18
|
### Changed
|
|
11
19
|
- **BREAKING:** Build packages as both CJS and ESM ([#1519](https://github.com/MetaMask/snaps/pull/1519), ([#1532](https://github.com/MetaMask/snaps/pull/1532)))
|
|
@@ -274,7 +282,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
274
282
|
- Previously, default endowments were specified in the execution environment itself. Now, all endowments must be specified in the `executeSnap` RPC parameters, except for the `wallet` API object.
|
|
275
283
|
- Add endowments to the global `self` in addition to `window` ([#263](https://github.com/MetaMask/snaps-monorepo/pull/263))
|
|
276
284
|
|
|
277
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/v0.35.
|
|
285
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/v0.35.2-flask.1...HEAD
|
|
286
|
+
[0.35.2-flask.1]: https://github.com/MetaMask/snaps/compare/v0.35.1-flask.1...v0.35.2-flask.1
|
|
287
|
+
[0.35.1-flask.1]: https://github.com/MetaMask/snaps/compare/v0.35.0-flask.1...v0.35.1-flask.1
|
|
278
288
|
[0.35.0-flask.1]: https://github.com/MetaMask/snaps/compare/v0.34.1-flask.1...v0.35.0-flask.1
|
|
279
289
|
[0.34.1-flask.1]: https://github.com/MetaMask/snaps/compare/v0.34.0-flask.1...v0.34.1-flask.1
|
|
280
290
|
[0.34.0-flask.1]: https://github.com/MetaMask/snaps/compare/v0.33.1-flask.1...v0.34.0-flask.1
|