@metamask/network-controller 18.1.3 → 19.0.0
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 +12 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [19.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **BREAKING:** Bump minimum Node version to 18.18 ([#3611](https://github.com/MetaMask/core/pull/3611))
|
|
15
|
+
- Bump `@metamask/base-controller` to `^6.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
|
|
16
|
+
- Bump `@metamask/controller-utils` to `^11.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
|
|
17
|
+
- Bump `@metamask/eth-json-rpc-provider` to `^4.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
|
|
18
|
+
- Bump `@metamask/json-rpc-engine` to `^9.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
|
|
19
|
+
|
|
10
20
|
## [18.1.3]
|
|
11
21
|
|
|
12
22
|
### Changed
|
|
@@ -495,7 +505,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
495
505
|
|
|
496
506
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
497
507
|
|
|
498
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@
|
|
508
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@19.0.0...HEAD
|
|
509
|
+
[19.0.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@18.1.3...@metamask/network-controller@19.0.0
|
|
499
510
|
[18.1.3]: https://github.com/MetaMask/core/compare/@metamask/network-controller@18.1.2...@metamask/network-controller@18.1.3
|
|
500
511
|
[18.1.2]: https://github.com/MetaMask/core/compare/@metamask/network-controller@18.1.1...@metamask/network-controller@18.1.2
|
|
501
512
|
[18.1.1]: https://github.com/MetaMask/core/compare/@metamask/network-controller@18.1.0...@metamask/network-controller@18.1.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/network-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "19.0.0",
|
|
4
4
|
"description": "Provides an interface to the currently selected network via a MetaMask-compatible provider object",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -41,14 +41,14 @@
|
|
|
41
41
|
"test:watch": "jest --watch"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@metamask/base-controller": "^
|
|
45
|
-
"@metamask/controller-utils": "^
|
|
44
|
+
"@metamask/base-controller": "^6.0.0",
|
|
45
|
+
"@metamask/controller-utils": "^11.0.0",
|
|
46
46
|
"@metamask/eth-block-tracker": "^9.0.2",
|
|
47
47
|
"@metamask/eth-json-rpc-infura": "^9.1.0",
|
|
48
48
|
"@metamask/eth-json-rpc-middleware": "^12.1.1",
|
|
49
|
-
"@metamask/eth-json-rpc-provider": "^
|
|
49
|
+
"@metamask/eth-json-rpc-provider": "^4.0.0",
|
|
50
50
|
"@metamask/eth-query": "^4.0.0",
|
|
51
|
-
"@metamask/json-rpc-engine": "^
|
|
51
|
+
"@metamask/json-rpc-engine": "^9.0.0",
|
|
52
52
|
"@metamask/rpc-errors": "^6.2.1",
|
|
53
53
|
"@metamask/swappable-obj-proxy": "^2.2.0",
|
|
54
54
|
"@metamask/utils": "^8.3.0",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"typescript": "~4.9.5"
|
|
75
75
|
},
|
|
76
76
|
"engines": {
|
|
77
|
-
"node": ">=
|
|
77
|
+
"node": "^18.18 || >=20"
|
|
78
78
|
},
|
|
79
79
|
"publishConfig": {
|
|
80
80
|
"access": "public",
|