Skip to content

Commit 5f563b5

Browse files
committed
update changelogs
1 parent 62318cc commit 5f563b5

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

packages/keyring-controller/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
- The encryption salt is now always taken from the vault.
1616
- **BREAKING:** The `KeyringController` constructor now requries an encryptor supporting the `keyFromPassword`, `exportKey` and `generateSalt` methods ([#5963](https://github.com/MetaMask/core/pull/5963))
1717

18+
### Added
19+
20+
- Added optional `SupportedKeyDerivationOptions` type parameter to the `ExportableKeyEncryptor` type ([#5963](https://github.com/MetaMask/core/pull/5963))
21+
- This type parameter allows specifying the key derivation options supported by the injected encryptor.
22+
1823
## [22.0.2]
1924

2025
### Fixed

packages/keyring-controller/src/KeyringController.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3041,7 +3041,7 @@ describe('KeyringController', () => {
30413041
// the wrong encryptionKey type
30423042
12341234,
30433043
),
3044-
).rejects.toThrow(KeyringControllerError.WrongPasswordType);
3044+
).rejects.toThrow(KeyringControllerError.WrongEncryptionKeyType);
30453045
});
30463046
});
30473047
});

packages/seedless-onboarding-controller/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+
- **BREAKING:** `SeedlessOnboardingController` now requires an additional `SupportedKeyDerivationOptions` type parameter ([#5963](https://github.com/MetaMask/core/pull/5963))
13+
1014
### Added
1115

1216
- Added `PrivateKey sync` feature to the controller. ([#5948](https://github.com/MetaMask/core/pull/5948))

0 commit comments

Comments
 (0)