@metamask-previews/network-controller 34.0.0-preview-a42e8d0d2 → 35.0.0-preview-d2f661012
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 +6 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [35.0.0]
|
|
11
|
+
|
|
10
12
|
### Added
|
|
11
13
|
|
|
12
14
|
- **BREAKING:** Add optional `analyticsOptions` constructor option that makes `NetworkController` emit `RPC Service Unavailable` and `RPC Service Degraded` analytics events via the `AnalyticsController:trackEvent` action when an RPC endpoint becomes unavailable or degraded ([#9270](https://github.com/MetaMask/core/pull/9270))
|
|
@@ -29,6 +31,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
29
31
|
- This allows Infura-backed networks to be added and updated dynamically without being constrained to the known Infura network list bundled in `@metamask/controller-utils`.
|
|
30
32
|
- Bump `@metamask/messenger` from `^1.2.0` to `^2.0.0` ([#9392](https://github.com/MetaMask/core/pull/9392))
|
|
31
33
|
- Bump `@metamask/connectivity-controller` from `^0.2.0` to `^0.3.0` ([#9435](https://github.com/MetaMask/core/pull/9435))
|
|
34
|
+
- Bump `@metamask/analytics-controller` from `^1.2.1` to `^2.0.0` ([#9735](https://github.com/MetaMask/core/pull/9735))
|
|
35
|
+
- Bump `@metamask/remote-feature-flag-controller` from `^4.2.2` to `^5.0.0` ([#9735](https://github.com/MetaMask/core/pull/9735))
|
|
32
36
|
|
|
33
37
|
## [34.0.0]
|
|
34
38
|
|
|
@@ -1261,7 +1265,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1261
1265
|
|
|
1262
1266
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
1263
1267
|
|
|
1264
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@
|
|
1268
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@35.0.0...HEAD
|
|
1269
|
+
[35.0.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@34.0.0...@metamask/network-controller@35.0.0
|
|
1265
1270
|
[34.0.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@33.0.0...@metamask/network-controller@34.0.0
|
|
1266
1271
|
[33.0.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@32.0.0...@metamask/network-controller@33.0.0
|
|
1267
1272
|
[32.0.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@31.1.0...@metamask/network-controller@32.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/network-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "35.0.0-preview-d2f661012",
|
|
4
4
|
"description": "Provides an interface to the currently selected network via a MetaMask-compatible provider object",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ethereum",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@metamask/analytics-controller": "^
|
|
58
|
+
"@metamask/analytics-controller": "^2.0.0",
|
|
59
59
|
"@metamask/base-controller": "^9.1.0",
|
|
60
60
|
"@metamask/connectivity-controller": "^0.3.0",
|
|
61
61
|
"@metamask/controller-utils": "^12.3.0",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"@metamask/eth-query": "^4.0.0",
|
|
67
67
|
"@metamask/json-rpc-engine": "^10.5.0",
|
|
68
68
|
"@metamask/messenger": "^2.0.0",
|
|
69
|
-
"@metamask/remote-feature-flag-controller": "^
|
|
69
|
+
"@metamask/remote-feature-flag-controller": "^5.0.0",
|
|
70
70
|
"@metamask/rpc-errors": "^7.0.2",
|
|
71
71
|
"@metamask/swappable-obj-proxy": "^2.3.0",
|
|
72
72
|
"@metamask/utils": "^11.11.0",
|