Skip to content

Commit 330dd1a

Browse files
authored
Release/699.0.0 (#7258)
## Explanation <!-- Thanks for your contribution! Take a moment to answer these questions so that reviewers have the information they need to properly understand your changes: * What is the current state of things and why does it need to change? * What is the solution your changes offer and how does it work? * Are there any changes whose purpose might not obvious to those unfamiliar with the domain? * If your primary goal was to update one package but you found you had to update another one along the way, why did you do so? * If you had to upgrade a dependency, why did you do so? --> ## References Mobile PR MetaMask/metamask-mobile#22911 Extension PR MetaMask/metamask-extension#37966 <!-- Are there any issues that this pull request is tied to? Are there other links that reviewers should consult to understand these changes better? Are there client or consumer pull requests to adopt any breaking changes? For example: * Fixes #12345 * Related to #67890 --> ## Checklist - [x] I've updated the test suite for new or updated code as appropriate - [x] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [x] I've communicated my changes to consumers by [updating changelogs for packages I've changed](https://github.com/MetaMask/core/tree/main/docs/contributing.md#updating-changelogs) - [x] I've introduced [breaking changes](https://github.com/MetaMask/core/tree/main/docs/breaking-changes.md) in this PR and have prepared draft pull requests for clients and consumer packages to resolve them <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Bumps `@metamask/network-controller` to `^27.0.0` across the monorepo and publishes its 27.0.0 release, preparing monorepo version `699.0.0`. > > - **Network Controller (`packages/network-controller`)**: > - Release `27.0.0`: adds `NetworkController:rpcEndpointChainAvailable` event and splits payloads for degraded/unavailable events; updates changelog links. > - Bump package version to `27.0.0`. > - **Dependencies**: > - Upgrade `@metamask/network-controller` to `^27.0.0` across packages (e.g., `accounts-controller`, `assets-controllers`, `bridge-controller`, `bridge-status-controller`, `chain-agnostic-permission`, `earn-controller`, `ens-controller`, `eth-json-rpc-middleware`, `gas-fee-controller`, `multichain-api-middleware`, `multichain-network-controller`, `network-enablement-controller`, `polling-controller`, `sample-controllers`, `selected-network-controller`, `signature-controller`, `transaction-controller`, `transaction-pay-controller`, `user-operation-controller`). > - Changelogs updated to reflect the bump and prior move of peer deps to direct deps. > - **Monorepo**: > - Bump root `version` to `699.0.0` in `package.json`. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 5934c88. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 5d24e81 commit 330dd1a

File tree

41 files changed

+82
-68
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+82
-68
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/core-monorepo",
3-
"version": "698.0.0",
3+
"version": "699.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {
@@ -63,7 +63,7 @@
6363
"@metamask/eth-block-tracker": "^15.0.0",
6464
"@metamask/eth-json-rpc-provider": "^6.0.0",
6565
"@metamask/json-rpc-engine": "^10.2.0",
66-
"@metamask/network-controller": "^26.0.0",
66+
"@metamask/network-controller": "^27.0.0",
6767
"@metamask/utils": "^11.8.1",
6868
"@ts-bridge/cli": "^0.6.4",
6969
"@types/jest": "^27.4.1",

packages/accounts-controller/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Changed
1111

12-
- Move peer dependencies for controller and service packages to direct dependencies ([#7209](https://github.com/MetaMask/core/pull/7209))
12+
- Move peer dependencies for controller and service packages to direct dependencies ([#7209](https://github.com/MetaMask/core/pull/7209), [#7258](https://github.com/MetaMask/core/pull/7258))
1313
- The dependencies moved are:
1414
- `@metamask/keyring-controller` (^25.0.0)
15-
- `@metamask/network-controller` (^26.0.0)
15+
- `@metamask/network-controller` (^27.0.0)
1616
- `@metamask/snaps-controllers` (^14.0.1)
1717
- In clients, it is now possible for multiple versions of these packages to exist in the dependency tree.
1818
- For example, this scenario would be valid: a client relies on `@metamask/controller-a` 1.0.0 and `@metamask/controller-b` 1.0.0, and `@metamask/controller-b` depends on `@metamask/controller-a` 1.1.0.

packages/accounts-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"@metamask/keyring-internal-api": "^9.0.0",
5757
"@metamask/keyring-utils": "^3.1.0",
5858
"@metamask/messenger": "^0.3.0",
59-
"@metamask/network-controller": "^26.0.0",
59+
"@metamask/network-controller": "^27.0.0",
6060
"@metamask/snaps-controllers": "^14.0.1",
6161
"@metamask/snaps-sdk": "^9.0.0",
6262
"@metamask/snaps-utils": "^11.0.0",

packages/assets-controllers/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Changed
1111

12+
- Bump `@metamask/network-controller` from `^26.0.0` to `^27.0.0` ([#7258](https://github.com/MetaMask/core/pull/7258))
1213
- Bump `@metamask/transaction-controller` from `^62.3.0` to `^62.3.1` ([#7257](https://github.com/MetaMask/core/pull/7257))
1314

1415
## [92.0.0]

packages/assets-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"@metamask/messenger": "^0.3.0",
6969
"@metamask/metamask-eth-abis": "^3.1.1",
7070
"@metamask/multichain-account-service": "^4.0.0",
71-
"@metamask/network-controller": "^26.0.0",
71+
"@metamask/network-controller": "^27.0.0",
7272
"@metamask/permission-controller": "^12.1.1",
7373
"@metamask/phishing-controller": "^16.1.0",
7474
"@metamask/polling-controller": "^16.0.0",

packages/bridge-controller/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Changed
1111

12+
- Bump `@metamask/network-controller` from `^26.0.0` to `^27.0.0` ([#7258](https://github.com/MetaMask/core/pull/7258))
1213
- Bump `@metamask/transaction-controller` from `^62.3.0` to `^62.3.1` ([#7257](https://github.com/MetaMask/core/pull/7257))
1314
- Bump `@metamask/assets-controllers` from `^91.0.0` to `^92.0.0` ([#7253](https://github.com/MetaMask/core/pull/7253))
1415

packages/bridge-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"@metamask/messenger": "^0.3.0",
6363
"@metamask/metamask-eth-abis": "^3.1.1",
6464
"@metamask/multichain-network-controller": "^3.0.0",
65-
"@metamask/network-controller": "^26.0.0",
65+
"@metamask/network-controller": "^27.0.0",
6666
"@metamask/polling-controller": "^16.0.0",
6767
"@metamask/remote-feature-flag-controller": "^2.0.1",
6868
"@metamask/snaps-controllers": "^14.0.1",

packages/bridge-status-controller/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Changed
1111

12+
- Bump `@metamask/network-controller` from `^26.0.0` to `^27.0.0` ([#7258](https://github.com/MetaMask/core/pull/7258))
1213
- Bump `@metamask/transaction-controller` from `^62.3.0` to `^62.3.1` ([#7257](https://github.com/MetaMask/core/pull/7257))
1314

1415
## [63.1.0]

packages/bridge-status-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"@metamask/bridge-controller": "^63.2.0",
5454
"@metamask/controller-utils": "^11.16.0",
5555
"@metamask/gas-fee-controller": "^26.0.0",
56-
"@metamask/network-controller": "^26.0.0",
56+
"@metamask/network-controller": "^27.0.0",
5757
"@metamask/polling-controller": "^16.0.0",
5858
"@metamask/snaps-controllers": "^14.0.1",
5959
"@metamask/superstruct": "^3.1.0",

packages/chain-agnostic-permission/CHANGELOG.md

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

1010
### Changed
1111

12-
- Bump `@metamask/network-controller` from `^25.0.0` to `^26.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
12+
- Bump `@metamask/network-controller` from `^26.0.0` to `^27.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202), [#7258](https://github.com/MetaMask/core/pull/7258))
1313
- Bump `@metamask/controller-utils` from `^11.15.0` to `^11.16.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
1414
- Bump `@metamask/permission-controller` from `^12.1.0` to `^12.1.1` ([#6988](https://github.com/MetaMask/core/pull/6988), [#7202](https://github.com/MetaMask/core/pull/7202))
1515

0 commit comments

Comments
 (0)