@metamask/network-controller 10.3.0 → 10.3.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 +7 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [10.3.1]
|
|
10
|
+
### Changed
|
|
11
|
+
- Bump `@metamask/eth-json-rpc-infura` dependency from ^8.0.0 to ^8.1.0
|
|
12
|
+
- This extends the types that this package recognizes to include Linea networks
|
|
13
|
+
|
|
9
14
|
## [10.3.0]
|
|
10
15
|
### Added
|
|
11
16
|
- Add `getNetworkClientsById` method ([#1439](https://github.com/MetaMask/core/pull/1439))
|
|
@@ -200,7 +205,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
200
205
|
|
|
201
206
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
202
207
|
|
|
203
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@10.3.
|
|
208
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@10.3.1...HEAD
|
|
209
|
+
[10.3.1]: https://github.com/MetaMask/core/compare/@metamask/network-controller@10.3.0...@metamask/network-controller@10.3.1
|
|
204
210
|
[10.3.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@10.2.0...@metamask/network-controller@10.3.0
|
|
205
211
|
[10.2.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@10.1.0...@metamask/network-controller@10.2.0
|
|
206
212
|
[10.1.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@10.0.0...@metamask/network-controller@10.1.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/network-controller",
|
|
3
|
-
"version": "10.3.
|
|
3
|
+
"version": "10.3.1",
|
|
4
4
|
"description": "Provides an interface to the currently selected network via a MetaMask-compatible provider object",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@metamask/base-controller": "^3.
|
|
33
|
-
"@metamask/controller-utils": "^4.
|
|
34
|
-
"@metamask/eth-json-rpc-infura": "^8.
|
|
32
|
+
"@metamask/base-controller": "^3.1.0",
|
|
33
|
+
"@metamask/controller-utils": "^4.2.0",
|
|
34
|
+
"@metamask/eth-json-rpc-infura": "^8.1.0",
|
|
35
35
|
"@metamask/eth-json-rpc-middleware": "^11.0.0",
|
|
36
36
|
"@metamask/eth-json-rpc-provider": "^1.0.0",
|
|
37
37
|
"@metamask/swappable-obj-proxy": "^2.1.0",
|