Skip to content

Commit db0bff5

Browse files
authored
Merge branch 'main' into update-network-nicknames
2 parents 8e28c9f + 2a1460b commit db0bff5

File tree

21 files changed

+357
-246
lines changed

21 files changed

+357
-246
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": "657.0.0",
3+
"version": "660.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+
## [87.0.0]
11+
1012
### Added
1113

1214
- Add `AssetsByAccountGroup` to list of exported types ([#6983](https://github.com/MetaMask/core/pull/6983))
@@ -2237,7 +2239,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22372239
22382240
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
22392241
2240-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@86.0.0...HEAD
2242+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@87.0.0...HEAD
2243+
[87.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@86.0.0...@metamask/assets-controllers@87.0.0
22412244
[86.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@85.0.0...@metamask/assets-controllers@86.0.0
22422245
[85.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@84.0.0...@metamask/assets-controllers@85.0.0
22432246
[84.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@83.1.0...@metamask/assets-controllers@84.0.0

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": "86.0.0",
3+
"version": "87.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: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [59.0.0]
11+
1012
### Added
1113

1214
- Quotes as returned by `fetchQuotes` now include a `gasSponsored` property ([#6687](https://github.com/MetaMask/core/pull/6687))
1315

16+
### Changed
17+
18+
- **BREAKING:** Bump `@metamask/assets-controller` from `^86.0.0` to `^87.0.0` ([#7043](https://github.com/MetaMask/core/pull/7043))
19+
1420
## [58.0.0]
1521

1622
### Changed
@@ -823,7 +829,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
823829

824830
- Initial release ([#5317](https://github.com/MetaMask/core/pull/5317))
825831

826-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@58.0.0...HEAD
832+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@59.0.0...HEAD
833+
[59.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@58.0.0...@metamask/bridge-controller@59.0.0
827834
[58.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@57.0.0...@metamask/bridge-controller@58.0.0
828835
[57.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@56.0.3...@metamask/bridge-controller@57.0.0
829836
[56.0.3]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@56.0.2...@metamask/bridge-controller@56.0.3

packages/bridge-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/bridge-controller",
3-
"version": "58.0.0",
3+
"version": "59.0.0",
44
"description": "Manages bridge-related quote fetching functionality for MetaMask",
55
"keywords": [
66
"MetaMask",
@@ -68,7 +68,7 @@
6868
},
6969
"devDependencies": {
7070
"@metamask/accounts-controller": "^34.0.0",
71-
"@metamask/assets-controllers": "^86.0.0",
71+
"@metamask/assets-controllers": "^87.0.0",
7272
"@metamask/auto-changelog": "^3.4.4",
7373
"@metamask/eth-json-rpc-provider": "^5.0.1",
7474
"@metamask/network-controller": "^25.0.0",
@@ -90,7 +90,7 @@
9090
},
9191
"peerDependencies": {
9292
"@metamask/accounts-controller": "^34.0.0",
93-
"@metamask/assets-controllers": "^86.0.0",
93+
"@metamask/assets-controllers": "^87.0.0",
9494
"@metamask/network-controller": "^25.0.0",
9595
"@metamask/remote-feature-flag-controller": "^2.0.0",
9696
"@metamask/snaps-controllers": "^14.0.0",

packages/bridge-status-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+
## [59.0.0]
11+
12+
### Changed
13+
14+
- **BREAKING:** Bump `@metamask/bridge-controller` from `^58.0.0` to `^59.0.0` ([#7043](https://github.com/MetaMask/core/pull/7043))
15+
1016
## [58.0.0]
1117

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

731737
- Initial release ([#5317](https://github.com/MetaMask/core/pull/5317))
732738

733-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@58.0.0...HEAD
739+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@59.0.0...HEAD
740+
[59.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@58.0.0...@metamask/bridge-status-controller@59.0.0
734741
[58.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@57.0.0...@metamask/bridge-status-controller@58.0.0
735742
[57.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@56.0.0...@metamask/bridge-status-controller@57.0.0
736743
[56.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@55.0.0...@metamask/bridge-status-controller@56.0.0

packages/bridge-status-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/bridge-status-controller",
3-
"version": "58.0.0",
3+
"version": "59.0.0",
44
"description": "Manages bridge-related status fetching functionality for MetaMask",
55
"keywords": [
66
"MetaMask",
@@ -59,7 +59,7 @@
5959
"devDependencies": {
6060
"@metamask/accounts-controller": "^34.0.0",
6161
"@metamask/auto-changelog": "^3.4.4",
62-
"@metamask/bridge-controller": "^58.0.0",
62+
"@metamask/bridge-controller": "^59.0.0",
6363
"@metamask/gas-fee-controller": "^25.0.0",
6464
"@metamask/network-controller": "^25.0.0",
6565
"@metamask/snaps-controllers": "^14.0.1",
@@ -78,7 +78,7 @@
7878
},
7979
"peerDependencies": {
8080
"@metamask/accounts-controller": "^34.0.0",
81-
"@metamask/bridge-controller": "^58.0.0",
81+
"@metamask/bridge-controller": "^59.0.0",
8282
"@metamask/gas-fee-controller": "^25.0.0",
8383
"@metamask/network-controller": "^25.0.0",
8484
"@metamask/snaps-controllers": "^14.0.0",

packages/seedless-onboarding-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [6.1.0]
11+
12+
### Changed
13+
14+
- Revert `revokeToken` value as optional in `authenticate` method. ([#7012](https://github.com/MetaMask/core/pull/7012))
15+
- Renamed `checkIsSeedlessOnboardingUserAuthenticated` to `getIsUserAuthenticated`. ([#7012](https://github.com/MetaMask/core/pull/7012))
16+
17+
### Fixed
18+
19+
- Fixed `InvalidRevokeToken` issue in `refreshAuthTokens` method. ([#7012](https://github.com/MetaMask/core/pull/7012))
20+
1021
## [6.0.0]
1122

1223
### Added
@@ -218,7 +229,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
218229
- `checkIsPasswordOutdated`: Check if the password is current device is outdated, i.e. user changed password in another device.
219230
- `clearState`: Reset the state of the controller to the defaults.
220231

221-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/seedless-onboarding-controller@6.0.0...HEAD
232+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/seedless-onboarding-controller@6.1.0...HEAD
233+
[6.1.0]: https://github.com/MetaMask/core/compare/@metamask/seedless-onboarding-controller@6.0.0...@metamask/seedless-onboarding-controller@6.1.0
222234
[6.0.0]: https://github.com/MetaMask/core/compare/@metamask/seedless-onboarding-controller@5.0.0...@metamask/seedless-onboarding-controller@6.0.0
223235
[5.0.0]: https://github.com/MetaMask/core/compare/@metamask/seedless-onboarding-controller@4.1.1...@metamask/seedless-onboarding-controller@5.0.0
224236
[4.1.1]: https://github.com/MetaMask/core/compare/@metamask/seedless-onboarding-controller@4.1.0...@metamask/seedless-onboarding-controller@4.1.1

packages/seedless-onboarding-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/seedless-onboarding-controller",
3-
"version": "6.0.0",
3+
"version": "6.1.0",
44
"description": "Backup and rehydrate SRP(s) using social login and password",
55
"keywords": [
66
"MetaMask",

0 commit comments

Comments
 (0)