@metamask/snaps-execution-environments 1.0.1 → 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 +6 -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,10 @@ 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
|
+
|
|
9
13
|
## [1.0.1]
|
|
10
14
|
### Changed
|
|
11
15
|
- No changes this release.
|
|
@@ -261,7 +265,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
261
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.
|
|
262
266
|
- Add endowments to the global `self` in addition to `window` ([#263](https://github.com/MetaMask/snaps-monorepo/pull/263))
|
|
263
267
|
|
|
264
|
-
[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
|
|
265
270
|
[1.0.1]: https://github.com/MetaMask/snaps/compare/v1.0.0...v1.0.1
|
|
266
271
|
[1.0.0]: https://github.com/MetaMask/snaps/compare/v1.0.0-prerelease.1...v1.0.0
|
|
267
272
|
[1.0.0-prerelease.1]: https://github.com/MetaMask/snaps/compare/v0.32.2...v1.0.0-prerelease.1
|