Skip to content

Commit 6d2c3b0

Browse files
authored
Release/577.0.0 (#6702)
## Explanation Releases @metamask/signature-controller@34.0.0 ### Added - Add two new controller state metadata properties: `includeInStateLogs` and `usedInUi` ([#6473](#6473)) - **BREAKING:** Decode delegation permissions using `@metamask/gator-permissions-controller` when calling `newUnsignedTypedMessage`, adds `@metamask/gator-permissions-controller` as a peer dependency. ([#6619](#6619)) ### Changed - Bump `@metamask/controller-utils` from `^11.12.0` to `^11.14.0` ([#6620](#6620), [#6629](#6629)) - Bump `@metamask/base-controller` from `^8.1.0` to `^8.4.0` ([#6355](#6355), [#6465](#6465), [#6632](#6632)) - Bump `@metamask/utils` from `^11.4.2` to `^11.8.0` ([#6588](#6588)) - Bump `@metamask/network-controller` from `^24.1.0` to `^24.2.0` ([#6678](#6678)) - Bump `@metamask/keyring-controller` from `^23.0.0` to `^23.1.0` ([#6590](#6590)) - Bump `@metamask/accounts-controller` from `^33.0.0` to `^33.1.0` ([#6572](#6572))
1 parent a43bf59 commit 6d2c3b0

File tree

6 files changed

+21
-11
lines changed

6 files changed

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

packages/shield-controller/CHANGELOG.md

Lines changed: 5 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+
## [0.2.0]
11+
1012
### Added
1113

1214
- Add two new controller state metadata properties: `includeInStateLogs` and `usedInUi` ([#6504](https://github.com/MetaMask/core/pull/6504))
@@ -15,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1517

1618
### Changed
1719

20+
- Bump `@metamask/signature-controller` from `^33.0.0` to `^34.0.0` ([#6702](https://github.com/MetaMask/core/pull/6702))
1821
- Bump `@metamask/base-controller` from `^8.2.0` to `^8.4.0` ([#6465](https://github.com/MetaMask/core/pull/6465), [#6632](https://github.com/MetaMask/core/pull/6632))
1922
- Bump `@metamask/utils` from `^11.4.2` to `^11.8.0` ([#6588](https://github.com/MetaMask/core/pull/6588))
2023

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

3740
- Initial release of the shield-controller package ([#6137](https://github.com/MetaMask/core/pull/6137)
3841

39-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/shield-controller@0.1.2...HEAD
42+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/shield-controller@0.2.0...HEAD
43+
[0.2.0]: https://github.com/MetaMask/core/compare/@metamask/shield-controller@0.1.2...@metamask/shield-controller@0.2.0
4044
[0.1.2]: https://github.com/MetaMask/core/compare/@metamask/shield-controller@0.1.1...@metamask/shield-controller@0.1.2
4145
[0.1.1]: https://github.com/MetaMask/core/compare/@metamask/shield-controller@0.1.0...@metamask/shield-controller@0.1.1
4246
[0.1.0]: https://github.com/MetaMask/core/releases/tag/@metamask/shield-controller@0.1.0

packages/shield-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/shield-controller",
3-
"version": "0.1.2",
3+
"version": "0.2.0",
44
"description": "Controller handling shield transaction coverage logic",
55
"keywords": [
66
"MetaMask",
@@ -55,7 +55,7 @@
5555
"@lavamoat/allow-scripts": "^3.0.4",
5656
"@lavamoat/preinstall-always-fail": "^2.1.0",
5757
"@metamask/auto-changelog": "^3.4.4",
58-
"@metamask/signature-controller": "^33.0.0",
58+
"@metamask/signature-controller": "^34.0.0",
5959
"@metamask/transaction-controller": "^60.4.0",
6060
"@ts-bridge/cli": "^0.6.1",
6161
"@types/jest": "^27.4.1",
@@ -68,7 +68,7 @@
6868
"uuid": "^8.3.2"
6969
},
7070
"peerDependencies": {
71-
"@metamask/signature-controller": "^33.0.0",
71+
"@metamask/signature-controller": "^34.0.0",
7272
"@metamask/transaction-controller": "^60.0.0"
7373
},
7474
"engines": {

packages/signature-controller/CHANGELOG.md

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

88
## [Unreleased]
99

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

1214
- Add two new controller state metadata properties: `includeInStateLogs` and `usedInUi` ([#6473](https://github.com/MetaMask/core/pull/6473))
13-
- Decode delegation permissions using `@metamask/gator-permissions-controller` when calling `newUnsignedTypedMessage` ([#6619](https://github.com/MetaMask/core/pull/6619))
15+
- **BREAKING:** Decode delegation permissions using `@metamask/gator-permissions-controller` when calling `newUnsignedTypedMessage`, adds `@metamask/gator-permissions-controller` as a peer dependency. ([#6619](https://github.com/MetaMask/core/pull/6619))
1416

1517
### Changed
1618

1719
- Bump `@metamask/controller-utils` from `^11.12.0` to `^11.14.0` ([#6620](https://github.com/MetaMask/core/pull/6620), [#6629](https://github.com/MetaMask/core/pull/6629))
1820
- Bump `@metamask/base-controller` from `^8.1.0` to `^8.4.0` ([#6355](https://github.com/MetaMask/core/pull/6355), [#6465](https://github.com/MetaMask/core/pull/6465), [#6632](https://github.com/MetaMask/core/pull/6632))
1921
- Bump `@metamask/utils` from `^11.4.2` to `^11.8.0` ([#6588](https://github.com/MetaMask/core/pull/6588))
22+
- Bump `@metamask/network-controller` from `^24.1.0` to `^24.2.0` ([#6678](https://github.com/MetaMask/core/pull/6678))
23+
- Bump `@metamask/keyring-controller` from `^23.0.0` to `^23.1.0` ([#6590](https://github.com/MetaMask/core/pull/6590))
24+
- Bump `@metamask/accounts-controller` from `^33.0.0` to `^33.1.0` ([#6572](https://github.com/MetaMask/core/pull/6572))
2025

2126
## [33.0.0]
2227

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

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

572-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@33.0.0...HEAD
577+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@34.0.0...HEAD
578+
[34.0.0]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@33.0.0...@metamask/signature-controller@34.0.0
573579
[33.0.0]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@32.0.0...@metamask/signature-controller@33.0.0
574580
[32.0.0]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@31.0.1...@metamask/signature-controller@32.0.0
575581
[31.0.1]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@31.0.0...@metamask/signature-controller@31.0.1

packages/signature-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/signature-controller",
3-
"version": "33.0.0",
3+
"version": "34.0.0",
44
"description": "Processes signing requests in order to sign arbitrary and typed data",
55
"keywords": [
66
"MetaMask",

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4509,7 +4509,7 @@ __metadata:
45094509
"@lavamoat/preinstall-always-fail": "npm:^2.1.0"
45104510
"@metamask/auto-changelog": "npm:^3.4.4"
45114511
"@metamask/base-controller": "npm:^8.4.0"
4512-
"@metamask/signature-controller": "npm:^33.0.0"
4512+
"@metamask/signature-controller": "npm:^34.0.0"
45134513
"@metamask/transaction-controller": "npm:^60.4.0"
45144514
"@metamask/utils": "npm:^11.8.0"
45154515
"@ts-bridge/cli": "npm:^0.6.1"
@@ -4522,12 +4522,12 @@ __metadata:
45224522
typescript: "npm:~5.2.2"
45234523
uuid: "npm:^8.3.2"
45244524
peerDependencies:
4525-
"@metamask/signature-controller": ^33.0.0
4525+
"@metamask/signature-controller": ^34.0.0
45264526
"@metamask/transaction-controller": ^60.0.0
45274527
languageName: unknown
45284528
linkType: soft
45294529

4530-
"@metamask/signature-controller@npm:^33.0.0, @metamask/signature-controller@workspace:packages/signature-controller":
4530+
"@metamask/signature-controller@npm:^34.0.0, @metamask/signature-controller@workspace:packages/signature-controller":
45314531
version: 0.0.0-use.local
45324532
resolution: "@metamask/signature-controller@workspace:packages/signature-controller"
45334533
dependencies:

0 commit comments

Comments
 (0)