@metamask-previews/network-controller 22.0.2-preview-57e6ab5d → 22.1.0-preview-977dd3f9

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 +28 -1
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -7,6 +7,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [22.1.0]
11
+
12
+ ### Added
13
+
14
+ - The `NetworkController:networkRemoved` messenger event will now be emitted when a network is removed ([#4698](https://github.com/MetaMask/core/pull/4698))
15
+ - Add messenger actions `NetworkController:addNetwork`, `NetworkController:removeNetwork`, and `NetworkController:updateNetwork` which call the respective controller methods ([#4698](https://github.com/MetaMask/core/pull/4698))
16
+ - Add `lastUpdatedAt` property to network configurations which will be set to the current time on addition or update ([#4652](https://github.com/MetaMask/core/pull/4652))
17
+ - This was added to support the upcoming network syncing feature.
18
+ - This property is optional and will be `undefined` for existing network configurations that have not yet been updated.
19
+
20
+ ### Changed
21
+
22
+ - Add dependency `fast-deep-equal` ([#4652](https://github.com/MetaMask/core/pull/4652))
23
+ - Bump `@metamask/controller-utils` from `^11.4.3` to `^11.4.4` ([#5012](https://github.com/MetaMask/core/pull/5012))
24
+
25
+ ### Fixed
26
+
27
+ - Remove dependency on Node builtin module `util` to ensure that `@metamask/network-controller` can be used in a strict browser context ([#3672](https://github.com/MetaMask/core/pull/3672))
28
+ - Correct ESM-compatible build so that imports of the following packages that re-export other modules via `export *` are no longer corrupted: ([#5011](https://github.com/MetaMask/core/pull/5011))
29
+ - `@metamask/eth-block-tracker`
30
+ - `@metamask/eth-json-rpc-infura`
31
+ - `@metamask/eth-json-rpc-middleware`
32
+ - `@metamask/eth-query`
33
+ - `@metamask/swappable-obj-proxy`
34
+ - `fast-deep-equal`
35
+
10
36
  ## [22.0.2]
11
37
 
12
38
  ### Changed
@@ -660,7 +686,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
660
686
 
661
687
  All changes listed after this point were applied to this package following the monorepo conversion.
662
688
 
663
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@22.0.2...HEAD
689
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@22.1.0...HEAD
690
+ [22.1.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@22.0.2...@metamask/network-controller@22.1.0
664
691
  [22.0.2]: https://github.com/MetaMask/core/compare/@metamask/network-controller@22.0.1...@metamask/network-controller@22.0.2
665
692
  [22.0.1]: https://github.com/MetaMask/core/compare/@metamask/network-controller@22.0.0...@metamask/network-controller@22.0.1
666
693
  [22.0.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@21.1.0...@metamask/network-controller@22.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/network-controller",
3
- "version": "22.0.2-preview-57e6ab5d",
3
+ "version": "22.1.0-preview-977dd3f9",
4
4
  "description": "Provides an interface to the currently selected network via a MetaMask-compatible provider object",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -48,7 +48,7 @@
48
48
  },
49
49
  "dependencies": {
50
50
  "@metamask/base-controller": "^7.0.2",
51
- "@metamask/controller-utils": "^11.4.3",
51
+ "@metamask/controller-utils": "^11.4.4",
52
52
  "@metamask/eth-block-tracker": "^11.0.2",
53
53
  "@metamask/eth-json-rpc-infura": "^10.0.0",
54
54
  "@metamask/eth-json-rpc-middleware": "^15.0.0",