Skip to content

Commit 2e5fb8c

Browse files
authored
Release/545.0.0 (#6570)
## 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/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 9ed03e0 commit 2e5fb8c

File tree

8 files changed

+17
-10
lines changed

8 files changed

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

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

1214
- Add two new controller state metadata properties: `includeInStateLogs` and `usedInUi` ([#6472](https://github.com/MetaMask/core/pull/6472))
@@ -1970,7 +1972,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
19701972
19711973
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
19721974
1973-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@74.3.3...HEAD
1975+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@75.0.0...HEAD
1976+
[75.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@74.3.3...@metamask/assets-controllers@75.0.0
19741977
[74.3.3]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@74.3.2...@metamask/assets-controllers@74.3.3
19751978
[74.3.2]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@74.3.1...@metamask/assets-controllers@74.3.2
19761979
[74.3.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@74.3.0...@metamask/assets-controllers@74.3.1

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": "74.3.3",
3+
"version": "75.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

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

1010
### Changed
1111

12+
- **BREAKING:** Bump peer dependency `@metamask/assets-controller` from `^74.0.0` to `^75.0.0` ([#6570](https://github.com/MetaMask/core/pull/6570))
1213
- Bump `@metamask/keyring-api` from `^20.1.0` to `^21.0.0` ([#6560](https://github.com/MetaMask/core/pull/6560))
1314

1415
## [42.0.0]

packages/bridge-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
},
6767
"devDependencies": {
6868
"@metamask/accounts-controller": "^33.0.0",
69-
"@metamask/assets-controllers": "^74.3.3",
69+
"@metamask/assets-controllers": "^75.0.0",
7070
"@metamask/auto-changelog": "^3.4.4",
7171
"@metamask/eth-json-rpc-provider": "^4.1.8",
7272
"@metamask/network-controller": "^24.1.0",
@@ -87,7 +87,7 @@
8787
},
8888
"peerDependencies": {
8989
"@metamask/accounts-controller": "^33.0.0",
90-
"@metamask/assets-controllers": "^74.0.0",
90+
"@metamask/assets-controllers": "^75.0.0",
9191
"@metamask/network-controller": "^24.0.0",
9292
"@metamask/remote-feature-flag-controller": "^1.6.0",
9393
"@metamask/snaps-controllers": "^14.0.0",

packages/network-enablement-controller/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+
## [0.6.0]
11+
1012
### Added
1113

1214
- Add two new controller state metadata properties: `includeInStateLogs` and `usedInUi` ([#6472](https://github.com/MetaMask/core/pull/6472))
@@ -72,7 +74,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7274

7375
- Initial release ([#6028](https://github.com/MetaMask/core/pull/6028))
7476

75-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-enablement-controller@0.5.0...HEAD
77+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-enablement-controller@0.6.0...HEAD
78+
[0.6.0]: https://github.com/MetaMask/core/compare/@metamask/network-enablement-controller@0.5.0...@metamask/network-enablement-controller@0.6.0
7679
[0.5.0]: https://github.com/MetaMask/core/compare/@metamask/network-enablement-controller@0.4.0...@metamask/network-enablement-controller@0.5.0
7780
[0.4.0]: https://github.com/MetaMask/core/compare/@metamask/network-enablement-controller@0.3.0...@metamask/network-enablement-controller@0.4.0
7881
[0.3.0]: https://github.com/MetaMask/core/compare/@metamask/network-enablement-controller@0.2.0...@metamask/network-enablement-controller@0.3.0

packages/network-enablement-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/network-enablement-controller",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "Provides an interface to the currently enabled network using a MetaMask-compatible provider object",
55
"keywords": [
66
"MetaMask",

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2574,7 +2574,7 @@ __metadata:
25742574
languageName: unknown
25752575
linkType: soft
25762576

2577-
"@metamask/assets-controllers@npm:^74.3.3, @metamask/assets-controllers@workspace:packages/assets-controllers":
2577+
"@metamask/assets-controllers@npm:^75.0.0, @metamask/assets-controllers@workspace:packages/assets-controllers":
25782578
version: 0.0.0-use.local
25792579
resolution: "@metamask/assets-controllers@workspace:packages/assets-controllers"
25802580
dependencies:
@@ -2733,7 +2733,7 @@ __metadata:
27332733
"@ethersproject/contracts": "npm:^5.7.0"
27342734
"@ethersproject/providers": "npm:^5.7.0"
27352735
"@metamask/accounts-controller": "npm:^33.0.0"
2736-
"@metamask/assets-controllers": "npm:^74.3.3"
2736+
"@metamask/assets-controllers": "npm:^75.0.0"
27372737
"@metamask/auto-changelog": "npm:^3.4.4"
27382738
"@metamask/base-controller": "npm:^8.3.0"
27392739
"@metamask/controller-utils": "npm:^11.12.0"
@@ -2764,7 +2764,7 @@ __metadata:
27642764
uuid: "npm:^8.3.2"
27652765
peerDependencies:
27662766
"@metamask/accounts-controller": ^33.0.0
2767-
"@metamask/assets-controllers": ^74.0.0
2767+
"@metamask/assets-controllers": ^75.0.0
27682768
"@metamask/network-controller": ^24.0.0
27692769
"@metamask/remote-feature-flag-controller": ^1.6.0
27702770
"@metamask/snaps-controllers": ^14.0.0

0 commit comments

Comments
 (0)