@metamask-previews/network-controller 25.0.0-preview-f83c2058 → 26.0.0-preview-4ed214fa

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 +13 -2
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -7,8 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [26.0.0]
11
+
12
+ ### Added
13
+
14
+ - Add infura supported networks ([#6972](https://github.com/MetaMask/core/pull/6972))
15
+
10
16
  ### Changed
11
17
 
18
+ - Bump `@metamask/json-rpc-engine` from `^10.1.1` to `^10.2.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
19
+ - Bump `@metamask/eth-json-rpc-provider` from `^5.0.1` to `^6.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
20
+ - Bump `@metamask/eth-json-rpc-middleware` from `^21.0.0` to `^22.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
21
+ - Bump `@metamask/eth-block-tracker` from `^14.0.0` to `^15.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
12
22
  - **BREAKING:** Use `InternalProvider` instead of `SafeEventEmitterProvider` ([#6796](https://github.com/MetaMask/core/pull/6796))
13
23
  - Providers accessible either via network clients or global proxies no longer emit events (or inherit from EventEmitter, for that matter).
14
24
  - **BREAKING:** Make `Provider` type more specific ([#7061](https://github.com/MetaMask/core/pull/7061))
@@ -20,7 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20
30
  - **BREAKING:** Migrate `NetworkClient` to `JsonRpcEngineV2` ([#7065](https://github.com/MetaMask/core/pull/7065))
21
31
  - This ought to be unobservable, but we mark it as breaking out of an abundance of caution.
22
32
  - **BREAKING:** Update signature of `request` in `AbstractRpcService` and `RpcServiceRequestable` so that the JSON-RPC request must be frozen ([#7138](https://github.com/MetaMask/core/pull/7138))
23
- - Bump `@metamask/controller-utils` from `^11.14.1` to `^11.15.0` ([#7003](https://github.com/MetaMask/core/pull/7003))
33
+ - Bump `@metamask/controller-utils` from `^11.15.0` to `^11.16.0` ([#7003](https://github.com/MetaMask/core/pull/7003), [#7202](https://github.com/MetaMask/core/pull/7202))
24
34
 
25
35
  ### Fixed
26
36
 
@@ -1005,7 +1015,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1005
1015
 
1006
1016
  All changes listed after this point were applied to this package following the monorepo conversion.
1007
1017
 
1008
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@25.0.0...HEAD
1018
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@26.0.0...HEAD
1019
+ [26.0.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@25.0.0...@metamask/network-controller@26.0.0
1009
1020
  [25.0.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@24.3.1...@metamask/network-controller@25.0.0
1010
1021
  [24.3.1]: https://github.com/MetaMask/core/compare/@metamask/network-controller@24.3.0...@metamask/network-controller@24.3.1
1011
1022
  [24.3.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@24.2.2...@metamask/network-controller@24.3.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/network-controller",
3
- "version": "25.0.0-preview-f83c2058",
3
+ "version": "26.0.0-preview-4ed214fa",
4
4
  "description": "Provides an interface to the currently selected network via a MetaMask-compatible provider object",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -49,13 +49,13 @@
49
49
  },
50
50
  "dependencies": {
51
51
  "@metamask/base-controller": "^9.0.0",
52
- "@metamask/controller-utils": "^11.15.0",
53
- "@metamask/eth-block-tracker": "^14.0.0",
52
+ "@metamask/controller-utils": "^11.16.0",
53
+ "@metamask/eth-block-tracker": "^15.0.0",
54
54
  "@metamask/eth-json-rpc-infura": "^10.3.0",
55
- "@metamask/eth-json-rpc-middleware": "^21.0.0",
56
- "@metamask/eth-json-rpc-provider": "^5.0.1",
55
+ "@metamask/eth-json-rpc-middleware": "^22.0.0",
56
+ "@metamask/eth-json-rpc-provider": "^6.0.0",
57
57
  "@metamask/eth-query": "^4.0.0",
58
- "@metamask/json-rpc-engine": "^10.1.1",
58
+ "@metamask/json-rpc-engine": "^10.2.0",
59
59
  "@metamask/messenger": "^0.3.0",
60
60
  "@metamask/rpc-errors": "^7.0.2",
61
61
  "@metamask/swappable-obj-proxy": "^2.3.0",