Skip to content

Commit 0b71faa

Browse files
authored
Merge branch 'main' into 230927-integrate-eth-json-rpc-provider
2 parents 55ae5c6 + 855a752 commit 0b71faa

File tree

38 files changed

+244
-105
lines changed

38 files changed

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

packages/accounts-controller/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [3.0.0]
10+
### Changed
11+
- **BREAKING:** Bump dependency on `@metamask/eth-snap-keyring` to ^1.0.0 ([#1735](https://github.com/MetaMask/core/pull/1735))
12+
- **BREAKING:** Bump dependency on `@metamask/keyring-api` to ^1.0.0 ([#1735](https://github.com/MetaMask/core/pull/1735))
13+
- **BREAKING:** Bump dependency on `@metamask/snaps-utils` to ^3.0.0 ([#1735](https://github.com/MetaMask/core/pull/1735))
14+
- Bump dependency and peer dependency on `@metamask/keyring-controller` to ^8.0.3
15+
916
## [2.0.2]
1017
### Changed
1118
- Bump dependency on `@metamask/utils` to ^8.1.0 ([#1639](https://github.com/MetaMask/core/pull/1639))
@@ -27,7 +34,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2734
### Added
2835
- Initial release ([#1637](https://github.com/MetaMask/core/pull/1637))
2936

30-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
37+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
38+
[3.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
3139
[2.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
3240
[2.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
3341
[2.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/accounts-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/accounts-controller",
3-
"version": "2.0.2",
3+
"version": "3.0.0",
44
"description": "Manages internal accounts",
55
"keywords": [
66
"MetaMask",
@@ -41,7 +41,7 @@
4141
},
4242
"devDependencies": {
4343
"@metamask/auto-changelog": "^3.1.0",
44-
"@metamask/keyring-controller": "^8.0.2",
44+
"@metamask/keyring-controller": "^8.0.3",
4545
"@metamask/snaps-controllers": "^3.0.0",
4646
"@types/jest": "^27.4.1",
4747
"@types/readable-stream": "^2.3.0",
@@ -52,7 +52,7 @@
5252
"typescript": "~4.8.4"
5353
},
5454
"peerDependencies": {
55-
"@metamask/keyring-controller": "^8.0.2"
55+
"@metamask/keyring-controller": "^8.0.3"
5656
},
5757
"engines": {
5858
"node": ">=16.0.0"

packages/announcement-controller/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [4.0.3]
10+
### Changed
11+
- Bump dependency on `@metamask/base-controller` to ^3.2.3 ([#1747](https://github.com/MetaMask/core/pull/1747))
12+
913
## [4.0.2]
1014
### Changed
1115
- Update TypeScript to v4.8.x ([#1718](https://github.com/MetaMask/core/pull/1718))
@@ -61,7 +65,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6165

6266
All changes listed after this point were applied to this package following the monorepo conversion.
6367

64-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
68+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
69+
[4.0.3]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
6570
[4.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
6671
[4.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
6772
[4.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/announcement-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/announcement-controller",
3-
"version": "4.0.2",
3+
"version": "4.0.3",
44
"description": "Manages in-app announcements",
55
"keywords": [
66
"MetaMask",

packages/approval-controller/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [4.0.1]
10+
### Changed
11+
- Bump dependency on `@metamask/rpc-errors` to ^6.1.0 ([#1653](https://github.com/MetaMask/core/pull/1653))
12+
913
## [4.0.0]
1014
### Changed
1115
- **BREAKING:** Move `eth-rpc-errors@^4.0.2` dependency to `@metamask/rpc-errors@^6.0.2` ([#1743](https://github.com/MetaMask/core/pull/1743))
@@ -82,7 +86,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8286

8387
All changes listed after this point were applied to this package following the monorepo conversion.
8488

85-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
89+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
90+
[4.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
8691
[4.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
8792
[3.5.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
8893
[3.5.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/approval-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/approval-controller",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "Manages requests that require user approval",
55
"keywords": [
66
"MetaMask",

packages/assets-controllers/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [16.0.0]
10+
### Added
11+
- Add way to start and stop different polling sessions for the same network client ID by providing extra scoping data ([#1776](https://github.com/MetaMask/core/pull/1776))
12+
- Add optional second argument to `stopPollingByPollingToken` (formerly `stopPollingByNetworkClientId`)
13+
- Add optional second argument to `onPollingCompleteByNetworkClientId`
14+
15+
### Changed
16+
- **BREAKING:** Bump dependency and peer dependency on `@metamask/network-controller` to ^15.0.0
17+
- **BREAKING:** Make `executePoll` in TokenListController private ([#1810](https://github.com/MetaMask/core/pull/1810))
18+
- **BREAKING:** Update TokenListController to rename `stopPollingByNetworkClientId` to `stopPollingByPollingToken` ([#1810](https://github.com/MetaMask/core/pull/1810))
19+
- Add missing dependency on `@metamask/polling-controller` ([#1831](https://github.com/MetaMask/core/pull/1831))
20+
- Bump dependency and peer dependency on `@metamask/approval-controller` to ^4.0.1
21+
- Bump dependency and peer dependency on `@metamask/preferences-controller` to ^4.4.3
22+
923
## [15.0.0]
1024
### Changed
1125
- **BREAKING**: `NftController` now expects `getNetworkClientById` in constructor options ([#1698](https://github.com/MetaMask/core/pull/1698))
@@ -320,7 +334,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
320334
### Changed
321335
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
322336
323-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
337+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
338+
[16.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
324339
[15.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
325340
[14.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
326341
[13.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/assets-controllers/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/assets-controllers",
3-
"version": "15.0.0",
3+
"version": "16.0.0",
44
"description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)",
55
"keywords": [
66
"MetaMask",
@@ -34,15 +34,15 @@
3434
"@ethersproject/contracts": "^5.7.0",
3535
"@ethersproject/providers": "^5.7.0",
3636
"@metamask/abi-utils": "^2.0.2",
37-
"@metamask/approval-controller": "^4.0.0",
37+
"@metamask/approval-controller": "^4.0.1",
3838
"@metamask/base-controller": "^3.2.3",
3939
"@metamask/contract-metadata": "^2.3.1",
4040
"@metamask/controller-utils": "^5.0.2",
4141
"@metamask/eth-query": "^3.0.1",
4242
"@metamask/metamask-eth-abis": "3.0.0",
43-
"@metamask/network-controller": "^14.0.0",
44-
"@metamask/polling-controller": "^0.1.0",
45-
"@metamask/preferences-controller": "^4.4.2",
43+
"@metamask/network-controller": "^15.0.0",
44+
"@metamask/polling-controller": "^0.2.0",
45+
"@metamask/preferences-controller": "^4.4.3",
4646
"@metamask/rpc-errors": "^6.1.0",
4747
"@metamask/utils": "^8.1.0",
4848
"@types/uuid": "^8.3.0",
@@ -69,9 +69,9 @@
6969
"typescript": "~4.8.4"
7070
},
7171
"peerDependencies": {
72-
"@metamask/approval-controller": "^4.0.0",
73-
"@metamask/network-controller": "^14.0.0",
74-
"@metamask/preferences-controller": "^4.4.2"
72+
"@metamask/approval-controller": "^4.0.1",
73+
"@metamask/network-controller": "^15.0.0",
74+
"@metamask/preferences-controller": "^4.4.3"
7575
},
7676
"engines": {
7777
"node": ">=16.0.0"

packages/composable-controller/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [3.0.3]
10+
### Changed
11+
- Bump dependency on `@metamask/base-controller` to ^3.2.3 ([#1747](https://github.com/MetaMask/core/pull/1747))
12+
913
## [3.0.2]
1014
### Changed
1115
- Update TypeScript to v4.8.x ([#1718](https://github.com/MetaMask/core/pull/1718))
@@ -41,7 +45,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4145

4246
All changes listed after this point were applied to this package following the monorepo conversion.
4347

44-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
48+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
49+
[3.0.3]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
4550
[3.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
4651
[3.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
4752
[3.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

0 commit comments

Comments
 (0)