@metamask/snaps-execution-environments 1.0.0-prerelease.1 → 1.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 +15 -1
- package/dist/browserify/iframe/bundle.js +3 -3
- package/dist/browserify/iframe/index.html +45 -23
- package/dist/browserify/node-process/bundle.js +46 -24
- package/dist/browserify/node-thread/bundle.js +46 -24
- package/dist/browserify/offscreen/bundle.js +2 -2
- package/dist/browserify/offscreen/index.html +45 -23
- package/dist/common/BaseSnapExecutor.js +1 -1
- package/dist/common/BaseSnapExecutor.js.map +1 -1
- package/dist/common/lockdown/lockdown-more.js +1 -1
- package/dist/common/lockdown/lockdown-more.js.map +1 -1
- package/dist/common/lockdown/lockdown.js +1 -1
- package/dist/common/lockdown/lockdown.js.map +1 -1
- package/dist/common/utils.js +15 -1
- package/dist/common/utils.js.map +1 -1
- package/package.json +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.0.1]
|
|
10
|
+
### Changed
|
|
11
|
+
- No changes this release.
|
|
12
|
+
|
|
13
|
+
## [1.0.0]
|
|
14
|
+
### Changed
|
|
15
|
+
- Update LavaMoat packages to latest versions ([#1657](https://github.com/MetaMask/snaps/pull/1657))
|
|
16
|
+
- Unblock `eth_requestAccounts` and `personal_sign` ([#1601](https://github.com/MetaMask/snaps/pull/1601))
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
- Pass correct scuttle args ([#1654](https://github.com/MetaMask/snaps/pull/1654))
|
|
20
|
+
|
|
9
21
|
## [1.0.0-prerelease.1]
|
|
10
22
|
### Changed
|
|
11
23
|
- **BREAKING:** Block `wallet_requestPermissions` ([#1371](https://github.com/MetaMask/snaps/pull/1371))
|
|
@@ -249,7 +261,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
249
261
|
- 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.
|
|
250
262
|
- Add endowments to the global `self` in addition to `window` ([#263](https://github.com/MetaMask/snaps-monorepo/pull/263))
|
|
251
263
|
|
|
252
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/v1.0.
|
|
264
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/v1.0.1...HEAD
|
|
265
|
+
[1.0.1]: https://github.com/MetaMask/snaps/compare/v1.0.0...v1.0.1
|
|
266
|
+
[1.0.0]: https://github.com/MetaMask/snaps/compare/v1.0.0-prerelease.1...v1.0.0
|
|
253
267
|
[1.0.0-prerelease.1]: https://github.com/MetaMask/snaps/compare/v0.32.2...v1.0.0-prerelease.1
|
|
254
268
|
[0.32.2]: https://github.com/MetaMask/snaps/compare/v0.32.1...v0.32.2
|
|
255
269
|
[0.32.1]: https://github.com/MetaMask/snaps/compare/v0.32.0...v0.32.1
|