@metamask/snaps-execution-environments 1.0.0 → 1.0.2
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 +1 -1
- package/dist/browserify/node-process/bundle.js +1 -1
- package/dist/browserify/node-thread/bundle.js +1 -1
- package/dist/common/endowments/network.d.ts +15 -1
- package/dist/common/endowments/network.js +8 -1
- package/dist/common/endowments/network.js.map +1 -1
- package/package.json +3 -3
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.2]
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fix hardening for Request, Headers and Response endowments ([#1695](https://github.com/MetaMask/snaps/pull/1695))
|
|
12
|
+
|
|
13
|
+
## [1.0.1]
|
|
14
|
+
### Changed
|
|
15
|
+
- No changes this release.
|
|
16
|
+
|
|
9
17
|
## [1.0.0]
|
|
10
18
|
### Changed
|
|
11
19
|
- Update LavaMoat packages to latest versions ([#1657](https://github.com/MetaMask/snaps/pull/1657))
|
|
@@ -257,7 +265,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
257
265
|
- 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.
|
|
258
266
|
- Add endowments to the global `self` in addition to `window` ([#263](https://github.com/MetaMask/snaps-monorepo/pull/263))
|
|
259
267
|
|
|
260
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/v1.0.
|
|
268
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/v1.0.2...HEAD
|
|
269
|
+
[1.0.2]: https://github.com/MetaMask/snaps/compare/v1.0.1...v1.0.2
|
|
270
|
+
[1.0.1]: https://github.com/MetaMask/snaps/compare/v1.0.0...v1.0.1
|
|
261
271
|
[1.0.0]: https://github.com/MetaMask/snaps/compare/v1.0.0-prerelease.1...v1.0.0
|
|
262
272
|
[1.0.0-prerelease.1]: https://github.com/MetaMask/snaps/compare/v0.32.2...v1.0.0-prerelease.1
|
|
263
273
|
[0.32.2]: https://github.com/MetaMask/snaps/compare/v0.32.1...v0.32.2
|