@metamask/ens-controller 14.0.1 → 15.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 +10 -1
- package/package.json +5 -5
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
|
+
## [15.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **BREAKING:** Bump `@metamask/network-controller` peer dependency to `^22.0.0` ([#4841](https://github.com/MetaMask/core/pull/4841))
|
|
15
|
+
- Bump `@metamask/controller-utils` to `^11.4.0` ([#4834](https://github.com/MetaMask/core/pull/4834))
|
|
16
|
+
- Bump `@metamask/utils` to `^10.0.0` ([#4831](https://github.com/MetaMask/core/pull/4831))
|
|
17
|
+
|
|
10
18
|
## [14.0.1]
|
|
11
19
|
|
|
12
20
|
### Fixed
|
|
@@ -247,7 +255,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
247
255
|
|
|
248
256
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
249
257
|
|
|
250
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@
|
|
258
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@15.0.0...HEAD
|
|
259
|
+
[15.0.0]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@14.0.1...@metamask/ens-controller@15.0.0
|
|
251
260
|
[14.0.1]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@14.0.0...@metamask/ens-controller@14.0.1
|
|
252
261
|
[14.0.0]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@13.0.1...@metamask/ens-controller@14.0.0
|
|
253
262
|
[13.0.1]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@13.0.0...@metamask/ens-controller@13.0.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/ens-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "15.0.0",
|
|
4
4
|
"description": "Maps ENS names to their resolved addresses by chain id",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -49,13 +49,13 @@
|
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@ethersproject/providers": "^5.7.0",
|
|
51
51
|
"@metamask/base-controller": "^7.0.1",
|
|
52
|
-
"@metamask/controller-utils": "^11.
|
|
53
|
-
"@metamask/utils": "^
|
|
52
|
+
"@metamask/controller-utils": "^11.4.0",
|
|
53
|
+
"@metamask/utils": "^10.0.0",
|
|
54
54
|
"punycode": "^2.1.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@metamask/auto-changelog": "^3.4.4",
|
|
58
|
-
"@metamask/network-controller": "^
|
|
58
|
+
"@metamask/network-controller": "^22.0.0",
|
|
59
59
|
"@types/jest": "^27.4.1",
|
|
60
60
|
"deepmerge": "^4.2.2",
|
|
61
61
|
"jest": "^27.5.1",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"typescript": "~5.2.2"
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|
|
68
|
-
"@metamask/network-controller": "^
|
|
68
|
+
"@metamask/network-controller": "^22.0.0"
|
|
69
69
|
},
|
|
70
70
|
"engines": {
|
|
71
71
|
"node": "^18.18 || >=20"
|