@metamask/snaps-execution-environments 1.0.0-prerelease.1 → 1.0.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 +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,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.0.0]
|
|
10
|
+
### Changed
|
|
11
|
+
- Update LavaMoat packages to latest versions ([#1657](https://github.com/MetaMask/snaps/pull/1657))
|
|
12
|
+
- Unblock `eth_requestAccounts` and `personal_sign` ([#1601](https://github.com/MetaMask/snaps/pull/1601))
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- Pass correct scuttle args ([#1654](https://github.com/MetaMask/snaps/pull/1654))
|
|
16
|
+
|
|
9
17
|
## [1.0.0-prerelease.1]
|
|
10
18
|
### Changed
|
|
11
19
|
- **BREAKING:** Block `wallet_requestPermissions` ([#1371](https://github.com/MetaMask/snaps/pull/1371))
|
|
@@ -249,7 +257,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
249
257
|
- 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
258
|
- Add endowments to the global `self` in addition to `window` ([#263](https://github.com/MetaMask/snaps-monorepo/pull/263))
|
|
251
259
|
|
|
252
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/v1.0.0
|
|
260
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/v1.0.0...HEAD
|
|
261
|
+
[1.0.0]: https://github.com/MetaMask/snaps/compare/v1.0.0-prerelease.1...v1.0.0
|
|
253
262
|
[1.0.0-prerelease.1]: https://github.com/MetaMask/snaps/compare/v0.32.2...v1.0.0-prerelease.1
|
|
254
263
|
[0.32.2]: https://github.com/MetaMask/snaps/compare/v0.32.1...v0.32.2
|
|
255
264
|
[0.32.1]: https://github.com/MetaMask/snaps/compare/v0.32.0...v0.32.1
|