Skip to content

Commit 0c526ee

Browse files
Gudahttmcmire
andauthored
Release 262.0.0 (#5012)
This release was motivated by #5011. --------- Co-authored-by: Elliot Winkler <elliot.winkler@gmail.com>
1 parent eb29045 commit 0c526ee

File tree

61 files changed

+503
-182
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+503
-182
lines changed

examples/example-controllers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
},
5353
"devDependencies": {
5454
"@metamask/auto-changelog": "^3.4.4",
55-
"@metamask/controller-utils": "^11.4.3",
55+
"@metamask/controller-utils": "^11.4.4",
5656
"@types/jest": "^27.4.1",
5757
"deepmerge": "^4.2.2",
5858
"jest": "^27.5.1",

package.json

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

packages/accounts-controller/CHANGELOG.md

+7-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+
## [20.0.1]
11+
1012
### Fixed
1113

1214
- Make implicit peer dependencies explicit ([#4974](https://github.com/MetaMask/core/pull/4974))
@@ -15,6 +17,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1517
- `webextension-polyfill` `^0.10.0 || ^0.11.0 || ^0.12.0` (required by `@metamask/providers`)
1618
- These dependencies really should be present in projects that consume this package (e.g. MetaMask clients), and this change ensures that they now are.
1719
- Furthermore, we are assuming that clients already use these dependencies, since otherwise it would be impossible to consume this package in its entirety or even create a working build. Hence, the addition of these peer dependencies is really a formality and should not be breaking.
20+
- Correct ESM-compatible build so that imports of the following packages that re-export other modules via `export *` are no longer corrupted: ([#5011](https://github.com/MetaMask/core/pull/5011))
21+
- `@metamask/keyring-api`
22+
- `@metamask/eth-snap-keyring`
1823

1924
## [20.0.0]
2025

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

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

366-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@20.0.0...HEAD
371+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@20.0.1...HEAD
372+
[20.0.1]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@20.0.0...@metamask/accounts-controller@20.0.1
367373
[20.0.0]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@19.0.0...@metamask/accounts-controller@20.0.0
368374
[19.0.0]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@18.2.3...@metamask/accounts-controller@19.0.0
369375
[18.2.3]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@18.2.2...@metamask/accounts-controller@18.2.3

packages/accounts-controller/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/accounts-controller",
3-
"version": "20.0.0",
3+
"version": "20.0.1",
44
"description": "Manages internal accounts",
55
"keywords": [
66
"MetaMask",
@@ -61,7 +61,7 @@
6161
},
6262
"devDependencies": {
6363
"@metamask/auto-changelog": "^3.4.4",
64-
"@metamask/keyring-controller": "^19.0.0",
64+
"@metamask/keyring-controller": "^19.0.1",
6565
"@metamask/providers": "^18.1.1",
6666
"@metamask/snaps-controllers": "^9.10.0",
6767
"@types/jest": "^27.4.1",

packages/address-book-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [6.0.2]
11+
12+
### Changed
13+
14+
- Bump `@metamask/utils` from `^9.1.0` to `^10.0.0` ([#4831](https://github.com/MetaMask/core/pull/4831))
15+
- Bump `@metamask/base-controller` from `^7.0.1` to `^7.0.2` ([#4862](https://github.com/MetaMask/core/pull/4862))
16+
- Bump `@metamask/controller-utils` from `^11.3.0` to `^11.4.4` ([#4834](https://github.com/MetaMask/core/pull/4834), [#4862](https://github.com/MetaMask/core/pull/4862), [#4870](https://github.com/MetaMask/core/pull/4870), [#4915](https://github.com/MetaMask/core/pull/4915), [#5012](https://github.com/MetaMask/core/pull/5012))
17+
1018
## [6.0.1]
1119

1220
### Fixed
@@ -186,7 +194,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
186194

187195
All changes listed after this point were applied to this package following the monorepo conversion.
188196

189-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/address-book-controller@6.0.1...HEAD
197+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/address-book-controller@6.0.2...HEAD
198+
[6.0.2]: https://github.com/MetaMask/core/compare/@metamask/address-book-controller@6.0.1...@metamask/address-book-controller@6.0.2
190199
[6.0.1]: https://github.com/MetaMask/core/compare/@metamask/address-book-controller@6.0.0...@metamask/address-book-controller@6.0.1
191200
[6.0.0]: https://github.com/MetaMask/core/compare/@metamask/address-book-controller@5.0.0...@metamask/address-book-controller@6.0.0
192201
[5.0.0]: https://github.com/MetaMask/core/compare/@metamask/address-book-controller@4.0.2...@metamask/address-book-controller@5.0.0

packages/address-book-controller/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/address-book-controller",
3-
"version": "6.0.1",
3+
"version": "6.0.2",
44
"description": "Manages a list of recipient addresses associated with nicknames",
55
"keywords": [
66
"MetaMask",
@@ -48,7 +48,7 @@
4848
},
4949
"dependencies": {
5050
"@metamask/base-controller": "^7.0.2",
51-
"@metamask/controller-utils": "^11.4.3",
51+
"@metamask/controller-utils": "^11.4.4",
5252
"@metamask/utils": "^10.0.0"
5353
},
5454
"devDependencies": {

packages/announcement-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+
## [7.0.2]
11+
12+
### Changed
13+
14+
- Bump `@metamask/base-controller` from `^7.0.1` to `^7.0.2` ([#4862](https://github.com/MetaMask/core/pull/4862))
15+
1016
## [7.0.1]
1117

1218
### Changed
@@ -164,7 +170,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
164170

165171
All changes listed after this point were applied to this package following the monorepo conversion.
166172

167-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/announcement-controller@7.0.1...HEAD
173+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/announcement-controller@7.0.2...HEAD
174+
[7.0.2]: https://github.com/MetaMask/core/compare/@metamask/announcement-controller@7.0.1...@metamask/announcement-controller@7.0.2
168175
[7.0.1]: https://github.com/MetaMask/core/compare/@metamask/announcement-controller@7.0.0...@metamask/announcement-controller@7.0.1
169176
[7.0.0]: https://github.com/MetaMask/core/compare/@metamask/announcement-controller@6.1.1...@metamask/announcement-controller@7.0.0
170177
[6.1.1]: https://github.com/MetaMask/core/compare/@metamask/announcement-controller@6.1.0...@metamask/announcement-controller@6.1.1

packages/announcement-controller/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/announcement-controller",
3-
"version": "7.0.1",
3+
"version": "7.0.2",
44
"description": "Manages in-app announcements",
55
"keywords": [
66
"MetaMask",

packages/assets-controllers/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [45.1.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/controller-utils` from `^11.3.0` to `^11.4.4` ([#5012](https://github.com/MetaMask/core/pull/5012))
15+
- Bump `@metamask/polling-controller` from `^12.0.1` to `^12.0.2` ([#5012](https://github.com/MetaMask/core/pull/5012))
16+
1017
### Fixed
1118

1219
- Make implicit peer dependencies explicit ([#4974](https://github.com/MetaMask/core/pull/4974))
@@ -15,6 +22,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1522
- `webextension-polyfill` `^0.10.0 || ^0.11.0 || ^0.12.0` (required by `@metamask/providers`)
1623
- These dependencies really should be present in projects that consume this package (e.g. MetaMask clients), and this change ensures that they now are.
1724
- Furthermore, we are assuming that clients already use these dependencies, since otherwise it would be impossible to consume this package in its entirety or even create a working build. Hence, the addition of these peer dependencies is really a formality and should not be breaking.
25+
- Fix `TokensController.ignoreTokens` so that if a network is provided, `allIgnoredTokens`, `allTokens`, and `allDetectedTokens` for that network no longer get corrupted with tokens from the globally selected network ([#4967](https://github.com/MetaMask/core/pull/4967))
26+
- Correct ESM-compatible build so that imports of the following packages that re-export other modules via `export *` are no longer corrupted: ([#5011](https://github.com/MetaMask/core/pull/5011))
27+
- `@metamask/abi-utils`
28+
- `@metamask/contract-metadata`
29+
- `@metamask/eth-query`
30+
- `@ethereumjs/util`
31+
- `bn.js`
32+
- `cockatiel`
33+
- `lodash`
34+
- `single-call-balance-checker-abi`
1835

1936
## [45.1.0]
2037

@@ -1274,7 +1291,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12741291
12751292
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
12761293
1277-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@45.1.0...HEAD
1294+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@45.1.1...HEAD
1295+
[45.1.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@45.1.0...@metamask/assets-controllers@45.1.1
12781296
[45.1.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@45.0.0...@metamask/assets-controllers@45.1.0
12791297
[45.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@44.1.0...@metamask/assets-controllers@45.0.0
12801298
[44.1.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@44.0.1...@metamask/assets-controllers@44.1.0

packages/assets-controllers/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/assets-controllers",
3-
"version": "45.1.0",
3+
"version": "45.1.1",
44
"description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)",
55
"keywords": [
66
"MetaMask",
@@ -56,10 +56,10 @@
5656
"@metamask/abi-utils": "^2.0.3",
5757
"@metamask/base-controller": "^7.0.2",
5858
"@metamask/contract-metadata": "^2.4.0",
59-
"@metamask/controller-utils": "^11.4.3",
59+
"@metamask/controller-utils": "^11.4.4",
6060
"@metamask/eth-query": "^4.0.0",
6161
"@metamask/metamask-eth-abis": "^3.1.1",
62-
"@metamask/polling-controller": "^12.0.1",
62+
"@metamask/polling-controller": "^12.0.2",
6363
"@metamask/rpc-errors": "^7.0.1",
6464
"@metamask/utils": "^10.0.0",
6565
"@types/bn.js": "^5.1.5",
@@ -75,14 +75,14 @@
7575
},
7676
"devDependencies": {
7777
"@babel/runtime": "^7.23.9",
78-
"@metamask/accounts-controller": "^20.0.0",
78+
"@metamask/accounts-controller": "^20.0.1",
7979
"@metamask/approval-controller": "^7.1.1",
8080
"@metamask/auto-changelog": "^3.4.4",
8181
"@metamask/ethjs-provider-http": "^0.3.0",
8282
"@metamask/keyring-api": "^10.1.0",
83-
"@metamask/keyring-controller": "^19.0.0",
84-
"@metamask/network-controller": "^22.0.2",
85-
"@metamask/preferences-controller": "^15.0.0",
83+
"@metamask/keyring-controller": "^19.0.1",
84+
"@metamask/network-controller": "^22.1.0",
85+
"@metamask/preferences-controller": "^15.0.1",
8686
"@metamask/providers": "^18.1.1",
8787
"@types/jest": "^27.4.1",
8888
"@types/lodash": "^4.14.191",

packages/build-utils/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+
## [3.0.2]
11+
12+
### Changed
13+
14+
- Bump `@metamask/utils` from `^9.1.0` to `^10.0.0` ([#4831](https://github.com/MetaMask/core/pull/4831))
15+
1016
## [3.0.1]
1117

1218
### Changed
@@ -69,7 +75,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6975

7076
- Initial release ([#3577](https://github.com/MetaMask/core/pull/3577) [#3588](https://github.com/MetaMask/core/pull/3588))
7177

72-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/build-utils@3.0.1...HEAD
78+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/build-utils@3.0.2...HEAD
79+
[3.0.2]: https://github.com/MetaMask/core/compare/@metamask/build-utils@3.0.1...@metamask/build-utils@3.0.2
7380
[3.0.1]: https://github.com/MetaMask/core/compare/@metamask/build-utils@3.0.0...@metamask/build-utils@3.0.1
7481
[3.0.0]: https://github.com/MetaMask/core/compare/@metamask/build-utils@2.0.1...@metamask/build-utils@3.0.0
7582
[2.0.1]: https://github.com/MetaMask/core/compare/@metamask/build-utils@2.0.0...@metamask/build-utils@2.0.1

packages/build-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/build-utils",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "Utilities for building MetaMask applications",
55
"keywords": [
66
"MetaMask",

packages/chain-controller/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+
## [0.2.1]
11+
1012
### Fixed
1113

1214
- Make implicit peer dependencies explicit ([#4974](https://github.com/MetaMask/core/pull/4974))
@@ -77,7 +79,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7779

7880
- Initial release
7981

80-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/chain-controller@0.2.0...HEAD
82+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/chain-controller@0.2.1...HEAD
83+
[0.2.1]: https://github.com/MetaMask/core/compare/@metamask/chain-controller@0.2.0...@metamask/chain-controller@0.2.1
8184
[0.2.0]: https://github.com/MetaMask/core/compare/@metamask/chain-controller@0.1.3...@metamask/chain-controller@0.2.0
8285
[0.1.3]: https://github.com/MetaMask/core/compare/@metamask/chain-controller@0.1.2...@metamask/chain-controller@0.1.3
8386
[0.1.2]: https://github.com/MetaMask/core/compare/@metamask/chain-controller@0.1.1...@metamask/chain-controller@0.1.2

packages/chain-controller/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/chain-controller",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Manages chain-agnostic providers",
55
"keywords": [
66
"MetaMask",

packages/controller-utils/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [11.4.4]
11+
1012
### Fixed
1113

1214
- Make implicit peer dependencies explicit ([#4974](https://github.com/MetaMask/core/pull/4974))
1315
- Add the following packages as peer dependencies of this package to satisfy peer dependency requirements from other dependencies:
1416
- `@babel/runtime@^7.0.0` (required by `@metamask/ethjs-unit`)
1517
- These dependencies really should be present in projects that consume this package (e.g. MetaMask clients), and this change ensures that they now are.
1618
- Furthermore, we are assuming that clients already use these dependencies, since otherwise it would be impossible to consume this package in its entirety or even create a working build. Hence, the addition of these peer dependencies is really a formality and should not be breaking.
19+
- Correct ESM-compatible build so that imports of the following packages that re-export other modules via `export *` are no longer corrupted: ([#5011](https://github.com/MetaMask/core/pull/5011))
20+
- `bn.js`
21+
- `eth-ens-namehash`
22+
- `fast-deep-equal`
1723

1824
## [11.4.3]
1925

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

433439
All changes listed after this point were applied to this package following the monorepo conversion.
434440

435-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.4.3...HEAD
441+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.4.4...HEAD
442+
[11.4.4]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.4.3...@metamask/controller-utils@11.4.4
436443
[11.4.3]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.4.2...@metamask/controller-utils@11.4.3
437444
[11.4.2]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.4.1...@metamask/controller-utils@11.4.2
438445
[11.4.1]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.4.0...@metamask/controller-utils@11.4.1

packages/controller-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/controller-utils",
3-
"version": "11.4.3",
3+
"version": "11.4.4",
44
"description": "Data and convenience functions shared by multiple packages",
55
"keywords": [
66
"MetaMask",

packages/ens-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [15.0.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/base-controller` from `^7.0.1` to `^7.0.2` ([#4862](https://github.com/MetaMask/core/pull/4862))
15+
- Bump `@metamask/controller-utils` from `^11.4.0` to `^11.4.4` ([#4862](https://github.com/MetaMask/core/pull/4862), [#4870](https://github.com/MetaMask/core/pull/4870), [#4915](https://github.com/MetaMask/core/pull/4915), [#5012](https://github.com/MetaMask/core/pull/5012))
16+
17+
### Fixed
18+
19+
- Correct ESM-compatible build so that imports of the following packages that re-export other modules via `export *` are no longer corrupted: ([#5011](https://github.com/MetaMask/core/pull/5011))
20+
- `punycode/punycode.js`
21+
1022
## [15.0.0]
1123

1224
### Changed
@@ -255,7 +267,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
255267

256268
All changes listed after this point were applied to this package following the monorepo conversion.
257269

258-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@15.0.0...HEAD
270+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@15.0.1...HEAD
271+
[15.0.1]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@15.0.0...@metamask/ens-controller@15.0.1
259272
[15.0.0]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@14.0.1...@metamask/ens-controller@15.0.0
260273
[14.0.1]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@14.0.0...@metamask/ens-controller@14.0.1
261274
[14.0.0]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@13.0.1...@metamask/ens-controller@14.0.0

packages/ens-controller/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/ens-controller",
3-
"version": "15.0.0",
3+
"version": "15.0.1",
44
"description": "Maps ENS names to their resolved addresses by chain id",
55
"keywords": [
66
"MetaMask",
@@ -49,13 +49,13 @@
4949
"dependencies": {
5050
"@ethersproject/providers": "^5.7.0",
5151
"@metamask/base-controller": "^7.0.2",
52-
"@metamask/controller-utils": "^11.4.3",
52+
"@metamask/controller-utils": "^11.4.4",
5353
"@metamask/utils": "^10.0.0",
5454
"punycode": "^2.1.1"
5555
},
5656
"devDependencies": {
5757
"@metamask/auto-changelog": "^3.4.4",
58-
"@metamask/network-controller": "^22.0.2",
58+
"@metamask/network-controller": "^22.1.0",
5959
"@types/jest": "^27.4.1",
6060
"deepmerge": "^4.2.2",
6161
"jest": "^27.5.1",

0 commit comments

Comments
 (0)