@metamask/network-controller 22.0.0 → 22.0.2
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 +20 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [22.0.2]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- `getDefaultNetworkConfigurationsByChainId` returns the updated display names for mainnet and linea. `Ethereum Mainnet` instead of `Mainnet`, and `Linea` instead of `Linea Mainnet`. ([#4865](https://github.com/MetaMask/core/pull/4865))
|
|
15
|
+
- Bump `@metamask/controller-utils` from `^11.4.2` to `^11.4.3` ([#4915](https://github.com/MetaMask/core/pull/4915))
|
|
16
|
+
|
|
17
|
+
## [22.0.1]
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Bump `@metamask/base-controller` from `^7.0.1` to `^7.0.2` ([#4862](https://github.com/MetaMask/core/pull/4862))
|
|
22
|
+
- Bump `@metamask/controller-utils` from `^11.4.0` to `^11.4.2` ([#4862](https://github.com/MetaMask/core/pull/4862), [#4870](https://github.com/MetaMask/core/pull/4870))
|
|
23
|
+
- Bump `@metamask/eth-json-rpc-provider` from `^4.1.5` to `^4.1.6` ([#4862](https://github.com/MetaMask/core/pull/4862))
|
|
24
|
+
- Bump `@metamask/json-rpc-engine` from `^10.0.0` to `^10.0.1` ([#4862](https://github.com/MetaMask/core/pull/4862))
|
|
25
|
+
- Bump `@metamask/rpc-errors` from `^7.0.0` to `^7.0.1` ([#4831](https://github.com/MetaMask/core/pull/4831))
|
|
26
|
+
|
|
10
27
|
## [22.0.0]
|
|
11
28
|
|
|
12
29
|
### Changed
|
|
@@ -643,7 +660,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
643
660
|
|
|
644
661
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
645
662
|
|
|
646
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@22.0.
|
|
663
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@22.0.2...HEAD
|
|
664
|
+
[22.0.2]: https://github.com/MetaMask/core/compare/@metamask/network-controller@22.0.1...@metamask/network-controller@22.0.2
|
|
665
|
+
[22.0.1]: https://github.com/MetaMask/core/compare/@metamask/network-controller@22.0.0...@metamask/network-controller@22.0.1
|
|
647
666
|
[22.0.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@21.1.0...@metamask/network-controller@22.0.0
|
|
648
667
|
[21.1.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@21.0.1...@metamask/network-controller@21.1.0
|
|
649
668
|
[21.0.1]: https://github.com/MetaMask/core/compare/@metamask/network-controller@21.0.0...@metamask/network-controller@21.0.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/network-controller",
|
|
3
|
-
"version": "22.0.
|
|
3
|
+
"version": "22.0.2",
|
|
4
4
|
"description": "Provides an interface to the currently selected network via a MetaMask-compatible provider object",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -47,17 +47,17 @@
|
|
|
47
47
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@metamask/base-controller": "^7.0.
|
|
51
|
-
"@metamask/controller-utils": "^11.4.
|
|
50
|
+
"@metamask/base-controller": "^7.0.2",
|
|
51
|
+
"@metamask/controller-utils": "^11.4.3",
|
|
52
52
|
"@metamask/eth-block-tracker": "^11.0.2",
|
|
53
53
|
"@metamask/eth-json-rpc-infura": "^10.0.0",
|
|
54
54
|
"@metamask/eth-json-rpc-middleware": "^15.0.0",
|
|
55
|
-
"@metamask/eth-json-rpc-provider": "^4.1.
|
|
55
|
+
"@metamask/eth-json-rpc-provider": "^4.1.6",
|
|
56
56
|
"@metamask/eth-query": "^4.0.0",
|
|
57
|
-
"@metamask/json-rpc-engine": "^10.0.
|
|
58
|
-
"@metamask/rpc-errors": "^7.0.
|
|
57
|
+
"@metamask/json-rpc-engine": "^10.0.1",
|
|
58
|
+
"@metamask/rpc-errors": "^7.0.1",
|
|
59
59
|
"@metamask/swappable-obj-proxy": "^2.2.0",
|
|
60
|
-
"@metamask/utils": "^
|
|
60
|
+
"@metamask/utils": "^10.0.0",
|
|
61
61
|
"async-mutex": "^0.5.0",
|
|
62
62
|
"immer": "^9.0.6",
|
|
63
63
|
"loglevel": "^1.8.1",
|