@metamask-previews/keyring-controller 23.0.0-preview-ea6406b3 → 23.0.0-preview-1f2cfed

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 CHANGED
@@ -10,10 +10,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
10
  ### Added
11
11
 
12
12
  - Add `KeyringController:addNewKeyring` action ([#6439](https://github.com/MetaMask/core/pull/6439))
13
+ - Add two new controller state metadata properties: `includeInStateLogs` and `usedInUi` ([#6525](https://github.com/MetaMask/core/pull/6525))
13
14
 
14
15
  ### Changed
15
16
 
16
17
  - Bump `@metamask/base-controller` from `^8.1.0` to `^8.3.0` ([#6355](https://github.com/MetaMask/core/pull/6355), [#6465](https://github.com/MetaMask/core/pull/6465))
18
+ - Bump `@metamask/keyring-api` from `^20.1.0` to `^21.0.0` ([#6560](https://github.com/MetaMask/core/pull/6560))
19
+ - Bump `@metamask/keyring-internal-api` from `^8.1.0` to `^9.0.0` ([#6560](https://github.com/MetaMask/core/pull/6560))
17
20
 
18
21
  ## [23.0.0]
19
22
 
@@ -264,11 +264,36 @@ class KeyringController extends base_controller_1.BaseController {
264
264
  super({
265
265
  name,
266
266
  metadata: {
267
- vault: { persist: true, anonymous: false },
268
- isUnlocked: { persist: false, anonymous: true },
269
- keyrings: { persist: false, anonymous: false },
270
- encryptionKey: { persist: false, anonymous: false },
271
- encryptionSalt: { persist: false, anonymous: false },
267
+ vault: {
268
+ includeInStateLogs: false,
269
+ persist: true,
270
+ anonymous: false,
271
+ usedInUi: false,
272
+ },
273
+ isUnlocked: {
274
+ includeInStateLogs: true,
275
+ persist: false,
276
+ anonymous: true,
277
+ usedInUi: true,
278
+ },
279
+ keyrings: {
280
+ includeInStateLogs: true,
281
+ persist: false,
282
+ anonymous: false,
283
+ usedInUi: true,
284
+ },
285
+ encryptionKey: {
286
+ includeInStateLogs: false,
287
+ persist: false,
288
+ anonymous: false,
289
+ usedInUi: false,
290
+ },
291
+ encryptionSalt: {
292
+ includeInStateLogs: false,
293
+ persist: false,
294
+ anonymous: false,
295
+ usedInUi: false,
296
+ },
272
297
  },
273
298
  messenger,
274
299
  state: {