diff --git a/package.json b/package.json index 199d229477..f239a3c76b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/controllers-monorepo", - "version": "34.0.0", + "version": "35.0.0", "private": true, "description": "Collection of platform-agnostic modules for creating secure data models for cryptocurrency wallets", "repository": { diff --git a/packages/assets-controllers/CHANGELOG.md b/packages/assets-controllers/CHANGELOG.md index e84ef308b1..9a57e884f5 100644 --- a/packages/assets-controllers/CHANGELOG.md +++ b/packages/assets-controllers/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.1] +### Fixed +- Fix race condition where some token detections can get mistakenly added to the wrong account ([#956](https://github.com/MetaMask/controllers/pull/956)) + ## [1.0.0] ### Added - Initial release @@ -18,5 +22,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/controllers/pull/845)) -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/assets-controllers@1.0.0...HEAD +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/assets-controllers@1.0.1...HEAD +[1.0.1]: https://github.com/MetaMask/controllers/compare/@metamask/assets-controllers@1.0.0...@metamask/assets-controllers@1.0.1 [1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/assets-controllers@1.0.0 diff --git a/packages/assets-controllers/package.json b/packages/assets-controllers/package.json index 22702fb95d..52a8b35323 100644 --- a/packages/assets-controllers/package.json +++ b/packages/assets-controllers/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/assets-controllers", - "version": "1.0.0", + "version": "1.0.1", "description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)", "keywords": [ "MetaMask", diff --git a/packages/base-controller/CHANGELOG.md b/packages/base-controller/CHANGELOG.md index 26bf7119d4..9f111d4880 100644 --- a/packages/base-controller/CHANGELOG.md +++ b/packages/base-controller/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.0] +### Added +- Add `applyPatches` function to BaseControllerV2 ([#980](https://github.com/MetaMask/controllers/pull/980)) + +### Changed +- Action and event handler types are now exported ([#987](https://github.com/MetaMask/controllers/pull/987)) +- Update `update` function to expose patches ([#980](https://github.com/MetaMask/controllers/pull/980)) + ## [1.0.0] ### Added - Initial release @@ -21,5 +29,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/base-controller@1.0.0...HEAD +[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/base-controller@1.1.0...HEAD +[1.1.0]: https://github.com/MetaMask/controllers/compare/@metamask/base-controller@1.0.0...@metamask/base-controller@1.1.0 [1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/base-controller@1.0.0 diff --git a/packages/base-controller/package.json b/packages/base-controller/package.json index 609c6e8006..e0fa8b2ada 100644 --- a/packages/base-controller/package.json +++ b/packages/base-controller/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/base-controller", - "version": "1.0.0", + "version": "1.1.0", "description": "Provides scaffolding for controllers as well a communication system for all controllers", "keywords": [ "MetaMask",