@metamask-previews/seedless-onboarding-controller 6.1.0-preview-4cd9da8d → 7.0.0-preview-e3eb8eca
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,8 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [7.0.0]
|
|
11
|
+
|
|
10
12
|
### Changed
|
|
11
13
|
|
|
14
|
+
- **BREAKING:** Bump `@metamask/keyring-controller` from `^24.0.0` to `^25.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
|
|
12
15
|
- **BREAKING:** The `encryptor` constructor param requires `exportKey`, `keyFromPassword` and `generateSalt` methods ([#7128](https://github.com/MetaMask/core/pull/7128))
|
|
13
16
|
- `SeedlessOnboardingController` now accepts an optional `SupportedKeyDerivationOptions` type parameter ([#7127](https://github.com/MetaMask/core/pull/7127))
|
|
14
17
|
- The type parameter can be used to specify which key derivation algorithms are supported by the controller instance.
|
|
@@ -235,7 +238,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
235
238
|
- `checkIsPasswordOutdated`: Check if the password is current device is outdated, i.e. user changed password in another device.
|
|
236
239
|
- `clearState`: Reset the state of the controller to the defaults.
|
|
237
240
|
|
|
238
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/seedless-onboarding-controller@
|
|
241
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/seedless-onboarding-controller@7.0.0...HEAD
|
|
242
|
+
[7.0.0]: https://github.com/MetaMask/core/compare/@metamask/seedless-onboarding-controller@6.1.0...@metamask/seedless-onboarding-controller@7.0.0
|
|
239
243
|
[6.1.0]: https://github.com/MetaMask/core/compare/@metamask/seedless-onboarding-controller@6.0.0...@metamask/seedless-onboarding-controller@6.1.0
|
|
240
244
|
[6.0.0]: https://github.com/MetaMask/core/compare/@metamask/seedless-onboarding-controller@5.0.0...@metamask/seedless-onboarding-controller@6.0.0
|
|
241
245
|
[5.0.0]: https://github.com/MetaMask/core/compare/@metamask/seedless-onboarding-controller@4.1.1...@metamask/seedless-onboarding-controller@5.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/seedless-onboarding-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0-preview-e3eb8eca",
|
|
4
4
|
"description": "Backup and rehydrate SRP(s) using social login and password",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"@lavamoat/allow-scripts": "^3.0.4",
|
|
64
64
|
"@lavamoat/preinstall-always-fail": "^2.1.0",
|
|
65
65
|
"@metamask/auto-changelog": "^3.4.4",
|
|
66
|
-
"@metamask/keyring-controller": "^
|
|
66
|
+
"@metamask/keyring-controller": "^25.0.0",
|
|
67
67
|
"@ts-bridge/cli": "^0.6.4",
|
|
68
68
|
"@types/elliptic": "^6",
|
|
69
69
|
"@types/jest": "^27.4.1",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"typescript": "~5.3.3"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|
|
81
|
-
"@metamask/keyring-controller": "^
|
|
81
|
+
"@metamask/keyring-controller": "^25.0.0"
|
|
82
82
|
},
|
|
83
83
|
"engines": {
|
|
84
84
|
"node": "^18.18 || >=20"
|