@metamask/network-controller 30.0.0 → 30.0.1
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 +13 -1
- package/package.json +7 -8
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [30.0.1]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump `@metamask/base-controller` from `^9.0.0` to `^9.0.1` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
15
|
+
- Bump `@metamask/connectivity-controller` from `^0.1.0` to `^0.2.0` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
16
|
+
- Bump `@metamask/eth-json-rpc-middleware` from `^23.1.0` to `^23.1.1` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
17
|
+
- Bump `@metamask/eth-json-rpc-provider` from `^6.0.0` to `^6.0.1` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
18
|
+
- Bump `@metamask/messenger` from `^0.3.0` to `^1.0.0` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
19
|
+
- Bump `@metamask/json-rpc-engine` from `^10.2.2` to `^10.2.4` ([#8078](https://github.com/MetaMask/core/pull/8078), [#8317](https://github.com/MetaMask/core/pull/8317))
|
|
20
|
+
|
|
10
21
|
## [30.0.0]
|
|
11
22
|
|
|
12
23
|
### Added
|
|
@@ -1115,7 +1126,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1115
1126
|
|
|
1116
1127
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
1117
1128
|
|
|
1118
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@30.0.
|
|
1129
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@30.0.1...HEAD
|
|
1130
|
+
[30.0.1]: https://github.com/MetaMask/core/compare/@metamask/network-controller@30.0.0...@metamask/network-controller@30.0.1
|
|
1119
1131
|
[30.0.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@29.0.0...@metamask/network-controller@30.0.0
|
|
1120
1132
|
[29.0.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@28.0.0...@metamask/network-controller@29.0.0
|
|
1121
1133
|
[28.0.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@27.2.0...@metamask/network-controller@28.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/network-controller",
|
|
3
|
-
"version": "30.0.
|
|
3
|
+
"version": "30.0.1",
|
|
4
4
|
"description": "Provides an interface to the currently selected network via a MetaMask-compatible provider object",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -40,7 +40,6 @@
|
|
|
40
40
|
"build:docs": "typedoc",
|
|
41
41
|
"changelog:update": "../../scripts/update-changelog.sh @metamask/network-controller",
|
|
42
42
|
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/network-controller",
|
|
43
|
-
"publish:preview": "yarn npm publish --tag preview",
|
|
44
43
|
"since-latest-release": "../../scripts/since-latest-release.sh",
|
|
45
44
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
|
|
46
45
|
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
|
|
@@ -48,16 +47,16 @@
|
|
|
48
47
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
|
|
49
48
|
},
|
|
50
49
|
"dependencies": {
|
|
51
|
-
"@metamask/base-controller": "^9.0.
|
|
52
|
-
"@metamask/connectivity-controller": "^0.
|
|
50
|
+
"@metamask/base-controller": "^9.0.1",
|
|
51
|
+
"@metamask/connectivity-controller": "^0.2.0",
|
|
53
52
|
"@metamask/controller-utils": "^11.19.0",
|
|
54
53
|
"@metamask/eth-block-tracker": "^15.0.1",
|
|
55
54
|
"@metamask/eth-json-rpc-infura": "^10.3.0",
|
|
56
|
-
"@metamask/eth-json-rpc-middleware": "^23.1.
|
|
57
|
-
"@metamask/eth-json-rpc-provider": "^6.0.
|
|
55
|
+
"@metamask/eth-json-rpc-middleware": "^23.1.1",
|
|
56
|
+
"@metamask/eth-json-rpc-provider": "^6.0.1",
|
|
58
57
|
"@metamask/eth-query": "^4.0.0",
|
|
59
|
-
"@metamask/json-rpc-engine": "^10.2.
|
|
60
|
-
"@metamask/messenger": "^0.
|
|
58
|
+
"@metamask/json-rpc-engine": "^10.2.4",
|
|
59
|
+
"@metamask/messenger": "^1.0.0",
|
|
61
60
|
"@metamask/rpc-errors": "^7.0.2",
|
|
62
61
|
"@metamask/swappable-obj-proxy": "^2.3.0",
|
|
63
62
|
"@metamask/utils": "^11.9.0",
|