-
Notifications
You must be signed in to change notification settings - Fork 558
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Small release primarily to release some stability improvements to `snaps-controllers`, `snaps-execution-environments` and a hotfix to `snaps-cli`. --------- Co-authored-by: Maarten Zuidhoorn <[email protected]>
- Loading branch information
1 parent
706d7a1
commit 20bbcf9
Showing
9 changed files
with
38 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "root", | ||
"version": "43.0.0", | ||
"version": "44.0.0", | ||
"private": true, | ||
"repository": { | ||
"type": "git", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
|
||
## [Unreleased] | ||
|
||
## [6.1.1] | ||
### Fixed | ||
- Disable `topLevelAwait` configuration option ([#2358](https://github.com/MetaMask/snaps/pull/2358)) | ||
- Before this the CLI would produce invalid builds when using top-level await. | ||
|
||
## [6.1.0] | ||
### Added | ||
- Add support for importing SVG, PNG, and JPEG files directly ([#2284](https://github.com/MetaMask/snaps/pull/2284)) | ||
|
@@ -146,7 +151,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
- The version of the package no longer needs to match the version of all other | ||
MetaMask Snaps packages. | ||
|
||
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected] | ||
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected] | ||
[6.1.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected] | ||
[6.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected] | ||
[6.0.2]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected] | ||
[6.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
|
||
## [Unreleased] | ||
|
||
## [8.0.0] | ||
### Changed | ||
- **BREAKING:** Move `maxInitTime` constructor argument from `SnapController` to `ExecutionService` ([#2348](https://github.com/MetaMask/snaps/pull/2348)) | ||
|
||
### Fixed | ||
- Increase max UI size limit from 250 KB to 10 MB ([#2342](https://github.com/MetaMask/snaps/pull/2342)) | ||
- Consider caveats in permissions difference calculation ([#2345](https://github.com/MetaMask/snaps/pull/2345)) | ||
- This fixes a bug where certain caveats would not be correctly applied when updating Snaps. | ||
- Gracefully handle errors for multiple simultaneous failing requests ([#2346](https://github.com/MetaMask/snaps/pull/2346)) | ||
- Properly handle termination of Snaps that are currently executing ([#2304](https://github.com/MetaMask/snaps/pull/2304)) | ||
- Properly tear down partially initialized executors and improve stability when executor initialization fails ([#2348](https://github.com/MetaMask/snaps/pull/2348)) | ||
|
||
## [7.0.1] | ||
### Fixed | ||
- Fix encryption key caching issues ([#2326](https://github.com/MetaMask/snaps/pull/2326)) | ||
|
@@ -234,7 +246,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
- The version of the package no longer needs to match the version of all other | ||
MetaMask Snaps packages. | ||
|
||
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected] | ||
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected] | ||
[8.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected] | ||
[7.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected] | ||
[7.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected] | ||
[6.0.4]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
|
||
## [Unreleased] | ||
|
||
## [6.0.2] | ||
### Fixed | ||
- Throw an error if starting Snap has no exports ([#2357](https://github.com/MetaMask/snaps/pull/2357)) | ||
|
||
## [6.0.1] | ||
### Fixed | ||
- Allow `null` in `FormSubmitEventStruct` form state ([#2333](https://github.com/MetaMask/snaps/pull/2333)) | ||
|
@@ -180,7 +184,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
- The version of the package no longer needs to match the version of all other | ||
MetaMask Snaps packages. | ||
|
||
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected] | ||
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected] | ||
[6.0.2]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected] | ||
[6.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected] | ||
[6.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected] | ||
[5.0.4]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
|
||
## [Unreleased] | ||
|
||
## [7.2.0] | ||
### Added | ||
- Add `getJsonSizeUnsafe` ([#2342](https://github.com/MetaMask/snaps/pull/2342)) | ||
|
||
## [7.1.0] | ||
### Added | ||
- Add derivation path for Nimiq ([#2309](https://github.com/MetaMask/snaps/pull/2309)) | ||
|
@@ -213,7 +217,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
- The version of the package no longer needs to match the version of all other | ||
MetaMask Snaps packages. | ||
|
||
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected] | ||
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected] | ||
[7.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected] | ||
[7.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected] | ||
[7.0.4]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected] | ||
[7.0.3]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters