@metamask-previews/keyring-api 11.1.0-f78dac4 → 12.0.0-fb72e65
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 +14 -1
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [12.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Use `ts-bridge/cli@0.6.1` ([#118](https://github.com/MetaMask/accounts/pull/118))
|
|
15
|
+
- This new version fixes a bug with CJS re-exports.
|
|
16
|
+
- **BREAKING:** Split into several smaller packages ([#24](https://github.com/MetaMask/accounts/pull/24))
|
|
17
|
+
- This should improve dependencies management.
|
|
18
|
+
- Internal related types (internal to both clients) have been moved to `keyring-internal-*` packages.
|
|
19
|
+
- Keyring API clients (mainly used by dapps) have been moved to `keyring-snap-client` package.
|
|
20
|
+
- Common utils have been moevd to `keyring-utils` package.
|
|
21
|
+
|
|
10
22
|
## [11.1.0]
|
|
11
23
|
|
|
12
24
|
### Added
|
|
@@ -444,7 +456,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
444
456
|
- SnapController keyring client. It is intended to be used by MetaMask to talk to the snap.
|
|
445
457
|
- Helper functions to create keyring handler in the snap.
|
|
446
458
|
|
|
447
|
-
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@
|
|
459
|
+
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@12.0.0...HEAD
|
|
460
|
+
[12.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@11.1.0...@metamask/keyring-api@12.0.0
|
|
448
461
|
[11.1.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@11.0.0...@metamask/keyring-api@11.1.0
|
|
449
462
|
[11.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@10.1.0...@metamask/keyring-api@11.0.0
|
|
450
463
|
[10.1.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@10.0.0...@metamask/keyring-api@10.1.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/keyring-api",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.0.0-fb72e65",
|
|
4
4
|
"description": "MetaMask Keyring API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"metamask",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"test:watch": "jest --watch"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@metamask/keyring-utils": "0.0
|
|
49
|
+
"@metamask/keyring-utils": "1.0.0",
|
|
50
50
|
"@metamask/superstruct": "^3.1.0",
|
|
51
51
|
"@metamask/utils": "^9.3.0",
|
|
52
52
|
"bech32": "^2.0.0"
|
|
@@ -55,11 +55,10 @@
|
|
|
55
55
|
"@lavamoat/allow-scripts": "^3.2.1",
|
|
56
56
|
"@lavamoat/preinstall-always-fail": "^2.1.0",
|
|
57
57
|
"@metamask/auto-changelog": "^3.4.4",
|
|
58
|
-
"@metamask/keyring-utils": "0.0
|
|
59
|
-
"@ts-bridge/cli": "^0.6.
|
|
58
|
+
"@metamask/keyring-utils": "1.0.0",
|
|
59
|
+
"@ts-bridge/cli": "^0.6.1",
|
|
60
60
|
"@types/jest": "^29.5.12",
|
|
61
61
|
"@types/node": "^20.12.12",
|
|
62
|
-
"@types/webextension-polyfill": "^0.12.1",
|
|
63
62
|
"deepmerge": "^4.2.2",
|
|
64
63
|
"depcheck": "^1.4.7",
|
|
65
64
|
"jest": "^29.5.0",
|