@metamask-previews/eip-5792-middleware 3.0.5-preview-b8d04f274 → 3.0.5-preview-1ccf11bcb

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 +2 -0
  2. package/package.json +5 -1
package/CHANGELOG.md CHANGED
@@ -14,6 +14,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
14
  - Bump `@metamask/utils` from `^11.9.0` to `^11.11.0` ([#9074](https://github.com/MetaMask/core/pull/9074))
15
15
  - Bump `@metamask/transaction-controller` from `^65.4.0` to `^69.0.0` ([#8848](https://github.com/MetaMask/core/pull/8848), [#8999](https://github.com/MetaMask/core/pull/8999), [#9021](https://github.com/MetaMask/core/pull/9021), [#9027](https://github.com/MetaMask/core/pull/9027), [#9066](https://github.com/MetaMask/core/pull/9066), [#9089](https://github.com/MetaMask/core/pull/9089), [#9177](https://github.com/MetaMask/core/pull/9177), [#9203](https://github.com/MetaMask/core/pull/9203), [#9218](https://github.com/MetaMask/core/pull/9218), [#9253](https://github.com/MetaMask/core/pull/9253), [#9337](https://github.com/MetaMask/core/pull/9337), [#9349](https://github.com/MetaMask/core/pull/9349), [#9421](https://github.com/MetaMask/core/pull/9421), [#9456](https://github.com/MetaMask/core/pull/9456), [#9470](https://github.com/MetaMask/core/pull/9470))
16
16
  - Bump `@metamask/messenger` from `^1.2.0` to `^2.0.0` ([#9392](https://github.com/MetaMask/core/pull/9392))
17
+ - Add missing dependency `@metamask/preferences-controller` (`^23.1.0`) ([#8384](https://github.com/MetaMask/core/pull/8384))
18
+ - This is technically not needed, but it is still referenced in the `EIP5792Messenger` messenger type
17
19
 
18
20
  ## [3.0.4]
19
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/eip-5792-middleware",
3
- "version": "3.0.5-preview-b8d04f274",
3
+ "version": "3.0.5-preview-1ccf11bcb",
4
4
  "description": "Implements the JSON-RPC methods for sending multiple calls from the user's wallet, and checking their status, as referenced in EIP-5792",
5
5
  "keywords": [
6
6
  "Ethereum",
@@ -44,6 +44,8 @@
44
44
  "build:docs": "typedoc",
45
45
  "changelog:update": "../../scripts/update-changelog.sh @metamask/eip-5792-middleware",
46
46
  "changelog:validate": "../../scripts/validate-changelog.sh @metamask/eip-5792-middleware",
47
+ "lint:tsconfigs": "tsx ../../scripts/lint-tsconfigs/lint-tsconfigs.mts",
48
+ "lint:tsconfigs:fix": "tsx ../../scripts/lint-tsconfigs/lint-tsconfigs.mts --fix",
47
49
  "since-latest-release": "../../scripts/since-latest-release.sh",
48
50
  "test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
49
51
  "test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
@@ -52,6 +54,7 @@
52
54
  },
53
55
  "dependencies": {
54
56
  "@metamask/messenger": "^2.0.0",
57
+ "@metamask/preferences-controller": "^23.1.0",
55
58
  "@metamask/superstruct": "^3.1.0",
56
59
  "@metamask/transaction-controller": "^69.0.0",
57
60
  "@metamask/utils": "^11.11.0",
@@ -68,6 +71,7 @@
68
71
  "jest": "^29.7.0",
69
72
  "klona": "^2.0.6",
70
73
  "ts-jest": "^29.2.5",
74
+ "tsx": "^4.20.5",
71
75
  "typedoc": "^0.25.13",
72
76
  "typedoc-plugin-missing-exports": "^2.0.0",
73
77
  "typescript": "~5.3.3"