Skip to content

Commit 72f2ce6

Browse files
authored
Release/825.0.0 (#7996)
## 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 <!-- 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 - [ ] 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/processes/updating-changelogs.md) - [ ] I've introduced [breaking changes](https://github.com/MetaMask/core/tree/main/docs/processes/breaking-changes.md) in this PR and have prepared draft pull requests for clients and consumer packages to resolve them <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Medium Risk** > While code changes are limited to version bumps, this pulls in a **major** `@metamask/network-controller` upgrade that may include breaking type/API surface changes for consumers. > > **Overview** > Updates the monorepo release to `825.0.0` and rolls forward a set of internal package versions, centered on upgrading `@metamask/network-controller` to `30.0.0`. > > Propagates the new versions through dependent controllers (e.g. `accounts-controller`, `transaction-controller`, `assets(-controllers)`, bridge, polling, signature, etc.), updating their `package.json` constraints, changelogs, and `yarn.lock` to reflect the new release set. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 1e3c5fa. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 08ce5e5 commit 72f2ce6

File tree

63 files changed

+347
-198
lines changed

Some content is hidden

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

63 files changed

+347
-198
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": "824.0.0",
3+
"version": "825.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {
@@ -60,7 +60,7 @@
6060
"@metamask/eth-block-tracker": "^15.0.1",
6161
"@metamask/eth-json-rpc-provider": "^6.0.0",
6262
"@metamask/json-rpc-engine": "^10.2.2",
63-
"@metamask/network-controller": "^29.0.0",
63+
"@metamask/network-controller": "^30.0.0",
6464
"@metamask/utils": "^11.9.0",
6565
"@ts-bridge/cli": "^0.6.4",
6666
"@types/jest": "^29.5.14",

packages/account-tree-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Bump `@metamask/accounts-controller` from `^36.0.0` to `^36.0.1` ([#7996](https://github.com/MetaMask/core/pull/7996))
13+
1014
## [4.1.1]
1115

1216
### Changed

packages/account-tree-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
4949
},
5050
"dependencies": {
51-
"@metamask/accounts-controller": "^36.0.0",
51+
"@metamask/accounts-controller": "^36.0.1",
5252
"@metamask/base-controller": "^9.0.0",
5353
"@metamask/keyring-controller": "^25.1.0",
5454
"@metamask/messenger": "^0.3.0",

packages/accounts-controller/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+
## [36.0.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/network-controller` from `^29.0.0` to `^30.0.0` ([#7996](https://github.com/MetaMask/core/pull/7996))
15+
1016
## [36.0.0]
1117

1218
### Changed
@@ -693,7 +699,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
693699

694700
- Initial release ([#1637](https://github.com/MetaMask/core/pull/1637))
695701

696-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@36.0.0...HEAD
702+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@36.0.1...HEAD
703+
[36.0.1]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@36.0.0...@metamask/accounts-controller@36.0.1
697704
[36.0.0]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@35.0.2...@metamask/accounts-controller@36.0.0
698705
[35.0.2]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@35.0.1...@metamask/accounts-controller@35.0.2
699706
[35.0.1]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@35.0.0...@metamask/accounts-controller@35.0.1

packages/accounts-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/accounts-controller",
3-
"version": "36.0.0",
3+
"version": "36.0.1",
44
"description": "Manages internal accounts",
55
"keywords": [
66
"MetaMask",
@@ -56,7 +56,7 @@
5656
"@metamask/keyring-internal-api": "^10.0.0",
5757
"@metamask/keyring-utils": "^3.1.0",
5858
"@metamask/messenger": "^0.3.0",
59-
"@metamask/network-controller": "^29.0.0",
59+
"@metamask/network-controller": "^30.0.0",
6060
"@metamask/snaps-controllers": "^17.2.0",
6161
"@metamask/snaps-sdk": "^10.3.0",
6262
"@metamask/snaps-utils": "^11.7.0",

packages/assets-controller/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+
## [2.0.2]
11+
12+
### Changed
13+
14+
- Bump `@metamask/assets-controllers` from `^100.0.0` to `^100.0.1` ([#7996](https://github.com/MetaMask/core/pull/7996))
15+
- Bump `@metamask/network-controller` from `^29.0.0` to `^30.0.0` ([#7996](https://github.com/MetaMask/core/pull/7996))
16+
- Bump `@metamask/network-enablement-controller` from `^4.1.1` to `^4.1.2` ([#7996](https://github.com/MetaMask/core/pull/7996))
17+
- Bump `@metamask/polling-controller` from `^16.0.2` to `^16.0.3` ([#7996](https://github.com/MetaMask/core/pull/7996))
18+
- Bump `@metamask/transaction-controller` from `^62.17.0` to `^62.17.1` ([#7996](https://github.com/MetaMask/core/pull/7996))
19+
1020
## [2.0.1]
1121

1222
### Changed
@@ -92,7 +102,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
92102
- Refactor `RpcDataSource` to delegate polling to `BalanceFetcher` and `TokenDetector` services ([#7709](https://github.com/MetaMask/core/pull/7709))
93103
- Refactor `BalanceFetcher` and `TokenDetector` to extend `StaticIntervalPollingControllerOnly` for independent polling management ([#7709](https://github.com/MetaMask/core/pull/7709))
94104

95-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@2.0.1...HEAD
105+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@2.0.2...HEAD
106+
[2.0.2]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@2.0.1...@metamask/assets-controller@2.0.2
96107
[2.0.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@2.0.0...@metamask/assets-controller@2.0.1
97108
[2.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@1.0.0...@metamask/assets-controller@2.0.0
98109
[1.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controller@0.2.0...@metamask/assets-controller@1.0.0

packages/assets-controller/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/assets-controller",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "Tracks assets balances/prices and handles token detection across all digital assets",
55
"keywords": [
66
"MetaMask",
@@ -53,7 +53,7 @@
5353
"@ethersproject/abi": "^5.7.0",
5454
"@ethersproject/providers": "^5.7.0",
5555
"@metamask/account-tree-controller": "^4.1.1",
56-
"@metamask/assets-controllers": "^100.0.0",
56+
"@metamask/assets-controllers": "^100.0.1",
5757
"@metamask/base-controller": "^9.0.0",
5858
"@metamask/controller-utils": "^11.19.0",
5959
"@metamask/core-backend": "^6.0.0",
@@ -62,14 +62,14 @@
6262
"@metamask/keyring-internal-api": "^10.0.0",
6363
"@metamask/keyring-snap-client": "^8.2.0",
6464
"@metamask/messenger": "^0.3.0",
65-
"@metamask/network-controller": "^29.0.0",
66-
"@metamask/network-enablement-controller": "^4.1.1",
65+
"@metamask/network-controller": "^30.0.0",
66+
"@metamask/network-enablement-controller": "^4.1.2",
6767
"@metamask/permission-controller": "^12.2.0",
68-
"@metamask/polling-controller": "^16.0.2",
68+
"@metamask/polling-controller": "^16.0.3",
6969
"@metamask/preferences-controller": "^22.1.0",
7070
"@metamask/snaps-controllers": "^17.2.0",
7171
"@metamask/snaps-utils": "^11.7.0",
72-
"@metamask/transaction-controller": "^62.17.0",
72+
"@metamask/transaction-controller": "^62.17.1",
7373
"@metamask/utils": "^11.9.0",
7474
"async-mutex": "^0.5.0",
7575
"bignumber.js": "^9.1.2",

packages/assets-controllers/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+
## [100.0.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/accounts-controller` from `^36.0.0` to `^36.0.1` ([#7996](https://github.com/MetaMask/core/pull/7996))
15+
- Bump `@metamask/network-controller` from `^29.0.0` to `^30.0.0` ([#7996](https://github.com/MetaMask/core/pull/7996))
16+
- Bump `@metamask/network-enablement-controller` from `^4.1.1` to `^4.1.2` ([#7996](https://github.com/MetaMask/core/pull/7996))
17+
- Bump `@metamask/polling-controller` from `^16.0.2` to `^16.0.3` ([#7996](https://github.com/MetaMask/core/pull/7996))
18+
- Bump `@metamask/transaction-controller` from `^62.17.0` to `^62.17.1` ([#7996](https://github.com/MetaMask/core/pull/7996))
19+
1020
## [100.0.0]
1121

1222
### Added
@@ -2701,7 +2711,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
27012711
27022712
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
27032713
2704-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@100.0.0...HEAD
2714+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@100.0.1...HEAD
2715+
[100.0.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@100.0.0...@metamask/assets-controllers@100.0.1
27052716
[100.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@99.4.0...@metamask/assets-controllers@100.0.0
27062717
[99.4.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@99.3.2...@metamask/assets-controllers@99.4.0
27072718
[99.3.2]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@99.3.1...@metamask/assets-controllers@99.3.2

packages/assets-controllers/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/assets-controllers",
3-
"version": "100.0.0",
3+
"version": "100.0.1",
44
"description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)",
55
"keywords": [
66
"MetaMask",
@@ -56,7 +56,7 @@
5656
"@ethersproject/providers": "^5.7.0",
5757
"@metamask/abi-utils": "^2.0.3",
5858
"@metamask/account-tree-controller": "^4.1.1",
59-
"@metamask/accounts-controller": "^36.0.0",
59+
"@metamask/accounts-controller": "^36.0.1",
6060
"@metamask/approval-controller": "^8.0.0",
6161
"@metamask/base-controller": "^9.0.0",
6262
"@metamask/contract-metadata": "^2.4.0",
@@ -68,19 +68,19 @@
6868
"@metamask/messenger": "^0.3.0",
6969
"@metamask/metamask-eth-abis": "^3.1.1",
7070
"@metamask/multichain-account-service": "^7.0.0",
71-
"@metamask/network-controller": "^29.0.0",
72-
"@metamask/network-enablement-controller": "^4.1.1",
71+
"@metamask/network-controller": "^30.0.0",
72+
"@metamask/network-enablement-controller": "^4.1.2",
7373
"@metamask/permission-controller": "^12.2.0",
7474
"@metamask/phishing-controller": "^16.3.0",
75-
"@metamask/polling-controller": "^16.0.2",
75+
"@metamask/polling-controller": "^16.0.3",
7676
"@metamask/preferences-controller": "^22.1.0",
7777
"@metamask/profile-sync-controller": "^27.1.0",
7878
"@metamask/rpc-errors": "^7.0.2",
7979
"@metamask/snaps-controllers": "^17.2.0",
8080
"@metamask/snaps-sdk": "^10.3.0",
8181
"@metamask/snaps-utils": "^11.7.0",
8282
"@metamask/storage-service": "^1.0.0",
83-
"@metamask/transaction-controller": "^62.17.0",
83+
"@metamask/transaction-controller": "^62.17.1",
8484
"@metamask/utils": "^11.9.0",
8585
"@types/bn.js": "^5.1.5",
8686
"@types/uuid": "^8.3.0",

packages/bridge-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [67.1.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/accounts-controller` from `^36.0.0` to `^36.0.1` ([#7996](https://github.com/MetaMask/core/pull/7996))
15+
- Bump `@metamask/assets-controllers` from `^100.0.0` to `^100.0.1` ([#7996](https://github.com/MetaMask/core/pull/7996))
16+
- Bump `@metamask/gas-fee-controller` from `^26.0.2` to `^26.0.3` ([#7996](https://github.com/MetaMask/core/pull/7996))
17+
- Bump `@metamask/multichain-network-controller` from `^3.0.3` to `^3.0.4` ([#7996](https://github.com/MetaMask/core/pull/7996))
18+
- Bump `@metamask/network-controller` from `^29.0.0` to `^30.0.0` ([#7996](https://github.com/MetaMask/core/pull/7996))
19+
- Bump `@metamask/polling-controller` from `^16.0.2` to `^16.0.3` ([#7996](https://github.com/MetaMask/core/pull/7996))
20+
- Bump `@metamask/transaction-controller` from `^62.17.0` to `^62.17.1` ([#7996](https://github.com/MetaMask/core/pull/7996))
21+
1022
## [67.1.0]
1123

1224
### Added
@@ -1166,7 +1178,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11661178

11671179
- Initial release ([#5317](https://github.com/MetaMask/core/pull/5317))
11681180

1169-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@67.1.0...HEAD
1181+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@67.1.1...HEAD
1182+
[67.1.1]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@67.1.0...@metamask/bridge-controller@67.1.1
11701183
[67.1.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@67.0.0...@metamask/bridge-controller@67.1.0
11711184
[67.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@66.2.0...@metamask/bridge-controller@67.0.0
11721185
[66.2.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@66.1.1...@metamask/bridge-controller@66.2.0

0 commit comments

Comments
 (0)