Skip to content

Commit fcdb865

Browse files
authored
release: 123.0.0 (#3562)
This is the release candidate for version 123.0.0.
1 parent 29b393e commit fcdb865

File tree

13 files changed

+78
-13
lines changed

13 files changed

+78
-13
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "root",
3-
"version": "122.0.0",
3+
"version": "123.0.0",
44
"private": true,
55
"repository": {
66
"type": "git",

packages/snaps-cli/CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [8.2.0]
11+
12+
### Changed
13+
14+
- Add support for eval in watch mode ([#3553](https://github.com/MetaMask/snaps/pull/3553))
15+
- This enables some extra validation checks in watch mode, which can help
16+
catch issues earlier in the development process.
17+
1018
## [8.1.1]
1119

1220
### Fixed
@@ -393,7 +401,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
393401
- The version of the package no longer needs to match the version of all other
394402
MetaMask Snaps packages.
395403

396-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
404+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
405+
[8.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
397406
[8.1.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
398407
[8.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
399408
[8.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-cli",
3-
"version": "8.1.1",
3+
"version": "8.2.0",
44
"description": "A CLI for developing MetaMask Snaps",
55
"keywords": [
66
"MetaMask",

packages/snaps-controllers/CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [14.2.1]
11+
12+
### Fixed
13+
14+
- Prevent double scheduling events and ensure long-running events work correctly ([#3561](https://github.com/MetaMask/snaps/pull/3561))
15+
- Emit event when destroying execution environment streams ([#3074](https://github.com/MetaMask/snaps/pull/3074))
16+
- Ignore terminate calls to not executing Snaps ([#3559](https://github.com/MetaMask/snaps/pull/3559))
17+
- Properly stop Snaps when clearing state ([#3552](https://github.com/MetaMask/snaps/pull/3552))
18+
1019
## [14.2.0]
1120

1221
### Added
@@ -872,7 +881,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
872881
- The version of the package no longer needs to match the version of all other
873882
MetaMask Snaps packages.
874883

875-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
884+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
885+
[14.2.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
876886
[14.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
877887
[14.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
878888
[14.0.2]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-controllers",
3-
"version": "14.2.0",
3+
"version": "14.2.1",
44
"description": "Controllers for MetaMask Snaps",
55
"keywords": [
66
"MetaMask",

packages/snaps-execution-environments/CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [10.2.1]
11+
12+
### Changed
13+
14+
- Bump ses from `1.13.1` to `1.14.0` ([#3557](https://github.com/MetaMask/snaps/pull/3557))
15+
16+
### Fixed
17+
18+
- Ignore "Premature close" stream messages ([#3074](https://github.com/MetaMask/snaps/pull/3074))
19+
1020
## [10.2.0]
1121

1222
### Added
@@ -545,7 +555,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
545555
- The version of the package no longer needs to match the version of all other
546556
MetaMask Snaps packages.
547557

548-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
558+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
559+
[10.2.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
549560
[10.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
550561
[10.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
551562
[10.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-execution-environments/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-execution-environments",
3-
"version": "10.2.0",
3+
"version": "10.2.1",
44
"description": "Snap sandbox environments for executing SES javascript",
55
"keywords": [
66
"MetaMask",

packages/snaps-simulation/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.4.1]
11+
12+
### Fixed
13+
14+
- Ignore "Premature close" stream messages ([#3074](https://github.com/MetaMask/snaps/pull/3074))
15+
1016
## [3.4.0]
1117

1218
### Added
@@ -204,7 +210,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
204210

205211
- Initial release of `@metamask/snaps-simulation` package ([#2727](https://github.com/MetaMask/snaps/pull/2727))
206212

207-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
213+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
214+
[3.4.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
208215
[3.4.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
209216
[3.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
210217
[3.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-simulation/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-simulation",
3-
"version": "3.4.0",
3+
"version": "3.4.1",
44
"description": "A simulation framework for MetaMask Snaps, enabling headless testing of Snaps in a controlled environment",
55
"keywords": [
66
"MetaMask",

packages/snaps-utils/CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [11.4.0]
11+
12+
### Added
13+
14+
- Add support for eval in watch mode for Snaps CLI ([#3553](https://github.com/MetaMask/snaps/pull/3553))
15+
16+
### Changed
17+
18+
- Bump ses from `1.13.1` to `1.14.0` ([#3557](https://github.com/MetaMask/snaps/pull/3557))
19+
20+
### Fixed
21+
22+
- Fix typos in `SnapAuxiliaryFilesStruct` variable and `SnapAuxiliaryFile` type ([#3545](https://github.com/MetaMask/snaps/pull/3545))
23+
- `SnapAuxilaryFilesStruct` and `SnapAuxilaryFile` are still exported for
24+
backwards compatibility, but will be removed in a future release.
25+
1026
## [11.3.0]
1127

1228
### Changed
@@ -678,7 +694,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
678694
- The version of the package no longer needs to match the version of all other
679695
MetaMask Snaps packages.
680696

681-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
697+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
698+
[11.4.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
682699
[11.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
683700
[11.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
684701
[11.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

0 commit comments

Comments
 (0)