@metamask/multichain-network-controller 0.10.0 → 0.11.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 +18 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.11.1]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump `@metamask/keyring-api` from `^19.0.0` to `^20.0.0` ([#6248](https://github.com/MetaMask/core/pull/6248))
|
|
15
|
+
- Bump `@metamask/keyring-internal-api` from `^7.0.0` to `^8.0.0` ([#6248](https://github.com/MetaMask/core/pull/6248))
|
|
16
|
+
|
|
17
|
+
## [0.11.0]
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- **BREAKING:** Bump peer dependency `@metamask/accounts-controller` from `^31.0.0` to `^32.0.0` ([#6171](https://github.com/MetaMask/core/pull/6171))
|
|
22
|
+
- Bump `@metamask/keyring-api` from `^18.0.0` to `^19.0.0` ([#6146](https://github.com/MetaMask/core/pull/6146))
|
|
23
|
+
- Bump `@metamask/keyring-internal-api` from `^6.2.0` to `^7.0.0` ([#6146](https://github.com/MetaMask/core/pull/6146))
|
|
24
|
+
|
|
10
25
|
## [0.10.0]
|
|
11
26
|
|
|
12
27
|
### Changed
|
|
@@ -120,7 +135,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
120
135
|
- Handle both EVM and non-EVM network and account switching for the associated network.
|
|
121
136
|
- Act as a proxy for the `NetworkController` (for EVM network changes).
|
|
122
137
|
|
|
123
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-network-controller@0.
|
|
138
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-network-controller@0.11.1...HEAD
|
|
139
|
+
[0.11.1]: https://github.com/MetaMask/core/compare/@metamask/multichain-network-controller@0.11.0...@metamask/multichain-network-controller@0.11.1
|
|
140
|
+
[0.11.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-network-controller@0.10.0...@metamask/multichain-network-controller@0.11.0
|
|
124
141
|
[0.10.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-network-controller@0.9.0...@metamask/multichain-network-controller@0.10.0
|
|
125
142
|
[0.9.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-network-controller@0.8.0...@metamask/multichain-network-controller@0.9.0
|
|
126
143
|
[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.1",
|
|
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": "^20.0.0",
|
|
53
|
+
"@metamask/keyring-internal-api": "^8.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.2",
|
|
61
61
|
"@metamask/auto-changelog": "^3.4.4",
|
|
62
|
-
"@metamask/keyring-controller": "^22.1.
|
|
63
|
-
"@metamask/network-controller": "^24.0.
|
|
62
|
+
"@metamask/keyring-controller": "^22.1.1",
|
|
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": {
|