Skip to content

Commit f1b9848

Browse files
authored
Release/470.0.0 (#6148)
## 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? --> Patch release for `@metamask/network-controller` `24.0.1` ([view release changes](https://github.com/MetaMask/core/pull/6148/files#diff-0f69afd30651cc52d937e185e7947fd6eaa63d1050823804c8841556d9d8f512R10)) ## References <!-- 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 --> ## Changelog <!-- THIS SECTION IS NO LONGER NEEDED. The process for updating changelogs has changed. Please consult the "Updating changelogs" section of the Contributing doc for more. --> ## Checklist - [ ] I've updated the test suite for new or updated code as appropriate - [ ] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [ ] 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), highlighting breaking changes as necessary - [ ] I've prepared draft pull requests for clients and consumer packages to resolve any breaking changes
1 parent e090991 commit f1b9848

File tree

22 files changed

+41
-36
lines changed

22 files changed

+41
-36
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": "@metamask/core-monorepo",
3-
"version": "469.0.0",
3+
"version": "470.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

packages/accounts-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"devDependencies": {
6565
"@metamask/auto-changelog": "^3.4.4",
6666
"@metamask/keyring-controller": "^22.1.0",
67-
"@metamask/network-controller": "^24.0.0",
67+
"@metamask/network-controller": "^24.0.1",
6868
"@metamask/providers": "^22.1.0",
6969
"@metamask/snaps-controllers": "^14.0.1",
7070
"@types/jest": "^27.4.1",

packages/assets-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"@metamask/keyring-controller": "^22.1.0",
8686
"@metamask/keyring-internal-api": "^7.0.0",
8787
"@metamask/keyring-snap-client": "^6.0.0",
88-
"@metamask/network-controller": "^24.0.0",
88+
"@metamask/network-controller": "^24.0.1",
8989
"@metamask/permission-controller": "^11.0.6",
9090
"@metamask/phishing-controller": "^13.1.0",
9191
"@metamask/preferences-controller": "^18.4.1",

packages/bridge-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"@metamask/assets-controllers": "^72.0.0",
7070
"@metamask/auto-changelog": "^3.4.4",
7171
"@metamask/eth-json-rpc-provider": "^4.1.8",
72-
"@metamask/network-controller": "^24.0.0",
72+
"@metamask/network-controller": "^24.0.1",
7373
"@metamask/remote-feature-flag-controller": "^1.6.0",
7474
"@metamask/snaps-controllers": "^14.0.1",
7575
"@metamask/superstruct": "^3.1.0",

packages/bridge-status-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"@metamask/auto-changelog": "^3.4.4",
6262
"@metamask/bridge-controller": "^36.1.0",
6363
"@metamask/gas-fee-controller": "^24.0.0",
64-
"@metamask/network-controller": "^24.0.0",
64+
"@metamask/network-controller": "^24.0.1",
6565
"@metamask/snaps-controllers": "^14.0.1",
6666
"@metamask/transaction-controller": "^58.1.1",
6767
"@types/jest": "^27.4.1",

packages/chain-agnostic-permission/CHANGELOG.md

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

1212
- Bump `@metamask/controller-utils` from `^11.10.0` to `^11.11.0` ([#6069](https://github.com/MetaMask/core/pull/6069))
13+
- Bump `@metamask/network-controller` from `^24.0.0` to `^24.0.1` ([#6148](https://github.com/MetaMask/core/pull/6148))
1314
- Bump `@metamask/utils` from `^11.2.0` to `^11.4.2` ([#6054](https://github.com/MetaMask/core/pull/6054))
1415

1516
## [1.0.0]

packages/chain-agnostic-permission/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"dependencies": {
5050
"@metamask/api-specs": "^0.14.0",
5151
"@metamask/controller-utils": "^11.11.0",
52-
"@metamask/network-controller": "^24.0.0",
52+
"@metamask/network-controller": "^24.0.1",
5353
"@metamask/permission-controller": "^11.0.6",
5454
"@metamask/rpc-errors": "^7.0.2",
5555
"@metamask/utils": "^11.4.2",

packages/earn-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"devDependencies": {
5858
"@metamask/accounts-controller": "^31.0.0",
5959
"@metamask/auto-changelog": "^3.4.4",
60-
"@metamask/network-controller": "^24.0.0",
60+
"@metamask/network-controller": "^24.0.1",
6161
"@metamask/transaction-controller": "^58.1.1",
6262
"@types/jest": "^27.4.1",
6363
"deepmerge": "^4.2.2",

packages/ens-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
},
5656
"devDependencies": {
5757
"@metamask/auto-changelog": "^3.4.4",
58-
"@metamask/network-controller": "^24.0.0",
58+
"@metamask/network-controller": "^24.0.1",
5959
"@types/jest": "^27.4.1",
6060
"deepmerge": "^4.2.2",
6161
"jest": "^27.5.1",

packages/gas-fee-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"devDependencies": {
6262
"@babel/runtime": "^7.23.9",
6363
"@metamask/auto-changelog": "^3.4.4",
64-
"@metamask/network-controller": "^24.0.0",
64+
"@metamask/network-controller": "^24.0.1",
6565
"@types/jest": "^27.4.1",
6666
"@types/jest-when": "^2.7.3",
6767
"deepmerge": "^4.2.2",

0 commit comments

Comments
 (0)