@metamask/snaps-execution-environments 0.33.0-flask.1 → 0.34.0-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 +54 -44
- package/dist/browserify/iframe/bundle.js +1533 -1335
- package/dist/browserify/node-process/bundle.js +1129 -507
- package/dist/browserify/node-thread/bundle.js +1129 -507
- package/dist/browserify/offscreen/bundle.js +764 -298
- package/dist/browserify/worker-executor/bundle.js +1534 -1336
- package/dist/browserify/worker-pool/bundle.js +766 -300
- package/dist/common/BaseSnapExecutor.js +11 -4
- package/dist/common/BaseSnapExecutor.js.map +1 -1
- package/dist/common/globalEvents.d.ts +1 -0
- package/dist/common/validation.d.ts +1 -1
- package/package.json +5 -5
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.34.0-flask.1]
|
|
10
|
+
### Changed
|
|
11
|
+
- Improve JSON sanitization ([#1405](https://github.com/MetaMask/snaps/pull/1405), [#1457](https://github.com/MetaMask/snaps/pull/1457))
|
|
12
|
+
|
|
13
|
+
## [0.33.1-flask.1]
|
|
14
|
+
### Changed
|
|
15
|
+
- No changes this release.
|
|
16
|
+
|
|
9
17
|
## [0.33.0-flask.1]
|
|
10
18
|
### Changed
|
|
11
19
|
- **BREAKING:** Block `wallet_requestPermissions` ([#1371](https://github.com/MetaMask/snaps-monorepo/pull/1371))
|
|
@@ -252,47 +260,49 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
252
260
|
- 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.
|
|
253
261
|
- Add endowments to the global `self` in addition to `window` ([#263](https://github.com/MetaMask/snaps-monorepo/pull/263))
|
|
254
262
|
|
|
255
|
-
[Unreleased]: https://github.com/MetaMask/snaps
|
|
256
|
-
[0.
|
|
257
|
-
[0.
|
|
258
|
-
[0.
|
|
259
|
-
[0.32.
|
|
260
|
-
[0.
|
|
261
|
-
[0.
|
|
262
|
-
[0.
|
|
263
|
-
[0.
|
|
264
|
-
[0.
|
|
265
|
-
[0.
|
|
266
|
-
[0.
|
|
267
|
-
[0.
|
|
268
|
-
[0.26.
|
|
269
|
-
[0.
|
|
270
|
-
[0.
|
|
271
|
-
[0.
|
|
272
|
-
[0.
|
|
273
|
-
[0.
|
|
274
|
-
[0.
|
|
275
|
-
[0.22.
|
|
276
|
-
[0.22.
|
|
277
|
-
[0.
|
|
278
|
-
[0.
|
|
279
|
-
[0.
|
|
280
|
-
[0.
|
|
281
|
-
[0.
|
|
282
|
-
[0.
|
|
283
|
-
[0.
|
|
284
|
-
[0.
|
|
285
|
-
[0.
|
|
286
|
-
[0.
|
|
287
|
-
[0.
|
|
288
|
-
[0.
|
|
289
|
-
[0.
|
|
290
|
-
[0.
|
|
291
|
-
[0.
|
|
292
|
-
[0.
|
|
293
|
-
[0.10.
|
|
294
|
-
[0.10.
|
|
295
|
-
[0.10.
|
|
296
|
-
[0.10.
|
|
297
|
-
[0.10.
|
|
298
|
-
[0.10.
|
|
263
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/v0.34.0-flask.1...HEAD
|
|
264
|
+
[0.34.0-flask.1]: https://github.com/MetaMask/snaps/compare/v0.33.1-flask.1...v0.34.0-flask.1
|
|
265
|
+
[0.33.1-flask.1]: https://github.com/MetaMask/snaps/compare/v0.33.0-flask.1...v0.33.1-flask.1
|
|
266
|
+
[0.33.0-flask.1]: https://github.com/MetaMask/snaps/compare/v0.32.2...v0.33.0-flask.1
|
|
267
|
+
[0.32.2]: https://github.com/MetaMask/snaps/compare/v0.32.1...v0.32.2
|
|
268
|
+
[0.32.1]: https://github.com/MetaMask/snaps/compare/v0.32.0...v0.32.1
|
|
269
|
+
[0.32.0]: https://github.com/MetaMask/snaps/compare/v0.31.0...v0.32.0
|
|
270
|
+
[0.31.0]: https://github.com/MetaMask/snaps/compare/v0.30.0...v0.31.0
|
|
271
|
+
[0.30.0]: https://github.com/MetaMask/snaps/compare/v0.29.0...v0.30.0
|
|
272
|
+
[0.29.0]: https://github.com/MetaMask/snaps/compare/v0.28.0...v0.29.0
|
|
273
|
+
[0.28.0]: https://github.com/MetaMask/snaps/compare/v0.27.1...v0.28.0
|
|
274
|
+
[0.27.1]: https://github.com/MetaMask/snaps/compare/v0.27.0...v0.27.1
|
|
275
|
+
[0.27.0]: https://github.com/MetaMask/snaps/compare/v0.26.2...v0.27.0
|
|
276
|
+
[0.26.2]: https://github.com/MetaMask/snaps/compare/v0.26.1...v0.26.2
|
|
277
|
+
[0.26.1]: https://github.com/MetaMask/snaps/compare/v0.26.0...v0.26.1
|
|
278
|
+
[0.26.0]: https://github.com/MetaMask/snaps/compare/v0.25.0...v0.26.0
|
|
279
|
+
[0.25.0]: https://github.com/MetaMask/snaps/compare/v0.24.1...v0.25.0
|
|
280
|
+
[0.24.1]: https://github.com/MetaMask/snaps/compare/v0.24.0...v0.24.1
|
|
281
|
+
[0.24.0]: https://github.com/MetaMask/snaps/compare/v0.23.0...v0.24.0
|
|
282
|
+
[0.23.0]: https://github.com/MetaMask/snaps/compare/v0.22.3...v0.23.0
|
|
283
|
+
[0.22.3]: https://github.com/MetaMask/snaps/compare/v0.22.2...v0.22.3
|
|
284
|
+
[0.22.2]: https://github.com/MetaMask/snaps/compare/v0.22.1...v0.22.2
|
|
285
|
+
[0.22.1]: https://github.com/MetaMask/snaps/compare/v0.22.0...v0.22.1
|
|
286
|
+
[0.22.0]: https://github.com/MetaMask/snaps/compare/v0.21.0...v0.22.0
|
|
287
|
+
[0.21.0]: https://github.com/MetaMask/snaps/compare/v0.20.0...v0.21.0
|
|
288
|
+
[0.20.0]: https://github.com/MetaMask/snaps/compare/v0.19.1...v0.20.0
|
|
289
|
+
[0.19.1]: https://github.com/MetaMask/snaps/compare/v0.19.0...v0.19.1
|
|
290
|
+
[0.19.0]: https://github.com/MetaMask/snaps/compare/v0.18.1...v0.19.0
|
|
291
|
+
[0.18.1]: https://github.com/MetaMask/snaps/compare/v0.18.0...v0.18.1
|
|
292
|
+
[0.18.0]: https://github.com/MetaMask/snaps/compare/v0.17.0...v0.18.0
|
|
293
|
+
[0.17.0]: https://github.com/MetaMask/snaps/compare/v0.16.0...v0.17.0
|
|
294
|
+
[0.16.0]: https://github.com/MetaMask/snaps/compare/v0.15.0...v0.16.0
|
|
295
|
+
[0.15.0]: https://github.com/MetaMask/snaps/compare/v0.14.0...v0.15.0
|
|
296
|
+
[0.14.0]: https://github.com/MetaMask/snaps/compare/v0.13.0...v0.14.0
|
|
297
|
+
[0.13.0]: https://github.com/MetaMask/snaps/compare/v0.12.0...v0.13.0
|
|
298
|
+
[0.12.0]: https://github.com/MetaMask/snaps/compare/v0.11.1...v0.12.0
|
|
299
|
+
[0.11.1]: https://github.com/MetaMask/snaps/compare/v0.11.0...v0.11.1
|
|
300
|
+
[0.11.0]: https://github.com/MetaMask/snaps/compare/v0.10.7...v0.11.0
|
|
301
|
+
[0.10.7]: https://github.com/MetaMask/snaps/compare/v0.10.6...v0.10.7
|
|
302
|
+
[0.10.6]: https://github.com/MetaMask/snaps/compare/v0.10.5...v0.10.6
|
|
303
|
+
[0.10.5]: https://github.com/MetaMask/snaps/compare/v0.10.4...v0.10.5
|
|
304
|
+
[0.10.4]: https://github.com/MetaMask/snaps/compare/v0.10.3...v0.10.4
|
|
305
|
+
[0.10.3]: https://github.com/MetaMask/snaps/compare/v0.10.2...v0.10.3
|
|
306
|
+
[0.10.2]: https://github.com/MetaMask/snaps/compare/v0.10.1...v0.10.2
|
|
307
|
+
[0.10.1]: https://github.com/MetaMask/snaps/compare/v0.10.0...v0.10.1
|
|
308
|
+
[0.10.0]: https://github.com/MetaMask/snaps/releases/tag/v0.10.0
|