@metamask/transaction-controller 62.9.0 → 62.9.2

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.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [62.9.2]
11
+
12
+ ### Changed
13
+
14
+ - Bump `@metamask/accounts-controller` from `^35.0.1` to `^35.0.2` ([#7642](https://github.com/MetaMask/core/pull/7642))
15
+ - Bump `@metamask/gas-fee-controller` from `^26.0.1` to `^26.0.2` ([#7642](https://github.com/MetaMask/core/pull/7642))
16
+ - Bump `@metamask/network-controller` from `^28.0.0` to `^29.0.0` ([#7642](https://github.com/MetaMask/core/pull/7642))
17
+
18
+ ### Fixed
19
+
20
+ - Exclude transactions where `isTransfer` is defined when marking nonce duplicates as dropped ([#7637](https://github.com/MetaMask/core/pull/7637))
21
+
22
+ ## [62.9.1]
23
+
24
+ ### Changed
25
+
26
+ - Bump `@metamask/network-controller` from `^27.2.0` to `^28.0.0` ([#7604](https://github.com/MetaMask/core/pull/7604))
27
+ - Bump `@metamask/accounts-controller` from `^35.0.0` to `^35.0.1` ([#7604](https://github.com/MetaMask/core/pull/7604))
28
+ - Bump `@metamask/gas-fee-controller` from `^26.0.0` to `^26.0.1` ([#7604](https://github.com/MetaMask/core/pull/7604))
29
+
10
30
  ## [62.9.0]
11
31
 
12
32
  ### Added
@@ -2065,7 +2085,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2065
2085
 
2066
2086
  All changes listed after this point were applied to this package following the monorepo conversion.
2067
2087
 
2068
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.9.0...HEAD
2088
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.9.2...HEAD
2089
+ [62.9.2]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.9.1...@metamask/transaction-controller@62.9.2
2090
+ [62.9.1]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.9.0...@metamask/transaction-controller@62.9.1
2069
2091
  [62.9.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.8.0...@metamask/transaction-controller@62.9.0
2070
2092
  [62.8.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.7.0...@metamask/transaction-controller@62.8.0
2071
2093
  [62.7.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.6.0...@metamask/transaction-controller@62.7.0
@@ -1925,7 +1925,8 @@ async function _TransactionController_approveTransaction(transactionId, traceCon
1925
1925
  nonce &&
1926
1926
  transaction.txParams.nonce === nonce &&
1927
1927
  transaction.chainId === chainId &&
1928
- transaction.type !== types_1.TransactionType.incoming);
1928
+ transaction.type !== types_1.TransactionType.incoming &&
1929
+ transaction.isTransfer === undefined);
1929
1930
  const sameNonceTransactionIds = sameNonceTransactions.map((transaction) => transaction.id);
1930
1931
  if (sameNonceTransactions.length === 0) {
1931
1932
  return;