Skip to content

Commit 163e512

Browse files
release: 133.0.0 (#3743)
This is the release candidate for version `133.0.0`. <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Release 133.0.0: bumps `@metamask/snaps-controllers` to 17.0.0 with breaking constructor changes and `@metamask/snaps-rpc-methods` to 14.1.1 with a state mutation fix. > > - **Packages**: > - **`@metamask/snaps-controllers` `17.0.0`**: > - BREAKING: `SnapController` now requires `ensureOnboardingComplete` constructor arg. > - BREAKING: `JsonSnapsRegistry` now requires `clientConfig` (supports specified `clientVersions`). > - **`@metamask/snaps-rpc-methods` `14.1.1`**: > - Fix: use mutex when modifying state in `snap_setState`. > - **Repo**: > - Bump root `version` to `133.0.0`. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 9c0c98a. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 31bd332 commit 163e512

File tree

5 files changed

+22
-5
lines changed

5 files changed

+22
-5
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": "132.0.0",
3+
"version": "133.0.0",
44
"private": true,
55
"repository": {
66
"type": "git",

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+
## [17.0.0]
11+
12+
### Added
13+
14+
- **BREAKING:** Ensure user has onboarded before allowing usage of SnapController ([#3731](https://github.com/MetaMask/snaps/pull/3731))
15+
- This is breaking as it adds a new required constructor argument to `SnapController` called `ensureOnboardingComplete`.
16+
- **BREAKING:** Support specified `clientVersions` in the registry ([#3737](https://github.com/MetaMask/snaps/pull/3737))
17+
- This is breaking as it adds a new required constructor argument to `JsonSnapsRegistry` called `clientConfig`.
18+
1019
## [16.1.1]
1120

1221
### Fixed
@@ -960,7 +969,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
960969
- The version of the package no longer needs to match the version of all other
961970
MetaMask Snaps packages.
962971

963-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
972+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
973+
[17.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
964974
[16.1.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
965975
[16.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
966976
[16.0.0]: 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": "16.1.1",
3+
"version": "17.0.0",
44
"description": "Controllers for MetaMask Snaps",
55
"keywords": [
66
"MetaMask",

packages/snaps-rpc-methods/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+
## [14.1.1]
11+
12+
### Fixed
13+
14+
- Use mutex when modifying state using `snap_setState` ([#3742](https://github.com/MetaMask/snaps/pull/3742))
15+
1016
## [14.1.0]
1117

1218
### Changed
@@ -535,7 +541,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
535541
- The version of the package no longer needs to match the version of all other
536542
MetaMask Snaps packages.
537543

538-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
544+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
545+
[14.1.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
539546
[14.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
540547
[14.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
541548
[13.5.3]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-rpc-methods/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-rpc-methods",
3-
"version": "14.1.0",
3+
"version": "14.1.1",
44
"description": "MetaMask Snaps JSON-RPC method implementations",
55
"keywords": [
66
"MetaMask",

0 commit comments

Comments
 (0)