@metamask/ens-controller 10.0.0 → 10.0.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 +8 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [10.0.1]
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Fix `types` field in `package.json` ([#4047](https://github.com/MetaMask/core/pull/4047))
|
|
15
|
+
|
|
10
16
|
## [10.0.0]
|
|
11
17
|
|
|
12
18
|
### Added
|
|
@@ -168,7 +174,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
168
174
|
|
|
169
175
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
170
176
|
|
|
171
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@10.0.
|
|
177
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@10.0.1...HEAD
|
|
178
|
+
[10.0.1]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@10.0.0...@metamask/ens-controller@10.0.1
|
|
172
179
|
[10.0.0]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@9.0.0...@metamask/ens-controller@10.0.0
|
|
173
180
|
[9.0.0]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@8.0.0...@metamask/ens-controller@9.0.0
|
|
174
181
|
[8.0.0]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@7.0.0...@metamask/ens-controller@8.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/ens-controller",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.1",
|
|
4
4
|
"description": "Maps ENS names to their resolved addresses by chain id",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"./package.json": "./package.json"
|
|
26
26
|
},
|
|
27
27
|
"main": "./dist/index.js",
|
|
28
|
-
"types": "./dist/index.d.ts",
|
|
28
|
+
"types": "./dist/types/index.d.ts",
|
|
29
29
|
"files": [
|
|
30
30
|
"dist/"
|
|
31
31
|
],
|
|
@@ -42,14 +42,14 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@ethersproject/providers": "^5.7.0",
|
|
45
|
-
"@metamask/base-controller": "^5.0.
|
|
46
|
-
"@metamask/controller-utils": "^9.0.
|
|
45
|
+
"@metamask/base-controller": "^5.0.1",
|
|
46
|
+
"@metamask/controller-utils": "^9.0.1",
|
|
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": "^18.0.
|
|
52
|
+
"@metamask/network-controller": "^18.0.1",
|
|
53
53
|
"@types/jest": "^27.4.1",
|
|
54
54
|
"deepmerge": "^4.2.2",
|
|
55
55
|
"jest": "^27.5.1",
|