@metamask/network-controller 15.1.0 → 15.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -1
  2. package/package.json +7 -6
package/CHANGELOG.md CHANGED
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [15.2.0]
10
+ ### Changed
11
+ - Update @metamask/eth-json-rpc-middleware in network controller ([#1988](https://github.com/MetaMask/core/pull/1988))
12
+ - Bump dependency on `@metamask/json-rpc-engine` to ^7.2.0 ([#1895](https://github.com/MetaMask/core/pull/1895))
13
+ - Bump @metamask/utils from 8.1.0 to 8.2.0 ([#1957](https://github.com/MetaMask/core/pull/1957))
14
+
9
15
  ## [15.1.0]
10
16
  ### Added
11
17
  - Add new action handlers and associated types ([#1806](https://github.com/MetaMask/core/pull/1806))
@@ -298,7 +304,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
298
304
 
299
305
  All changes listed after this point were applied to this package following the monorepo conversion.
300
306
 
301
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@15.1.0...HEAD
307
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@15.2.0...HEAD
308
+ [15.2.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@15.1.0...@metamask/network-controller@15.2.0
302
309
  [15.1.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@15.0.0...@metamask/network-controller@15.1.0
303
310
  [15.0.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@14.0.0...@metamask/network-controller@15.0.0
304
311
  [14.0.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@13.0.1...@metamask/network-controller@14.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/network-controller",
3
- "version": "15.1.0",
3
+ "version": "15.2.0",
4
4
  "description": "Provides an interface to the currently selected network via a MetaMask-compatible provider object",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -24,21 +24,22 @@
24
24
  "build:docs": "typedoc",
25
25
  "changelog:validate": "../../scripts/validate-changelog.sh @metamask/network-controller",
26
26
  "publish:preview": "yarn npm publish --tag preview",
27
- "test": "jest",
27
+ "test": "jest --reporters=jest-silent-reporter",
28
28
  "test:clean": "jest --clearCache",
29
+ "test:verbose": "jest --verbose",
29
30
  "test:watch": "jest --watch"
30
31
  },
31
32
  "dependencies": {
32
33
  "@metamask/base-controller": "^3.2.3",
33
34
  "@metamask/controller-utils": "^5.0.2",
34
35
  "@metamask/eth-json-rpc-infura": "^9.0.0",
35
- "@metamask/eth-json-rpc-middleware": "^12.0.0",
36
+ "@metamask/eth-json-rpc-middleware": "^12.0.1",
36
37
  "@metamask/eth-json-rpc-provider": "^2.2.0",
37
38
  "@metamask/eth-query": "^3.0.1",
38
- "@metamask/json-rpc-engine": "^7.1.1",
39
+ "@metamask/json-rpc-engine": "^7.2.0",
39
40
  "@metamask/rpc-errors": "^6.1.0",
40
41
  "@metamask/swappable-obj-proxy": "^2.1.0",
41
- "@metamask/utils": "^8.1.0",
42
+ "@metamask/utils": "^8.2.0",
42
43
  "async-mutex": "^0.2.6",
43
44
  "eth-block-tracker": "^8.0.0",
44
45
  "immer": "^9.0.6",
@@ -46,7 +47,7 @@
46
47
  },
47
48
  "devDependencies": {
48
49
  "@json-rpc-specification/meta-schema": "^1.0.6",
49
- "@metamask/auto-changelog": "^3.4.2",
50
+ "@metamask/auto-changelog": "^3.4.3",
50
51
  "@types/jest": "^27.4.1",
51
52
  "@types/jest-when": "^2.7.3",
52
53
  "@types/lodash": "^4.14.191",