Skip to content

Commit 5a84609

Browse files
Release 296.0.0 (#5292)
Releasing some accounts-related packages changes. --------- Co-authored-by: cryptodev-2s <[email protected]>
1 parent 8d7c15e commit 5a84609

File tree

22 files changed

+143
-72
lines changed

22 files changed

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

packages/accounts-controller/CHANGELOG.md

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

88
## [Unreleased]
99

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

1214
- **BREAKING:** Bump `@metamask/snaps-controllers` peer dependency from `^9.7.0` to `^9.19.0` ([#5265](https://github.com/MetaMask/core/pull/5265))
13-
- Bump `@metamask/snaps-sdk` from `^6.16.0` to `^6.17.1` ([#5265](https://github.com/MetaMask/core/pull/5265))
14-
- Bump `@metamask/snaps-utils` from `^8.9.0` to `^8.10.0` ([#5265](https://github.com/MetaMask/core/pull/5265))
15-
- Bump `@metamask/eth-snap-keyring` from `^9.1.1` to `^10.0.0` ([#5280](https://github.com/MetaMask/core/pull/5280))
1615
- Bump `@metamask/keyring-api"` from `^16.1.0` to `^17.0.0` ([#5280](https://github.com/MetaMask/core/pull/5280))
16+
- Bump `@metamask/eth-snap-keyring` from `^9.1.1` to `^10.0.0` ([#5280](https://github.com/MetaMask/core/pull/5280))
17+
- Bump `@metamask/snaps-sdk` from `^6.7.0` to `^6.17.1` ([#5220](https://github.com/MetaMask/core/pull/5220)), ([#5265](https://github.com/MetaMask/core/pull/5265))
18+
- Bump `@metamask/snaps-utils` from `^8.9.0` to `^8.10.0` ([#5265](https://github.com/MetaMask/core/pull/5265))
19+
- Bump `@metamask/utils` from `^11.0.1` to `^11.1.0` ([#5223](https://github.com/MetaMask/core/pull/5223))
20+
21+
### Fixed
22+
23+
- Properly exports public members ([#5224](https://github.com/MetaMask/core/pull/5224))
24+
- The new events (`AccountsController:account{AssetList,Balances,Transactions}Updated`) from the previous versions but were not exported.
1725

1826
## [22.0.0]
1927

@@ -424,7 +432,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
424432

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

427-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
435+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
436+
[23.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
428437
[22.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
429438
[21.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
430439
[21.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

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": "22.0.0",
3+
"version": "23.0.0",
44
"description": "Manages internal accounts",
55
"keywords": [
66
"MetaMask",
@@ -62,7 +62,7 @@
6262
},
6363
"devDependencies": {
6464
"@metamask/auto-changelog": "^3.4.4",
65-
"@metamask/keyring-controller": "^19.0.5",
65+
"@metamask/keyring-controller": "^19.0.6",
6666
"@metamask/providers": "^18.1.1",
6767
"@metamask/snaps-controllers": "^9.19.0",
6868
"@types/jest": "^27.4.1",

packages/assets-controllers/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [48.0.0]
11+
12+
### Added
13+
14+
- Add `MultichainAssetsController` for non-EVM assets ([#5138](https://github.com/MetaMask/core/pull/5138))
15+
1016
### Changed
1117

12-
- Bump `@metamask/snaps-utils` from `^8.9.0` to `^8.10.0` ([#5265](https://github.com/MetaMask/core/pull/5265))
18+
- **BREAKING:** Bump `@metamask/accounts-controller` peer dependency from `^22.0.0` to `^23.0.0` ([#5292](https://github.com/MetaMask/core/pull/5292))
1319
- Bump `@metamask/keyring-api"` from `^16.1.0` to `^17.0.0` ([#5280](https://github.com/MetaMask/core/pull/5280))
20+
- Bump `@metamask/snaps-utils` from `^8.9.0` to `^8.10.0` ([#5265](https://github.com/MetaMask/core/pull/5265))
21+
- Bump `@metamask/utils` from `^11.0.1` to `^11.1.0` ([#5223](https://github.com/MetaMask/core/pull/5223))
22+
- Removed polling mechanism in the `MultichainBalancesController` and now relies on the new `AccountsController:accountBalancesUpdated` event ([#5221](https://github.com/MetaMask/core/pull/5221))
23+
24+
### Fixed
25+
26+
- The tokens state is now updated only when the `tokenChainId` matches the currently selected chain ID. ([#5257](https://github.com/MetaMask/core/pull/5257))
1427

1528
## [47.0.0]
1629

@@ -1362,7 +1375,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13621375
13631376
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
13641377
1365-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
1378+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
1379+
[48.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
13661380
[47.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
13671381
[46.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
13681382
[46.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/assets-controllers/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/assets-controllers",
3-
"version": "47.0.0",
3+
"version": "48.0.0",
44
"description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)",
55
"keywords": [
66
"MetaMask",
@@ -77,11 +77,11 @@
7777
},
7878
"devDependencies": {
7979
"@babel/runtime": "^7.23.9",
80-
"@metamask/accounts-controller": "^22.0.0",
80+
"@metamask/accounts-controller": "^23.0.0",
8181
"@metamask/approval-controller": "^7.1.2",
8282
"@metamask/auto-changelog": "^3.4.4",
8383
"@metamask/ethjs-provider-http": "^0.3.0",
84-
"@metamask/keyring-controller": "^19.0.5",
84+
"@metamask/keyring-controller": "^19.0.6",
8585
"@metamask/keyring-internal-api": "^4.0.1",
8686
"@metamask/keyring-snap-client": "^3.0.3",
8787
"@metamask/network-controller": "^22.2.0",
@@ -105,7 +105,7 @@
105105
"webextension-polyfill": "^0.12.0"
106106
},
107107
"peerDependencies": {
108-
"@metamask/accounts-controller": "^22.0.0",
108+
"@metamask/accounts-controller": "^23.0.0",
109109
"@metamask/approval-controller": "^7.0.0",
110110
"@metamask/keyring-controller": "^19.0.0",
111111
"@metamask/network-controller": "^22.0.0",

packages/earn-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.2.0]
11+
12+
### Changed
13+
14+
- **BREAKING:** Bump `@metamask/accounts-controller` peer dependency from `^22.0.0` to `^23.0.0` ([#5292](https://github.com/MetaMask/core/pull/5292))
15+
- Bump `@metamask/controller-utils` dependency from `^11.4.5` to `^11.5.0`([#5272](https://github.com/MetaMask/core/pull/5272))
16+
1017
## [0.1.0]
1118

1219
### Added
1320

1421
- Initial release ([#5271](https://github.com/MetaMask/core/pull/5271))
1522

16-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
23+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
24+
[0.2.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
1725
[0.1.0]: https://github.com/MetaMask/core/releases/tag/@metamask/[email protected]

packages/earn-controller/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/earn-controller",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "Manages state for earning features and coordinates interactions between staking services, SDK integrations, and other controllers to enable users to participate in various earning opportunities",
55
"keywords": [
66
"MetaMask",
@@ -53,7 +53,7 @@
5353
"@metamask/stake-sdk": "^1.0.0"
5454
},
5555
"devDependencies": {
56-
"@metamask/accounts-controller": "^22.0.0",
56+
"@metamask/accounts-controller": "^23.0.0",
5757
"@metamask/auto-changelog": "^3.4.4",
5858
"@metamask/network-controller": "^22.2.0",
5959
"@types/jest": "^27.4.1",
@@ -65,7 +65,7 @@
6565
"typescript": "~5.2.2"
6666
},
6767
"peerDependencies": {
68-
"@metamask/accounts-controller": "^22.0.0",
68+
"@metamask/accounts-controller": "^23.0.0",
6969
"@metamask/network-controller": "^22.1.1"
7070
},
7171
"engines": {

packages/keyring-controller/CHANGELOG.md

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

88
## [Unreleased]
99

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

1214
- Bump `@metamask/keyring-api"` from `^16.1.0` to `^17.0.0` ([#5280](https://github.com/MetaMask/core/pull/5280))
15+
- Bump `@metamask/utils` from `^11.0.1` to `^11.1.0` ([#5223](https://github.com/MetaMask/core/pull/5223))
1316

1417
## [19.0.5]
1518

@@ -650,7 +653,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
650653

651654
All changes listed after this point were applied to this package following the monorepo conversion.
652655

653-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
656+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
657+
[19.0.6]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
654658
[19.0.5]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
655659
[19.0.4]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
656660
[19.0.3]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/keyring-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/keyring-controller",
3-
"version": "19.0.5",
3+
"version": "19.0.6",
44
"description": "Stores identities seen in the wallet and manages interactions such as signing",
55
"keywords": [
66
"MetaMask",

packages/multichain-transactions-controller/CHANGELOG.md

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

88
## [Unreleased]
99

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

14+
- **BREAKING:** Bump `@metamask/accounts-controller` peer dependency from `^22.0.0` to `^23.0.0` ([#5292](https://github.com/MetaMask/core/pull/5292))
1215
- **BREAKING:** Bump `@metamask/snaps-controllers` peer dependency from `^9.10.0` to `^9.19.0` ([#5265](https://github.com/MetaMask/core/pull/5265))
13-
- Bump `@metamask/snaps-sdk` from `^6.16.0` to `^6.17.1` ([#5265](https://github.com/MetaMask/core/pull/5265))
16+
- Bump `@metamask/snaps-sdk` from `^6.7.0` to `^6.17.1` ([#5220](https://github.com/MetaMask/core/pull/5220)), ([#5265](https://github.com/MetaMask/core/pull/5265))
1417
- Bump `@metamask/snaps-utils` from `^8.9.0` to `^8.10.0` ([#5265](https://github.com/MetaMask/core/pull/5265))
1518
- Bump `@metamask/snaps-controllers` from `^9.10.0` to `^9.19.0` ([#5265](https://github.com/MetaMask/core/pull/5265))
1619
- Bump `@metamask/keyring-api"` from `^16.1.0` to `^17.0.0` ([#5280](https://github.com/MetaMask/core/pull/5280))
20+
- Bump `@metamask/utils` from `^11.0.1` to `^11.1.0` ([#5223](https://github.com/MetaMask/core/pull/5223))
21+
- Removed polling mechanism and now relies on the new `AccountsController:accountTransactionsUpdated` event ([#5221](https://github.com/MetaMask/core/pull/5221))
1722

1823
## [0.1.0]
1924

@@ -30,6 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3035

3136
- Initial release ([#5133](https://github.com/MetaMask/core/pull/5133)), ([#5177](https://github.com/MetaMask/core/pull/5177))
3237

33-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
38+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
39+
[0.2.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
3440
[0.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
3541
[0.0.1]: https://github.com/MetaMask/core/releases/tag/@metamask/[email protected]

0 commit comments

Comments
 (0)