Skip to content

Commit b22495a

Browse files
authored
Release/832.0.0 (#8029)
## Explanation Patch update to assets-controllers <!-- 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 https://consensyssoftware.atlassian.net/browse/ASSETS-2632 <!-- 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] > **Low Risk** > Primarily version bumps and changelog/lockfile updates; behavior changes are limited to whatever is inside the patched `@metamask/assets-controllers@100.0.3` dependency. > > **Overview** > Updates the monorepo release version to `832.0.0` and publishes `@metamask/assets-controllers` `100.0.3`. > > Bumps `@metamask/assets-controllers` from `^100.0.2` to `^100.0.3` in dependent packages (`assets-controller`, `bridge-controller`, `transaction-pay-controller`), updates related changelogs, and refreshes `yarn.lock`. The new `assets-controllers` release notes include a fix to token search pagination parameters and a `transaction-controller` dependency bump. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 62dc5f0. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 8b9ad85 commit b22495a

File tree

10 files changed

+19
-10
lines changed

10 files changed

+19
-10
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": "831.0.0",
3+
"version": "832.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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919

2020
- Bump `@metamask/transaction-controller` from `^62.17.1` to `^62.18.0` ([#8005](https://github.com/MetaMask/core/pull/8005))
2121
- Bump `@metamask/assets-controllers` from `^100.0.1` to `^100.0.2` ([#8004](https://github.com/MetaMask/core/pull/8004))
22+
- Bump `@metamask/assets-controllers` from `^100.0.2` to `^100.0.3` ([#8029](https://github.com/MetaMask/core/pull/8029))
2223

2324
## [2.0.2]
2425

packages/assets-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"@ethersproject/abi": "^5.7.0",
5353
"@ethersproject/providers": "^5.7.0",
5454
"@metamask/account-tree-controller": "^4.1.1",
55-
"@metamask/assets-controllers": "^100.0.2",
55+
"@metamask/assets-controllers": "^100.0.3",
5656
"@metamask/base-controller": "^9.0.0",
5757
"@metamask/client-controller": "^1.0.0",
5858
"@metamask/controller-utils": "^11.19.0",

packages/assets-controllers/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [100.0.3]
11+
1012
### Changed
1113

1214
- Bump `@metamask/transaction-controller` from `^62.17.1` to `^62.18.0` ([#8005](https://github.com/MetaMask/core/pull/8005))
@@ -2728,7 +2730,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
27282730
27292731
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
27302732
2731-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@100.0.2...HEAD
2733+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@100.0.3...HEAD
2734+
[100.0.3]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@100.0.2...@metamask/assets-controllers@100.0.3
27322735
[100.0.2]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@100.0.1...@metamask/assets-controllers@100.0.2
27332736
[100.0.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@100.0.0...@metamask/assets-controllers@100.0.1
27342737
[100.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@99.4.0...@metamask/assets-controllers@100.0.0

packages/assets-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/assets-controllers",
3-
"version": "100.0.2",
3+
"version": "100.0.3",
44
"description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)",
55
"keywords": [
66
"MetaMask",

packages/bridge-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/assets-controllers` from `^100.0.2` to `^100.0.3` ([#8029](https://github.com/MetaMask/core/pull/8029))
13+
1014
## [67.2.0]
1115

1216
### Changed

packages/bridge-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"@ethersproject/contracts": "^5.7.0",
5454
"@ethersproject/providers": "^5.7.0",
5555
"@metamask/accounts-controller": "^36.0.1",
56-
"@metamask/assets-controllers": "^100.0.2",
56+
"@metamask/assets-controllers": "^100.0.3",
5757
"@metamask/base-controller": "^9.0.0",
5858
"@metamask/controller-utils": "^11.19.0",
5959
"@metamask/gas-fee-controller": "^26.0.3",

packages/transaction-pay-controller/CHANGELOG.md

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

1616
- Bump `@metamask/bridge-controller` from `^67.1.1` to `^67.2.0` ([#8024](https://github.com/MetaMask/core/pull/8024))
17+
- Bump `@metamask/assets-controllers` from `^100.0.2` to `^100.0.3` ([#8029](https://github.com/MetaMask/core/pull/8029))
1718

1819
## [16.0.0]
1920

packages/transaction-pay-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"@ethersproject/abi": "^5.7.0",
5252
"@ethersproject/contracts": "^5.7.0",
5353
"@ethersproject/providers": "^5.7.0",
54-
"@metamask/assets-controllers": "^100.0.2",
54+
"@metamask/assets-controllers": "^100.0.3",
5555
"@metamask/base-controller": "^9.0.0",
5656
"@metamask/bridge-controller": "^67.2.0",
5757
"@metamask/bridge-status-controller": "^67.0.1",

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2517,7 +2517,7 @@ __metadata:
25172517
"@ethersproject/abi": "npm:^5.7.0"
25182518
"@ethersproject/providers": "npm:^5.7.0"
25192519
"@metamask/account-tree-controller": "npm:^4.1.1"
2520-
"@metamask/assets-controllers": "npm:^100.0.2"
2520+
"@metamask/assets-controllers": "npm:^100.0.3"
25212521
"@metamask/auto-changelog": "npm:^3.4.4"
25222522
"@metamask/base-controller": "npm:^9.0.0"
25232523
"@metamask/client-controller": "npm:^1.0.0"
@@ -2554,7 +2554,7 @@ __metadata:
25542554
languageName: unknown
25552555
linkType: soft
25562556

2557-
"@metamask/assets-controllers@npm:^100.0.2, @metamask/assets-controllers@workspace:packages/assets-controllers":
2557+
"@metamask/assets-controllers@npm:^100.0.3, @metamask/assets-controllers@workspace:packages/assets-controllers":
25582558
version: 0.0.0-use.local
25592559
resolution: "@metamask/assets-controllers@workspace:packages/assets-controllers"
25602560
dependencies:
@@ -2724,7 +2724,7 @@ __metadata:
27242724
"@ethersproject/contracts": "npm:^5.7.0"
27252725
"@ethersproject/providers": "npm:^5.7.0"
27262726
"@metamask/accounts-controller": "npm:^36.0.1"
2727-
"@metamask/assets-controllers": "npm:^100.0.2"
2727+
"@metamask/assets-controllers": "npm:^100.0.3"
27282728
"@metamask/auto-changelog": "npm:^3.4.4"
27292729
"@metamask/base-controller": "npm:^9.0.0"
27302730
"@metamask/controller-utils": "npm:^11.19.0"
@@ -5083,7 +5083,7 @@ __metadata:
50835083
"@ethersproject/abi": "npm:^5.7.0"
50845084
"@ethersproject/contracts": "npm:^5.7.0"
50855085
"@ethersproject/providers": "npm:^5.7.0"
5086-
"@metamask/assets-controllers": "npm:^100.0.2"
5086+
"@metamask/assets-controllers": "npm:^100.0.3"
50875087
"@metamask/auto-changelog": "npm:^3.4.4"
50885088
"@metamask/base-controller": "npm:^9.0.0"
50895089
"@metamask/bridge-controller": "npm:^67.2.0"

0 commit comments

Comments
 (0)