Skip to content

Commit 8c9574c

Browse files
authored
Release/888.0.0 (#8313)
## Explanation Release transaction controller for new transaction types for money accounts. ## References Related to https://consensyssoftware.atlassian.net/browse/CONF-1110 ## 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/processes/updating-changelogs.md) - [X] 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** > Primarily version/dependency churn, but it pulls a new `transaction-controller` release into many packages, which can introduce behavioral/API changes for downstream consumers despite no functional code changes in this PR. > > **Overview** > Publishes `@metamask/transaction-controller` `63.3.0` and updates the monorepo release version to `888.0.0`. > > Updates multiple controller packages to depend on `@metamask/transaction-controller@^63.3.0`, refreshes their changelogs accordingly (including adding an *Unreleased* entry in `subscription-controller`), and updates `yarn.lock` to reflect the new dependency graph. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 4b0922e. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 889b955 commit 8c9574c

32 files changed

Lines changed: 53 additions & 46 deletions

File tree

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": "887.0.0",
3+
"version": "888.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

packages/assets-controller/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/transaction-controller` from `^63.1.0` to `^63.2.0` ([#8301](https://github.com/MetaMask/core/pull/8301))
12+
- Bump `@metamask/transaction-controller` from `^63.1.0` to `^63.3.0` ([#8301](https://github.com/MetaMask/core/pull/8301), [#8313](https://github.com/MetaMask/core/pull/8313))
1313

1414
## [3.1.1]
1515

packages/assets-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"@metamask/preferences-controller": "^23.0.0",
7070
"@metamask/snaps-controllers": "^17.2.0",
7171
"@metamask/snaps-utils": "^11.7.0",
72-
"@metamask/transaction-controller": "^63.2.0",
72+
"@metamask/transaction-controller": "^63.3.0",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
- **BREAKING:** `AssetListState` type now requires a top-level `selectedAccountGroup` property, matching the updated `AccountTreeControllerState` shape where `selectedAccountGroup` was moved out of `accountTree` ([#8245](https://github.com/MetaMask/core/pull/8245))
2020
- Bump `@metamask/keyring-api` from `^21.5.0` to `^21.6.0` ([#8259](https://github.com/MetaMask/core/pull/8259))
2121
- `fetchTokenPrices` to use `SPOT_PRICES_SUPPORT_INFO` as override - use if defined - instead of fallback for native token price ([#8258](https://github.com/MetaMask/core/pull/8258))
22-
- Bump `@metamask/transaction-controller` from `^63.0.0` to `^63.2.0` ([#8272](https://github.com/MetaMask/core/pull/8272), [#8301](https://github.com/MetaMask/core/pull/8301))
22+
- Bump `@metamask/transaction-controller` from `^63.0.0` to `^63.3.0` ([#8272](https://github.com/MetaMask/core/pull/8272), [#8301](https://github.com/MetaMask/core/pull/8301), [#8313](https://github.com/MetaMask/core/pull/8313))
2323
- Changed INK native asset to `slip44:60` (ETH) in `codefi-v2.ts` ([#8303](https://github.com/MetaMask/core/pull/8303))
2424

2525
## [101.0.1]

packages/assets-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"@metamask/snaps-sdk": "^10.3.0",
8383
"@metamask/snaps-utils": "^11.7.0",
8484
"@metamask/storage-service": "^1.0.0",
85-
"@metamask/transaction-controller": "^63.2.0",
85+
"@metamask/transaction-controller": "^63.3.0",
8686
"@metamask/utils": "^11.9.0",
8787
"@types/bn.js": "^5.1.5",
8888
"@types/uuid": "^8.3.0",

packages/bridge-controller/CHANGELOG.md

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

1212
- Bump `@metamask/assets-controller` from `^3.1.0` to `^3.1.1` ([#8298](https://github.com/MetaMask/core/pull/8298))
13-
- Bump `@metamask/transaction-controller` from `^63.1.0` to `^63.2.0` ([#8301](https://github.com/MetaMask/core/pull/8301))
13+
- Bump `@metamask/transaction-controller` from `^63.1.0` to `^63.3.0` ([#8301](https://github.com/MetaMask/core/pull/8301), [#8313](https://github.com/MetaMask/core/pull/8313))
1414

1515
## [69.2.1]
1616

packages/bridge-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"@metamask/profile-sync-controller": "^28.0.0",
6868
"@metamask/remote-feature-flag-controller": "^4.1.0",
6969
"@metamask/snaps-controllers": "^17.2.0",
70-
"@metamask/transaction-controller": "^63.2.0",
70+
"@metamask/transaction-controller": "^63.3.0",
7171
"@metamask/utils": "^11.9.0",
7272
"bignumber.js": "^9.1.2",
7373
"reselect": "^5.1.1",

packages/bridge-status-controller/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/transaction-controller` from `^63.1.0` to `^63.2.0` ([#8301](https://github.com/MetaMask/core/pull/8301))
12+
- Bump `@metamask/transaction-controller` from `^63.1.0` to `^63.3.0` ([#8301](https://github.com/MetaMask/core/pull/8301), [#8313](https://github.com/MetaMask/core/pull/8313))
1313

1414
## [70.0.1]
1515

packages/bridge-status-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"@metamask/profile-sync-controller": "^28.0.0",
5959
"@metamask/snaps-controllers": "^17.2.0",
6060
"@metamask/superstruct": "^3.1.0",
61-
"@metamask/transaction-controller": "^63.2.0",
61+
"@metamask/transaction-controller": "^63.3.0",
6262
"@metamask/utils": "^11.9.0",
6363
"bignumber.js": "^9.1.2",
6464
"uuid": "^8.3.2"

packages/earn-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
},
6262
"devDependencies": {
6363
"@metamask/auto-changelog": "^3.4.4",
64-
"@metamask/transaction-controller": "^63.2.0",
64+
"@metamask/transaction-controller": "^63.3.0",
6565
"@ts-bridge/cli": "^0.6.4",
6666
"@types/jest": "^29.5.14",
6767
"deepmerge": "^4.2.2",

0 commit comments

Comments
 (0)