Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 300
Release 81.0.0#1747
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Release 81.0.0 #1747
Changes from all commits
b8d81122e0470f3594805e7c86b7ef40e4dad8e6eda2f65eb8cd8a05cb1df2eecc2b13e40401e08b61e96786a31a266b68bd6bf5a0881dc56042bb44f91e5c6d599aab0eabeb639d11ab80c39dcc66e236d1ac398a9e14cc4b9e628b9edeae8c6fda48755fbb08a2e26bef11d1145b4ccaa7688d312229637693b7b6fb5efad7d43895f05e57023ce6d4be09240f550f5a6dc5173f59de6406f4d1efeb9ba62d5663964fab3bd529File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | ||
| ## [Unreleased] | ||
| ## [3.1.4] | ||
| ### Changed | ||
| - Bump dependency on `@metamask/utils` to ^8.1.0 ([#1639](https://github.com/MetaMask/core/pull/1639)) | ||
mcmire marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| - Bump dependency on `@metamask/base-controller` to ^3.2.3 | ||
| - Bump dependency on `@metamask/controller-utils` to ^5.0.2 | ||
| ## [3.1.3] | ||
| ### Changed | ||
| - Update TypeScript to v4.8.x ([#1718](https://github.com/MetaMask/core/pull/1718)) | ||
| @@ -55,7 +61,8 @@ 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/core/compare/@metamask/address-book-controller@3.1.3...HEAD | ||
| [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/address-book-controller@3.1.4...HEAD | ||
| [3.1.4]: https://github.com/MetaMask/core/compare/@metamask/address-book-controller@3.1.3...@metamask/address-book-controller@3.1.4 | ||
| [3.1.3]: https://github.com/MetaMask/core/compare/@metamask/address-book-controller@3.1.2...@metamask/address-book-controller@3.1.3 | ||
| [3.1.2]: https://github.com/MetaMask/core/compare/@metamask/address-book-controller@3.1.1...@metamask/address-book-controller@3.1.2 | ||
| [3.1.1]: https://github.com/MetaMask/core/compare/@metamask/address-book-controller@3.1.0...@metamask/address-book-controller@3.1.1 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -6,6 +6,46 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | ||
| ## [Unreleased] | ||
| ## [15.0.0] | ||
| ### Changed | ||
| - **BREAKING**: `NftController` now expects `getNetworkClientById` in constructor options ([#1698](https://github.com/MetaMask/core/pull/1698)) | ||
| - **BREAKING**: `NftController.addNft` function signature has changed ([#1698](https://github.com/MetaMask/core/pull/1698)) | ||
| - Previously | ||
| ``` | ||
| address: string, | ||
| tokenId: string, | ||
| nftMetadata?: NftMetadata, | ||
| accountParams?: { | ||
| userAddress: string; | ||
| chainId: Hex; | ||
| }, | ||
| source = Source.Custom, | ||
| ``` | ||
| now: | ||
| ``` | ||
| tokenAddress: string, | ||
| tokenId: string, | ||
| { | ||
| nftMetadata?: NftMetadata; | ||
| chainId?: Hex; // extracts from AccountParams | ||
| userAddress?: string // extracted from AccountParams | ||
| source?: Source; | ||
| networkClientId?: NetworkClientId; // new | ||
| }, | ||
| ``` | ||
| - `NftController.addNftVerifyOwnership`: Now accepts optional 3rd argument `networkClientId` which is used to fetch NFT metadata and determine by which chainId the added NFT should be stored in state. Also accepts optional 4th argument `source` used for metrics to identify the flow in which the NFT was added to the wallet. ([#1698](https://github.com/MetaMask/core/pull/1698)) | ||
| - `NftController.isNftOwner`: Now accepts optional `networkClientId` which is used to instantiate the provider for the correct chain and call the NFT contract to verify ownership ([#1698](https://github.com/MetaMask/core/pull/1698)) | ||
| - `NftController.addNft` will use the chainId value derived from `networkClientId` if provided ([#1698](https://github.com/MetaMask/core/pull/1698)) | ||
| - `NftController.watchNft` options now accepts optional `networkClientId` which is used to fetch NFT metadata and determine by which chainId the added NFT should be stored in state ([#1698](https://github.com/MetaMask/core/pull/1698)) | ||
| - Bump dependency on `@metamask/utils` to ^8.1.0 ([#1639](https://github.com/MetaMask/core/pull/1639)) | ||
mcmire marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| - Bump dependency and peer dependency on `@metamask/approval-controller` to ^4.0.0 | ||
| - Bump dependency on `@metamask/base-controller` to ^3.2.3 | ||
| - Bump dependency on `@metamask/controller-utils` to ^5.0.2 | ||
| - Bump dependency and peer dependency on `@metamask/network-controller` to ^14.0.0 | ||
| ### Fixed | ||
| - Fix bug in TokensController where batched `addToken` overwrote each other because mutex was acquired after reading state ([#1768](https://github.com/MetaMask/core/pull/1768)) | ||
| ## [14.0.0] | ||
| ### Changed | ||
| - Update TypeScript to v4.8.x ([#1718](https://github.com/MetaMask/core/pull/1718)) | ||
| @@ -280,7 +320,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | ||
| ### Changed | ||
| - Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845)) | ||
| [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@14.0.0...HEAD | ||
| [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@15.0.0...HEAD | ||
| [15.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@14.0.0...@metamask/assets-controllers@15.0.0 | ||
| [14.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@13.0.0...@metamask/assets-controllers@14.0.0 | ||
| [13.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@12.0.0...@metamask/assets-controllers@13.0.0 | ||
| [12.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@11.1.0...@metamask/assets-controllers@12.0.0 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | ||
| ## [Unreleased] | ||
| ## [5.0.2] | ||
| ### Changed | ||
| - Bump dependency on `@metamask/utils` to ^8.1.0 ([#1639](https://github.com/MetaMask/core/pull/1639)) | ||
mcmire marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| - Bump dependency on `@metamask/base-controller` to ^3.2.3 | ||
| - Bump dependency on `@metamask/controller-utils` to ^5.0.2 | ||
| - Bump dependency and peer dependency on `@metamask/network-controller` to ^14.0.0 | ||
| ## [5.0.1] | ||
| ### Changed | ||
| - Update TypeScript to v4.8.x ([#1718](https://github.com/MetaMask/core/pull/1718)) | ||
| @@ -70,7 +78,8 @@ 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/core/compare/@metamask/ens-controller@5.0.1...HEAD | ||
| [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@5.0.2...HEAD | ||
| [5.0.2]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@5.0.1...@metamask/ens-controller@5.0.2 | ||
| [5.0.1]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@5.0.0...@metamask/ens-controller@5.0.1 | ||
| [5.0.0]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@4.1.1...@metamask/ens-controller@5.0.0 | ||
| [4.1.1]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@4.1.0...@metamask/ens-controller@4.1.1 | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.