@metamask/multichain-network-controller 0.10.0 → 0.11.0
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 +10 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.11.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **BREAKING:** Bump peer dependency `@metamask/accounts-controller` from `^31.0.0` to `^32.0.0` ([#6171](https://github.com/MetaMask/core/pull/6171))
|
|
15
|
+
- Bump `@metamask/keyring-api` from `^18.0.0` to `^19.0.0` ([#6146](https://github.com/MetaMask/core/pull/6146))
|
|
16
|
+
- Bump `@metamask/keyring-internal-api` from `^6.2.0` to `^7.0.0` ([#6146](https://github.com/MetaMask/core/pull/6146))
|
|
17
|
+
|
|
10
18
|
## [0.10.0]
|
|
11
19
|
|
|
12
20
|
### Changed
|
|
@@ -120,7 +128,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
120
128
|
- Handle both EVM and non-EVM network and account switching for the associated network.
|
|
121
129
|
- Act as a proxy for the `NetworkController` (for EVM network changes).
|
|
122
130
|
|
|
123
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-network-controller@0.
|
|
131
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-network-controller@0.11.0...HEAD
|
|
132
|
+
[0.11.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-network-controller@0.10.0...@metamask/multichain-network-controller@0.11.0
|
|
124
133
|
[0.10.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-network-controller@0.9.0...@metamask/multichain-network-controller@0.10.0
|
|
125
134
|
[0.9.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-network-controller@0.8.0...@metamask/multichain-network-controller@0.9.0
|
|
126
135
|
[0.8.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-network-controller@0.7.0...@metamask/multichain-network-controller@0.8.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/multichain-network-controller",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "Multichain network controller",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -49,18 +49,18 @@
|
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@metamask/base-controller": "^8.0.1",
|
|
51
51
|
"@metamask/controller-utils": "^11.11.0",
|
|
52
|
-
"@metamask/keyring-api": "^
|
|
53
|
-
"@metamask/keyring-internal-api": "^
|
|
52
|
+
"@metamask/keyring-api": "^19.0.0",
|
|
53
|
+
"@metamask/keyring-internal-api": "^7.0.0",
|
|
54
54
|
"@metamask/superstruct": "^3.1.0",
|
|
55
55
|
"@metamask/utils": "^11.4.2",
|
|
56
56
|
"@solana/addresses": "^2.0.0",
|
|
57
57
|
"lodash": "^4.17.21"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@metamask/accounts-controller": "^
|
|
60
|
+
"@metamask/accounts-controller": "^32.0.0",
|
|
61
61
|
"@metamask/auto-changelog": "^3.4.4",
|
|
62
62
|
"@metamask/keyring-controller": "^22.1.0",
|
|
63
|
-
"@metamask/network-controller": "^24.0.
|
|
63
|
+
"@metamask/network-controller": "^24.0.1",
|
|
64
64
|
"@types/jest": "^27.4.1",
|
|
65
65
|
"@types/lodash": "^4.14.191",
|
|
66
66
|
"@types/uuid": "^8.3.0",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"typescript": "~5.2.2"
|
|
75
75
|
},
|
|
76
76
|
"peerDependencies": {
|
|
77
|
-
"@metamask/accounts-controller": "^
|
|
77
|
+
"@metamask/accounts-controller": "^32.0.0",
|
|
78
78
|
"@metamask/network-controller": "^24.0.0"
|
|
79
79
|
},
|
|
80
80
|
"engines": {
|