Skip to content

Commit 83957e2

Browse files
authored
Release/176.0.0 (#4527)
## Explanation Release new versions of the following packages, - `@metamask/keyring-controller`: 17.1.1 - `@metamask/message-manager`: 10.0.1 ## References ## Changelog <!-- If you're making any consumer-facing changes, list those changes here as if you were updating a changelog, using the template below as a guide. (CATEGORY is one of BREAKING, ADDED, CHANGED, DEPRECATED, REMOVED, or FIXED. For security-related issues, follow the Security Advisory process.) Please take care to name the exact pieces of the API you've added or changed (e.g. types, interfaces, functions, or methods). If there are any breaking changes, make sure to offer a solution for consumers to follow once they upgrade to the changes. Finally, if you're only making changes to development scripts or tests, you may replace the template below with "None". --> ## 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 highlighted breaking changes using the "BREAKING" category above as appropriate
1 parent 4511d58 commit 83957e2

File tree

12 files changed

+46
-23
lines changed

12 files changed

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

packages/accounts-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"@metamask/base-controller": "^6.0.1",
4646
"@metamask/eth-snap-keyring": "^4.3.1",
4747
"@metamask/keyring-api": "^8.0.0",
48-
"@metamask/keyring-controller": "^17.1.0",
48+
"@metamask/keyring-controller": "^17.1.1",
4949
"@metamask/snaps-sdk": "^4.2.0",
5050
"@metamask/snaps-utils": "^7.4.0",
5151
"@metamask/utils": "^9.0.0",

packages/assets-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"@metamask/contract-metadata": "^2.4.0",
5454
"@metamask/controller-utils": "^11.0.1",
5555
"@metamask/eth-query": "^4.0.0",
56-
"@metamask/keyring-controller": "^17.1.0",
56+
"@metamask/keyring-controller": "^17.1.1",
5757
"@metamask/metamask-eth-abis": "^3.1.1",
5858
"@metamask/network-controller": "^20.0.0",
5959
"@metamask/polling-controller": "^9.0.0",

packages/keyring-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [17.1.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/utils` to `^9.0.0`, `@metamask/rpc-errors` to `^6.3.1` ([#4516](https://github.com/MetaMask/core/pull/4516))
15+
16+
### Fixed
17+
18+
- Clear encryption salt and key in `setLocked` and `#createNewVaultWithKeyring` to ensure that encryption key is always generated with the latest password ([#4514](https://github.com/MetaMask/core/pull/4514))
19+
1020
## [17.1.0]
1121

1222
### Added
@@ -497,7 +507,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
497507

498508
All changes listed after this point were applied to this package following the monorepo conversion.
499509

500-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
510+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
511+
[17.1.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
501512
[17.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
502513
[17.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
503514
[16.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/keyring-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/keyring-controller",
3-
"version": "17.1.0",
3+
"version": "17.1.1",
44
"description": "Stores identities seen in the wallet and manages interactions such as signing",
55
"keywords": [
66
"MetaMask",
@@ -49,7 +49,7 @@
4949
"@metamask/eth-sig-util": "^7.0.1",
5050
"@metamask/eth-simple-keyring": "^6.0.1",
5151
"@metamask/keyring-api": "^8.0.0",
52-
"@metamask/message-manager": "^10.0.0",
52+
"@metamask/message-manager": "^10.0.1",
5353
"@metamask/utils": "^9.0.0",
5454
"async-mutex": "^0.5.0",
5555
"ethereumjs-wallet": "^1.0.1",

packages/message-manager/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+
## [10.0.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/utils` to `^9.0.0`, `@metamask/rpc-errors` to `^6.3.1` ([#4516](https://github.com/MetaMask/core/pull/4516))
15+
16+
### Fixed
17+
18+
- Add `EventEmitter` type annotation to the `hub` class field of `AbstractMessageManager` ([#4510](https://github.com/MetaMask/core/pull/4510))
19+
- This ensures that `hub` is not inferred to be a generic type, which would break types for downstream consumers.
20+
1021
## [10.0.0]
1122

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

256267
All changes listed after this point were applied to this package following the monorepo conversion.
257268

258-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
269+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
270+
[10.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
259271
[10.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
260272
[9.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
261273
[8.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/message-manager/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/message-manager",
3-
"version": "10.0.0",
3+
"version": "10.0.1",
44
"description": "Stores and manages interactions with signing requests",
55
"keywords": [
66
"MetaMask",

packages/notification-services-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"@contentful/rich-text-html-renderer": "^16.5.2",
4545
"@metamask/base-controller": "^6.0.1",
4646
"@metamask/controller-utils": "^11.0.1",
47-
"@metamask/keyring-controller": "^17.1.0",
47+
"@metamask/keyring-controller": "^17.1.1",
4848
"@metamask/profile-sync-controller": "^0.1.3",
4949
"bignumber.js": "^4.1.0",
5050
"contentful": "^10.3.6",

packages/preferences-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
},
4747
"devDependencies": {
4848
"@metamask/auto-changelog": "^3.4.4",
49-
"@metamask/keyring-controller": "^17.1.0",
49+
"@metamask/keyring-controller": "^17.1.1",
5050
"@types/jest": "^27.4.1",
5151
"deepmerge": "^4.2.2",
5252
"jest": "^27.5.1",

packages/signature-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@
4444
"@metamask/approval-controller": "^7.0.1",
4545
"@metamask/base-controller": "^6.0.1",
4646
"@metamask/controller-utils": "^11.0.1",
47-
"@metamask/keyring-controller": "^17.1.0",
47+
"@metamask/keyring-controller": "^17.1.1",
4848
"@metamask/logging-controller": "^5.0.0",
49-
"@metamask/message-manager": "^10.0.0",
49+
"@metamask/message-manager": "^10.0.1",
5050
"@metamask/rpc-errors": "^6.3.1",
5151
"@metamask/utils": "^9.0.0",
5252
"lodash": "^4.17.21"

0 commit comments

Comments
 (0)