@metamask-previews/keyring-internal-api 4.0.3-f2dd645 → 6.0.0-528bbfb

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -1
  2. package/package.json +2 -2
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
+ ## [6.0.0]
11
+
12
+ ### Changed
13
+
14
+ - **BREAKING:** The method `signTransaction` can now returns various type of transactions ([#209](https://github.com/MetaMask/accounts/pull/209)), ([#235](https://github.com/MetaMask/accounts/pull/235))
15
+ - Initially was supporting: `Transaction | AccessListEIP2930Transaction | FeeMarketEIP1559Transaction` (types from `@ethereumjs/tx`).
16
+ - Now also supports `BlobEIP4844Transaction | EOACodeEIP7702Transaction` (types from `@ethereumjs/tx`).
17
+ - This new method signature is inherited by `Keyring` which is provided `@metamask/keyring-utils`.
18
+ - Bump `@metamask/keyring-utils` from `^2.3.1` to `^3.0.0` ([#235](https://github.com/MetaMask/accounts/pull/235))
19
+
20
+ ## [5.0.0]
21
+
10
22
  ### Changed
11
23
 
12
24
  - **BREAKING:** `EthKeyring` now extends the `Keyring` type from `@metamask/keyring-utils` instead of `Keyring<Json>` from `@metamask/utils` ([#226](https://github.com/MetaMask/accounts/pull/226))
@@ -74,7 +86,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
74
86
  - This new version fixes a bug with CJS re-exports.
75
87
  - Initial release ([#24](https://github.com/MetaMask/accounts/pull/24))
76
88
 
77
- [Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-api@4.0.3...HEAD
89
+ [Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-api@6.0.0...HEAD
90
+ [6.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-api@5.0.0...@metamask/keyring-internal-api@6.0.0
91
+ [5.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-api@4.0.3...@metamask/keyring-internal-api@5.0.0
78
92
  [4.0.3]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-api@4.0.2...@metamask/keyring-internal-api@4.0.3
79
93
  [4.0.2]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-api@4.0.1...@metamask/keyring-internal-api@4.0.2
80
94
  [4.0.1]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-api@4.0.0...@metamask/keyring-internal-api@4.0.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/keyring-internal-api",
3
- "version": "4.0.3-f2dd645",
3
+ "version": "6.0.0-528bbfb",
4
4
  "description": "MetaMask Keyring Internal API",
5
5
  "keywords": [
6
6
  "metamask",
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "@metamask/keyring-api": "17.2.1",
49
- "@metamask/keyring-utils": "2.3.1",
49
+ "@metamask/keyring-utils": "3.0.0",
50
50
  "@metamask/superstruct": "^3.1.0"
51
51
  },
52
52
  "devDependencies": {