Skip to content

Commit ad25a2a

Browse files
authored
Release/140.0.0 (#4177)
## Explanation ## References ## Changelog ## [13.0.0] Accounts Controller ### Changed - Fix update setSelectedAccount to throw if the id is not found ([#4167](#4167)) - Fix normal account indexing naming with index gap ([#4089](#4089)) - **BREAKING** Bump peer dependency `@metamask/snaps-controllers` to `^6.0.3` and dependencies `@metamask/snaps-sdk` to `^3.1.1`, `@metamask/eth-snap-keyring` to `^3.0.0`([#4090](#4090)) ## [28.0.0] Assets Controller ### Added - Add reservoir migration ([#4030](#4030)) ### Changed - Fix getting nft tokenURI ([#4136](#4136)) - **BREAKING** Bump peer dependency on `@metamask/keyring-controller` ([#4090](#4090)) - Fix token detection during account change ([#4133](#4133)) - Fix update nft metadata when toggles off ([#4096](#4096)) - Adds `tokenMethodIncreaseAllowance` ([#4069](#4069)) - Fix mantle token mispriced ([#4045](#4045)) ## [15.0.0] Keyring Controller ### Changed - **BREAKING** use getAccounts on HD Keyring when calling addNewAccount ([#4158](#4158)) - Pass CAIP-2 scope to execution context ([#4090](#4090)) - Allow gas limits to be changed during #addPaymasterData ([#3942](#3942)) ## [10.0.0] Preferences Controller ### Changed - **BREAKING** Bump peer dependency on `@metamask/keyring-controller` to `^15.0.0` ([#4090](#4090)) - Restore previous behavior of toChecksumHexAddress ([#4046](#4046)) ## [15.0.0] Signature Controller ### Changed - **BREAKING** Bump peer dependency on `@metamask/keyring-controller` to `^15.0.0` ([#4090](#4090)) ## [8.0.0] User Operation Controller ### Changed - **BREAKING** Bump peer dependency on `@metamask/keyring-controller` to `^15.0.0` and Pass CAIP-2 scope to execution context ([#4090](#4090)) - Allow gas limits to be changed during #addPaymasterData ([#3942](#3942)) ## 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 highlighted breaking changes using the "BREAKING" category above as appropriate
1 parent 1551844 commit ad25a2a

File tree

14 files changed

+101
-44
lines changed

14 files changed

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

packages/accounts-controller/CHANGELOG.md

Lines changed: 10 additions & 1 deletion
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+
## [13.0.0]
11+
12+
### Changed
13+
14+
- Fix update setSelectedAccount to throw if the id is not found ([#4167](https://github.com/MetaMask/core/pull/4167))
15+
- Fix normal account indexing naming with index gap ([#4089](https://github.com/MetaMask/core/pull/4089))
16+
- **BREAKING** Bump peer dependency `@metamask/snaps-controllers` to `^6.0.3` and dependencies `@metamask/snaps-sdk` to `^3.1.1`, `@metamask/eth-snap-keyring` to `^3.0.0`([#4090](https://github.com/MetaMask/core/pull/4090))
17+
1018
## [12.0.1]
1119

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

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

158-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@12.0.1...HEAD
166+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@13.0.0...HEAD
167+
[13.0.0]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@12.0.1...@metamask/accounts-controller@13.0.0
159168
[12.0.1]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@12.0.0...@metamask/accounts-controller@12.0.1
160169
[12.0.0]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@11.0.0...@metamask/accounts-controller@12.0.0
161170
[11.0.0]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@10.0.0...@metamask/accounts-controller@11.0.0

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": "12.0.1",
3+
"version": "13.0.0",
44
"description": "Manages internal accounts",
55
"keywords": [
66
"MetaMask",
@@ -55,7 +55,7 @@
5555
},
5656
"devDependencies": {
5757
"@metamask/auto-changelog": "^3.4.4",
58-
"@metamask/keyring-controller": "^14.0.1",
58+
"@metamask/keyring-controller": "^15.0.0",
5959
"@metamask/snaps-controllers": "^6.0.3",
6060
"@types/jest": "^27.4.1",
6161
"@types/readable-stream": "^2.3.0",
@@ -66,7 +66,7 @@
6666
"typescript": "~4.9.5"
6767
},
6868
"peerDependencies": {
69-
"@metamask/keyring-controller": "^14.0.1",
69+
"@metamask/keyring-controller": "^15.0.0",
7070
"@metamask/snaps-controllers": "^6.0.3"
7171
},
7272
"engines": {

packages/assets-controllers/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [28.0.0]
11+
12+
### Added
13+
14+
- Add reservoir migration ([#4030](https://github.com/MetaMask/core/pull/4030))
15+
16+
### Changed
17+
18+
- Fix getting nft tokenURI ([#4136](https://github.com/MetaMask/core/pull/4136))
19+
- **BREAKING** Bump peer dependency on `@metamask/keyring-controller` ([#4090](https://github.com/MetaMask/core/pull/4090))
20+
- Fix token detection during account change ([#4133](https://github.com/MetaMask/core/pull/4133))
21+
- Fix update nft metadata when toggles off ([#4096](https://github.com/MetaMask/core/pull/4096))
22+
- Adds `tokenMethodIncreaseAllowance` ([#4069](https://github.com/MetaMask/core/pull/4069))
23+
- Fix mantle token mispriced ([#4045](https://github.com/MetaMask/core/pull/4045))
24+
1025
## [27.2.0]
1126

1227
### Added
@@ -737,7 +752,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
737752
738753
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
739754
740-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@27.2.0...HEAD
755+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@28.0.0...HEAD
756+
[28.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@27.2.0...@metamask/assets-controllers@28.0.0
741757
[27.2.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@27.1.0...@metamask/assets-controllers@27.2.0
742758
[27.1.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@27.0.1...@metamask/assets-controllers@27.1.0
743759
[27.0.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@27.0.0...@metamask/assets-controllers@27.0.1

packages/assets-controllers/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/assets-controllers",
3-
"version": "27.2.0",
3+
"version": "28.0.0",
44
"description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)",
55
"keywords": [
66
"MetaMask",
@@ -47,17 +47,17 @@
4747
"@ethersproject/contracts": "^5.7.0",
4848
"@ethersproject/providers": "^5.7.0",
4949
"@metamask/abi-utils": "^2.0.2",
50-
"@metamask/accounts-controller": "^12.0.1",
50+
"@metamask/accounts-controller": "^13.0.0",
5151
"@metamask/approval-controller": "^6.0.1",
5252
"@metamask/base-controller": "^5.0.1",
5353
"@metamask/contract-metadata": "^2.4.0",
5454
"@metamask/controller-utils": "^9.1.0",
5555
"@metamask/eth-query": "^4.0.0",
56-
"@metamask/keyring-controller": "^14.0.1",
56+
"@metamask/keyring-controller": "^15.0.0",
5757
"@metamask/metamask-eth-abis": "^3.1.1",
5858
"@metamask/network-controller": "^18.1.0",
5959
"@metamask/polling-controller": "^6.0.1",
60-
"@metamask/preferences-controller": "^9.0.1",
60+
"@metamask/preferences-controller": "^10.0.0",
6161
"@metamask/rpc-errors": "^6.2.1",
6262
"@metamask/utils": "^8.3.0",
6363
"@types/bn.js": "^5.1.5",
@@ -88,11 +88,11 @@
8888
"typescript": "~4.9.5"
8989
},
9090
"peerDependencies": {
91-
"@metamask/accounts-controller": "^12.0.0",
91+
"@metamask/accounts-controller": "^13.0.0",
9292
"@metamask/approval-controller": "^6.0.0",
93-
"@metamask/keyring-controller": "^14.0.0",
93+
"@metamask/keyring-controller": "^15.0.0",
9494
"@metamask/network-controller": "^18.0.0",
95-
"@metamask/preferences-controller": "^9.0.0"
95+
"@metamask/preferences-controller": "^10.0.0"
9696
},
9797
"engines": {
9898
"node": ">=16.0.0"

packages/keyring-controller/CHANGELOG.md

Lines changed: 10 additions & 1 deletion
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+
## [15.0.0]
11+
12+
### Changed
13+
14+
- **BREAKING** use getAccounts on HD Keyring when calling addNewAccount ([#4158](https://github.com/MetaMask/core/pull/4158))
15+
- Pass CAIP-2 scope to execution context ([#4090](https://github.com/MetaMask/core/pull/4090))
16+
- Allow gas limits to be changed during #addPaymasterData ([#3942](https://github.com/MetaMask/core/pull/3942))
17+
1018
## [14.0.1]
1119

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

401409
All changes listed after this point were applied to this package following the monorepo conversion.
402410

403-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@14.0.1...HEAD
411+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@15.0.0...HEAD
412+
[15.0.0]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@14.0.1...@metamask/keyring-controller@15.0.0
404413
[14.0.1]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@14.0.0...@metamask/keyring-controller@14.0.1
405414
[14.0.0]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@13.0.0...@metamask/keyring-controller@14.0.0
406415
[13.0.0]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@12.2.0...@metamask/keyring-controller@13.0.0

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

packages/preferences-controller/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
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+
## [10.0.0]
11+
12+
### Changed
13+
14+
- **BREAKING** Bump peer dependency on `@metamask/keyring-controller` to `^15.0.0` ([#4090](https://github.com/MetaMask/core/pull/4090))
15+
- Restore previous behavior of toChecksumHexAddress ([#4046](https://github.com/MetaMask/core/pull/4046))
16+
1017
## [9.0.1]
1118

1219
### Fixed
@@ -201,7 +208,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
201208

202209
All changes listed after this point were applied to this package following the monorepo conversion.
203210

204-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@9.0.1...HEAD
211+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@10.0.0...HEAD
212+
[10.0.0]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@9.0.1...@metamask/preferences-controller@10.0.0
205213
[9.0.1]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@9.0.0...@metamask/preferences-controller@9.0.1
206214
[9.0.0]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@8.0.0...@metamask/preferences-controller@9.0.0
207215
[8.0.0]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@7.0.0...@metamask/preferences-controller@8.0.0

packages/preferences-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/preferences-controller",
3-
"version": "9.0.1",
3+
"version": "10.0.0",
44
"description": "Manages user-configurable settings for MetaMask",
55
"keywords": [
66
"MetaMask",
@@ -46,7 +46,7 @@
4646
},
4747
"devDependencies": {
4848
"@metamask/auto-changelog": "^3.4.4",
49-
"@metamask/keyring-controller": "^14.0.1",
49+
"@metamask/keyring-controller": "^15.0.0",
5050
"@types/jest": "^27.4.1",
5151
"deepmerge": "^4.2.2",
5252
"jest": "^27.5.1",
@@ -57,7 +57,7 @@
5757
"typescript": "~4.9.5"
5858
},
5959
"peerDependencies": {
60-
"@metamask/keyring-controller": "^14.0.0"
60+
"@metamask/keyring-controller": "^15.0.0"
6161
},
6262
"engines": {
6363
"node": ">=16.0.0"

packages/signature-controller/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
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 peer dependency on `@metamask/keyring-controller` to `^15.0.0` ([#4090](https://github.com/MetaMask/core/pull/4090))
15+
1016
## [14.0.1]
1117

1218
### Fixed
@@ -224,7 +230,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
224230

225231
- Initial release ([#1214](https://github.com/MetaMask/core/pull/1214))
226232

227-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@14.0.1...HEAD
233+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@15.0.0...HEAD
234+
[15.0.0]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@14.0.1...@metamask/signature-controller@15.0.0
228235
[14.0.1]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@14.0.0...@metamask/signature-controller@14.0.1
229236
[14.0.0]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@13.0.0...@metamask/signature-controller@14.0.0
230237
[13.0.0]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@12.0.0...@metamask/signature-controller@13.0.0

0 commit comments

Comments
 (0)