Skip to content

Commit a7a5588

Browse files
authored
Release/646.0.0 (#6988)
## Explanation A minor and patch release, to fix a bug in the previous release. ## References N/A ## Checklist - [x] I've updated the test suite for new or updated code as appropriate - [x] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [x] I've communicated my changes to consumers by [updating changelogs for packages I've changed](https://github.com/MetaMask/core/tree/main/docs/contributing.md#updating-changelogs), highlighting breaking changes as necessary - [x] I've prepared draft pull requests for clients and consumer packages to resolve any breaking changes
1 parent e8def69 commit a7a5588

File tree

12 files changed

+32
-17
lines changed

12 files changed

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

packages/assets-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"@metamask/keyring-snap-client": "^8.0.0",
9393
"@metamask/multichain-account-service": "^2.0.0",
9494
"@metamask/network-controller": "^25.0.0",
95-
"@metamask/permission-controller": "^12.0.0",
95+
"@metamask/permission-controller": "^12.1.0",
9696
"@metamask/phishing-controller": "^15.0.0",
9797
"@metamask/preferences-controller": "^21.0.0",
9898
"@metamask/providers": "^22.1.0",

packages/chain-agnostic-permission/CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Bump `@metamask/permission-controller` from `^12.0.0` to `^12.1.0` ([#6988](https://github.com/MetaMask/core/pull/6988))
13+
1014
## [1.2.2]
1115

1216
### Changed

packages/chain-agnostic-permission/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@metamask/api-specs": "^0.14.0",
5151
"@metamask/controller-utils": "^11.14.1",
5252
"@metamask/network-controller": "^25.0.0",
53-
"@metamask/permission-controller": "^12.0.0",
53+
"@metamask/permission-controller": "^12.1.0",
5454
"@metamask/rpc-errors": "^7.0.2",
5555
"@metamask/utils": "^11.8.1",
5656
"lodash": "^4.17.21"

packages/eip1193-permission-middleware/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Changed
1111

1212
- Bump `@metamask/chain-agnostic-permission` from `^1.2.1` to `^1.2.2` ([#6986](https://github.com/MetaMask/core/pull/6986))
13+
- Bump `@metamask/permission-controller` from `^12.0.0` to `^12.1.0` ([#6988](https://github.com/MetaMask/core/pull/6988))
1314

1415
## [1.0.2]
1516

packages/eip1193-permission-middleware/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@metamask/chain-agnostic-permission": "^1.2.2",
5151
"@metamask/controller-utils": "^11.14.1",
5252
"@metamask/json-rpc-engine": "^10.1.1",
53-
"@metamask/permission-controller": "^12.0.0",
53+
"@metamask/permission-controller": "^12.1.0",
5454
"@metamask/utils": "^11.8.1",
5555
"lodash": "^4.17.21"
5656
},

packages/multichain-api-middleware/CHANGELOG.md

Lines changed: 9 additions & 2 deletions
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+
## [1.2.4]
11+
12+
### Changed
13+
14+
- Bump `@metamask/permission-controller` from `^12.0.0` to `^12.1.0` ([#6988](https://github.com/MetaMask/core/pull/6988))
15+
1016
### Fixed
1117

1218
- Fix `wallet_revokeSession` error handling ([#6987](https://github.com/MetaMask/core/pull/6987))
13-
- This was broken in a different way in v1.2.3. Fixed in this version by a change in `@metamask/permission-controller`.
19+
- This was broken in a different way in v1.2.3. Fixed by the update to `@metamask/permission-controller@12.1.0`.
1420

1521
## [1.2.3]
1622

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

121127
- Initial release
122128

123-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
129+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
130+
[1.2.4]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
124131
[1.2.3]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
125132
[1.2.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
126133
[1.2.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/multichain-api-middleware/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/multichain-api-middleware",
3-
"version": "1.2.3",
3+
"version": "1.2.4",
44
"description": "JSON-RPC methods and middleware to support the MetaMask Multichain API",
55
"keywords": [
66
"MetaMask",
@@ -52,7 +52,7 @@
5252
"@metamask/controller-utils": "^11.14.1",
5353
"@metamask/json-rpc-engine": "^10.1.1",
5454
"@metamask/network-controller": "^25.0.0",
55-
"@metamask/permission-controller": "^12.0.0",
55+
"@metamask/permission-controller": "^12.1.0",
5656
"@metamask/rpc-errors": "^7.0.2",
5757
"@metamask/utils": "^11.8.1",
5858
"@open-rpc/meta-schema": "^1.14.6",

packages/permission-controller/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+
## [12.1.0]
11+
1012
### Added
1113

1214
- Add `name` property to permission errors ([#6987](https://github.com/MetaMask/core/pull/6987))
@@ -363,7 +365,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
363365

364366
All changes listed after this point were applied to this package following the monorepo conversion.
365367

366-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
368+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
369+
[12.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
367370
[12.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
368371
[11.1.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
369372
[11.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/permission-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/permission-controller",
3-
"version": "12.0.0",
3+
"version": "12.1.0",
44
"description": "Mediates access to JSON-RPC methods, used to interact with pieces of the MetaMask stack, via middleware for json-rpc-engine",
55
"keywords": [
66
"MetaMask",

0 commit comments

Comments
 (0)