@metamask/network-controller
Advanced tools
Comparing version 22.0.2 to 22.1.0
@@ -10,2 +10,28 @@ # Changelog | ||
## [22.1.0] | ||
### Added | ||
- The `NetworkController:networkRemoved` messenger event will now be emitted when a network is removed ([#4698](https://github.com/MetaMask/core/pull/4698)) | ||
- Add messenger actions `NetworkController:addNetwork`, `NetworkController:removeNetwork`, and `NetworkController:updateNetwork` which call the respective controller methods ([#4698](https://github.com/MetaMask/core/pull/4698)) | ||
- 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)) | ||
- This was added to support the upcoming network syncing feature. | ||
- This property is optional and will be `undefined` for existing network configurations that have not yet been updated. | ||
### Changed | ||
- Add dependency `fast-deep-equal` ([#4652](https://github.com/MetaMask/core/pull/4652)) | ||
- Bump `@metamask/controller-utils` from `^11.4.3` to `^11.4.4` ([#5012](https://github.com/MetaMask/core/pull/5012)) | ||
### Fixed | ||
- 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)) | ||
- 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)) | ||
- `@metamask/eth-block-tracker` | ||
- `@metamask/eth-json-rpc-infura` | ||
- `@metamask/eth-json-rpc-middleware` | ||
- `@metamask/eth-query` | ||
- `@metamask/swappable-obj-proxy` | ||
- `fast-deep-equal` | ||
## [22.0.2] | ||
@@ -664,3 +690,4 @@ | ||
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@22.0.2...HEAD | ||
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@22.1.0...HEAD | ||
[22.1.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@22.0.2...@metamask/network-controller@22.1.0 | ||
[22.0.2]: https://github.com/MetaMask/core/compare/@metamask/network-controller@22.0.1...@metamask/network-controller@22.0.2 | ||
@@ -667,0 +694,0 @@ [22.0.1]: https://github.com/MetaMask/core/compare/@metamask/network-controller@22.0.0...@metamask/network-controller@22.0.1 |
{ | ||
"name": "@metamask/network-controller", | ||
"version": "22.0.2", | ||
"version": "22.1.0", | ||
"description": "Provides an interface to the currently selected network via a MetaMask-compatible provider object", | ||
@@ -51,3 +51,3 @@ "keywords": [ | ||
"@metamask/base-controller": "^7.0.2", | ||
"@metamask/controller-utils": "^11.4.3", | ||
"@metamask/controller-utils": "^11.4.4", | ||
"@metamask/eth-block-tracker": "^11.0.2", | ||
@@ -63,2 +63,3 @@ "@metamask/eth-json-rpc-infura": "^10.0.0", | ||
"async-mutex": "^0.5.0", | ||
"fast-deep-equal": "^3.1.3", | ||
"immer": "^9.0.6", | ||
@@ -65,0 +66,0 @@ "loglevel": "^1.8.1", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
654860
3448
18
+ Addedfast-deep-equal@^3.1.3