Merge pull request #16395 from MetaMask/Version-v10.21.2

Version v10.21.2
feature/default_network_editable
Dan J Miller 2 years ago committed by GitHub
commit b8d71d6d1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      CHANGELOG.md
  2. 2
      app/scripts/controllers/transactions/index.js
  3. 2
      package.json

@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [10.21.2]
### Fixed
- Fix undefined txParams when calling approveTransaction, by adding the id on the txMeta argument ([#16382](https://github.com/MetaMask/metamask-extension/pull/16382))
## [10.21.1] ## [10.21.1]
### Changed ### Changed
- Improve rate limiting for metric events ([#16308](https://github.com/MetaMask/metamask-extension/pull/16308)) - Improve rate limiting for metric events ([#16308](https://github.com/MetaMask/metamask-extension/pull/16308))
@ -3253,7 +3257,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Uncategorized ### Uncategorized
- Added the ability to restore accounts from seed words. - Added the ability to restore accounts from seed words.
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v10.21.1...HEAD [Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v10.21.2...HEAD
[10.21.2]: https://github.com/MetaMask/metamask-extension/compare/v10.21.1...v10.21.2
[10.21.1]: https://github.com/MetaMask/metamask-extension/compare/v10.21.0...v10.21.1 [10.21.1]: https://github.com/MetaMask/metamask-extension/compare/v10.21.0...v10.21.1
[10.21.0]: https://github.com/MetaMask/metamask-extension/compare/v10.20.0...v10.21.0 [10.21.0]: https://github.com/MetaMask/metamask-extension/compare/v10.20.0...v10.21.0
[10.20.0]: https://github.com/MetaMask/metamask-extension/compare/v10.19.0...v10.20.0 [10.20.0]: https://github.com/MetaMask/metamask-extension/compare/v10.19.0...v10.20.0

@ -1844,7 +1844,7 @@ export default class TransactionController extends EventEmitter {
.forEach((txMeta) => { .forEach((txMeta) => {
// Line below will try to publish transaction which is in // Line below will try to publish transaction which is in
// APPROVED state at the time of controller bootup // APPROVED state at the time of controller bootup
this.approveTransaction(txMeta); this.approveTransaction(txMeta.id);
}); });
} }

@ -1,6 +1,6 @@
{ {
"name": "metamask-crx", "name": "metamask-crx",
"version": "10.21.1", "version": "10.21.2",
"private": true, "private": true,
"repository": { "repository": {
"type": "git", "type": "git",

Loading…
Cancel
Save