@metamask/ens-controller 11.0.0 → 12.0.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 +11 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [12.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **BREAKING:** Bump minimum Node version to 18.18 ([#3611](https://github.com/MetaMask/core/pull/3611))
|
|
15
|
+
- **BREAKING:** Bump peer dependency `@metamask/network-controller` to `^19.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
|
|
16
|
+
- Bump `@metamask/base-controller` to `^6.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
|
|
17
|
+
- Bump `@metamask/controller-utils` to `^11.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
|
|
18
|
+
|
|
10
19
|
## [11.0.0]
|
|
11
20
|
|
|
12
21
|
### Changed
|
|
@@ -186,7 +195,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
186
195
|
|
|
187
196
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
188
197
|
|
|
189
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@
|
|
198
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@12.0.0...HEAD
|
|
199
|
+
[12.0.0]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@11.0.0...@metamask/ens-controller@12.0.0
|
|
190
200
|
[11.0.0]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@10.0.1...@metamask/ens-controller@11.0.0
|
|
191
201
|
[10.0.1]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@10.0.0...@metamask/ens-controller@10.0.1
|
|
192
202
|
[10.0.0]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@9.0.0...@metamask/ens-controller@10.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/ens-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.0.0",
|
|
4
4
|
"description": "Maps ENS names to their resolved addresses by chain id",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -42,14 +42,14 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@ethersproject/providers": "^5.7.0",
|
|
45
|
-
"@metamask/base-controller": "^
|
|
46
|
-
"@metamask/controller-utils": "^
|
|
45
|
+
"@metamask/base-controller": "^6.0.0",
|
|
46
|
+
"@metamask/controller-utils": "^11.0.0",
|
|
47
47
|
"@metamask/utils": "^8.3.0",
|
|
48
48
|
"punycode": "^2.1.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@metamask/auto-changelog": "^3.4.4",
|
|
52
|
-
"@metamask/network-controller": "^
|
|
52
|
+
"@metamask/network-controller": "^19.0.0",
|
|
53
53
|
"@types/jest": "^27.4.1",
|
|
54
54
|
"deepmerge": "^4.2.2",
|
|
55
55
|
"jest": "^27.5.1",
|
|
@@ -59,10 +59,10 @@
|
|
|
59
59
|
"typescript": "~4.9.5"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
|
-
"@metamask/network-controller": "^
|
|
62
|
+
"@metamask/network-controller": "^19.0.0"
|
|
63
63
|
},
|
|
64
64
|
"engines": {
|
|
65
|
-
"node": ">=
|
|
65
|
+
"node": "^18.18 || >=20"
|
|
66
66
|
},
|
|
67
67
|
"publishConfig": {
|
|
68
68
|
"access": "public",
|