@metamask-previews/keyring-controller 13.0.0-preview.e5c396b → 14.0.1-preview-d4ae797
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 +27 -1
- package/dist/KeyringController.js +21 -1294
- package/dist/KeyringController.js.map +1 -1
- package/dist/KeyringController.mjs +22 -0
- package/dist/KeyringController.mjs.map +1 -0
- package/dist/chunk-6HZWCYLD.mjs +1290 -0
- package/dist/chunk-6HZWCYLD.mjs.map +1 -0
- package/dist/chunk-BVSGYW4D.js +1290 -0
- package/dist/chunk-BVSGYW4D.js.map +1 -0
- package/dist/chunk-CHLPTPMZ.js +63 -0
- package/dist/chunk-CHLPTPMZ.js.map +1 -0
- package/dist/chunk-NAAWD7HX.mjs +63 -0
- package/dist/chunk-NAAWD7HX.mjs.map +1 -0
- package/dist/constants.js +6 -33
- package/dist/constants.js.map +1 -1
- package/dist/constants.mjs +7 -0
- package/dist/constants.mjs.map +1 -0
- package/dist/index.js +19 -17
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -0
- package/dist/index.mjs.map +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/dist/{KeyringController.d.ts → types/KeyringController.d.ts} +1 -1
- package/dist/types/KeyringController.d.ts.map +1 -0
- package/dist/types/constants.d.ts.map +1 -0
- package/dist/{index.d.ts.map → types/index.d.ts.map} +1 -1
- package/package.json +14 -4
- package/dist/KeyringController.d.ts.map +0 -1
- package/dist/constants.d.ts.map +0 -1
- /package/dist/{constants.d.ts → types/constants.d.ts} +0 -0
- /package/dist/{index.d.ts → types/index.d.ts} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [14.0.1]
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Fix `types` field in `package.json` ([#4047](https://github.com/MetaMask/core/pull/4047))
|
|
15
|
+
|
|
16
|
+
## [14.0.0]
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
|
|
20
|
+
- **BREAKING**: Add ESM build ([#3998](https://github.com/MetaMask/core/pull/3998))
|
|
21
|
+
- It's no longer possible to import files from `./dist` directly.
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- **BREAKING:** Bump `@metamask/base-controller` to `^5.0.0` ([#4039](https://github.com/MetaMask/core/pull/4039))
|
|
26
|
+
- This version has a number of breaking changes. See the changelog for more.
|
|
27
|
+
- Bump `@metamask/message-manager` to `^8.0.0` ([#4039](https://github.com/MetaMask/core/pull/4039))
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
- **BREAKING:** Narrow `KeyringControllerMessenger` type parameters `AllowedAction` and `AllowedEvent` from `string` to `never` ([#4031](https://github.com/MetaMask/core/pull/4031))
|
|
32
|
+
- Allowlisting or using any external actions or events will now produce a type error.
|
|
33
|
+
|
|
10
34
|
## [13.0.0]
|
|
11
35
|
|
|
12
36
|
### Added
|
|
@@ -376,7 +400,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
376
400
|
|
|
377
401
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
378
402
|
|
|
379
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@
|
|
403
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@14.0.1...HEAD
|
|
404
|
+
[14.0.1]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@14.0.0...@metamask/keyring-controller@14.0.1
|
|
405
|
+
[14.0.0]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@13.0.0...@metamask/keyring-controller@14.0.0
|
|
380
406
|
[13.0.0]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@12.2.0...@metamask/keyring-controller@13.0.0
|
|
381
407
|
[12.2.0]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@12.1.0...@metamask/keyring-controller@12.2.0
|
|
382
408
|
[12.1.0]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@12.0.0...@metamask/keyring-controller@12.1.0
|