Skip to content

Commit 04ca19a

Browse files
authored
Release/365.0.0 (#5665)
## 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? --> Releasing new major version of `@metamask/assets-controllers` with the new `DeFiPositionsController`. ## 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 - [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), highlighting breaking changes as necessary - [X] I've prepared draft pull requests for clients and consumer packages to resolve any breaking changes
1 parent c081c89 commit 04ca19a

File tree

8 files changed

+24
-14
lines changed

8 files changed

+24
-14
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/core-monorepo",
3-
"version": "364.0.0",
3+
"version": "365.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

packages/assets-controllers/CHANGELOG.md

+4-1
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+
## [57.0.0]
11+
1012
### Added
1113

1214
- Add a new `DeFiPositionsController` that maintains an updated list of DeFi positions for EVM accounts ([#5400](https://github.com/MetaMask/core/pull/5400))
@@ -1537,7 +1539,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15371539
15381540
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
15391541
1540-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
1542+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
1543+
[57.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
15411544
[56.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
15421545
[55.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
15431546
[55.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/assets-controllers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/assets-controllers",
3-
"version": "56.0.0",
3+
"version": "57.0.0",
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

+8-1
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+
## [15.0.0]
11+
12+
### Changed
13+
14+
- **BREAKING:** Bump `@metamask/assets-controllers` peer dependency to `^57.0.0` ([#5665](https://github.com/MetaMask/core/pull/5665))
15+
1016
## [14.0.0]
1117

1218
### Added
@@ -140,7 +146,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
140146

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

143-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
149+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
150+
[15.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
144151
[14.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
145152
[13.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
146153
[12.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/bridge-controller/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/bridge-controller",
3-
"version": "14.0.0",
3+
"version": "15.0.0",
44
"description": "Manages bridge-related quote fetching functionality for MetaMask",
55
"keywords": [
66
"MetaMask",
@@ -65,7 +65,7 @@
6565
},
6666
"devDependencies": {
6767
"@metamask/accounts-controller": "^27.0.0",
68-
"@metamask/assets-controllers": "^56.0.0",
68+
"@metamask/assets-controllers": "^57.0.0",
6969
"@metamask/auto-changelog": "^3.4.4",
7070
"@metamask/eth-json-rpc-provider": "^4.1.8",
7171
"@metamask/network-controller": "^23.2.0",
@@ -85,7 +85,7 @@
8585
},
8686
"peerDependencies": {
8787
"@metamask/accounts-controller": "^27.0.0",
88-
"@metamask/assets-controllers": "^56.0.0",
88+
"@metamask/assets-controllers": "^57.0.0",
8989
"@metamask/network-controller": "^23.0.0",
9090
"@metamask/snaps-controllers": "^9.19.0",
9191
"@metamask/transaction-controller": "^54.0.0"

packages/bridge-status-controller/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515

1616
### Changed
1717

18-
- Bump `@metamask/bridge-controller` dependency to `^14.0.0` ([#5657](https://github.com/MetaMask/core/pull/5657))
18+
- Bump `@metamask/bridge-controller` dependency to `^15.0.0` ([#5657](https://github.com/MetaMask/core/pull/5657), [#5665](https://github.com/MetaMask/core/pull/5665))
1919
- Add optional config.customBridgeApiBaseUrl constructor arg to set the bridge-api base URL ([#5634](https://github.com/MetaMask/core/pull/5634))
2020

2121
### Fixed

packages/bridge-status-controller/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
},
4949
"dependencies": {
5050
"@metamask/base-controller": "^8.0.0",
51-
"@metamask/bridge-controller": "^14.0.0",
51+
"@metamask/bridge-controller": "^15.0.0",
5252
"@metamask/controller-utils": "^11.7.0",
5353
"@metamask/polling-controller": "^13.0.0",
5454
"@metamask/superstruct": "^3.1.0",

yarn.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -2555,7 +2555,7 @@ __metadata:
25552555
languageName: unknown
25562556
linkType: soft
25572557

2558-
"@metamask/assets-controllers@npm:^56.0.0, @metamask/assets-controllers@workspace:packages/assets-controllers":
2558+
"@metamask/assets-controllers@npm:^57.0.0, @metamask/assets-controllers@workspace:packages/assets-controllers":
25592559
version: 0.0.0-use.local
25602560
resolution: "@metamask/assets-controllers@workspace:packages/assets-controllers"
25612561
dependencies:
@@ -2689,7 +2689,7 @@ __metadata:
26892689
languageName: unknown
26902690
linkType: soft
26912691

2692-
"@metamask/bridge-controller@npm:^14.0.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
2692+
"@metamask/bridge-controller@npm:^15.0.0, @metamask/bridge-controller@workspace:packages/bridge-controller":
26932693
version: 0.0.0-use.local
26942694
resolution: "@metamask/bridge-controller@workspace:packages/bridge-controller"
26952695
dependencies:
@@ -2699,7 +2699,7 @@ __metadata:
26992699
"@ethersproject/contracts": "npm:^5.7.0"
27002700
"@ethersproject/providers": "npm:^5.7.0"
27012701
"@metamask/accounts-controller": "npm:^27.0.0"
2702-
"@metamask/assets-controllers": "npm:^56.0.0"
2702+
"@metamask/assets-controllers": "npm:^57.0.0"
27032703
"@metamask/auto-changelog": "npm:^3.4.4"
27042704
"@metamask/base-controller": "npm:^8.0.0"
27052705
"@metamask/controller-utils": "npm:^11.7.0"
@@ -2728,7 +2728,7 @@ __metadata:
27282728
typescript: "npm:~5.2.2"
27292729
peerDependencies:
27302730
"@metamask/accounts-controller": ^27.0.0
2731-
"@metamask/assets-controllers": ^56.0.0
2731+
"@metamask/assets-controllers": ^57.0.0
27322732
"@metamask/network-controller": ^23.0.0
27332733
"@metamask/snaps-controllers": ^9.19.0
27342734
"@metamask/transaction-controller": ^54.0.0
@@ -2742,7 +2742,7 @@ __metadata:
27422742
"@metamask/accounts-controller": "npm:^27.0.0"
27432743
"@metamask/auto-changelog": "npm:^3.4.4"
27442744
"@metamask/base-controller": "npm:^8.0.0"
2745-
"@metamask/bridge-controller": "npm:^14.0.0"
2745+
"@metamask/bridge-controller": "npm:^15.0.0"
27462746
"@metamask/controller-utils": "npm:^11.7.0"
27472747
"@metamask/network-controller": "npm:^23.2.0"
27482748
"@metamask/polling-controller": "npm:^13.0.0"

0 commit comments

Comments
 (0)