@metamask/network-controller 18.0.0 → 18.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -1
  2. package/package.json +6 -6
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
+ ## [18.0.1]
11
+
12
+ ### Fixed
13
+
14
+ - Fix `types` field in `package.json` ([#4047](https://github.com/MetaMask/core/pull/4047))
15
+
10
16
  ## [18.0.0]
11
17
 
12
18
  ### Added
@@ -452,7 +458,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
452
458
 
453
459
  All changes listed after this point were applied to this package following the monorepo conversion.
454
460
 
455
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@18.0.0...HEAD
461
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@18.0.1...HEAD
462
+ [18.0.1]: https://github.com/MetaMask/core/compare/@metamask/network-controller@18.0.0...@metamask/network-controller@18.0.1
456
463
  [18.0.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@17.2.1...@metamask/network-controller@18.0.0
457
464
  [17.2.1]: https://github.com/MetaMask/core/compare/@metamask/network-controller@17.2.0...@metamask/network-controller@17.2.1
458
465
  [17.2.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@17.1.0...@metamask/network-controller@17.2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/network-controller",
3
- "version": "18.0.0",
3
+ "version": "18.0.1",
4
4
  "description": "Provides an interface to the currently selected network via a MetaMask-compatible provider object",
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
  ],
@@ -41,13 +41,13 @@
41
41
  "test:watch": "jest --watch"
42
42
  },
43
43
  "dependencies": {
44
- "@metamask/base-controller": "^5.0.0",
45
- "@metamask/controller-utils": "^9.0.0",
44
+ "@metamask/base-controller": "^5.0.1",
45
+ "@metamask/controller-utils": "^9.0.1",
46
46
  "@metamask/eth-json-rpc-infura": "^9.1.0",
47
47
  "@metamask/eth-json-rpc-middleware": "^12.1.0",
48
- "@metamask/eth-json-rpc-provider": "^3.0.0",
48
+ "@metamask/eth-json-rpc-provider": "^3.0.1",
49
49
  "@metamask/eth-query": "^4.0.0",
50
- "@metamask/json-rpc-engine": "^8.0.0",
50
+ "@metamask/json-rpc-engine": "^8.0.1",
51
51
  "@metamask/rpc-errors": "^6.2.1",
52
52
  "@metamask/swappable-obj-proxy": "^2.2.0",
53
53
  "@metamask/utils": "^8.3.0",