1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Merge pull request #11156 from MetaMask/Version-v9.5.4

Version v9.5.4 RC
This commit is contained in:
Mark Stacey 2021-05-21 14:58:00 -02:30 committed by GitHub
commit e7f8732c23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 4 deletions

View File

@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [9.5.4]
### Fixed
- [#11153](https://github.com/MetaMask/metamask-extension/pull/11153): Prevent UI crash when the transaction being retried or canceled is missing.
## [9.5.3]
### Fixed
- [#11103](https://github.com/MetaMask/metamask-extension/pull/11103): Fixes bug that made MetaMask unusable and displayed 'Minified React error #130' on certain networks and accounts
@ -2235,7 +2239,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Uncategorized
- Added the ability to restore accounts from seed words.
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v9.5.3...HEAD
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v9.5.4...HEAD
[9.5.4]: https://github.com/MetaMask/metamask-extension/compare/v9.5.3...v9.5.4
[9.5.3]: https://github.com/MetaMask/metamask-extension/compare/v9.5.2...v9.5.3
[9.5.2]: https://github.com/MetaMask/metamask-extension/compare/v9.5.1...v9.5.2
[9.5.1]: https://github.com/MetaMask/metamask-extension/compare/v9.5.0...v9.5.1

View File

@ -71,6 +71,6 @@
"notifications"
],
"short_name": "__MSG_appName__",
"version": "9.5.3",
"version": "9.5.4",
"web_accessible_resources": ["inpage.js", "phishing.html"]
}

View File

@ -1,4 +1,5 @@
import { useSelector } from 'react-redux';
import { captureException } from '@sentry/browser';
import { getKnownMethodData } from '../selectors/selectors';
import {
getStatusKey,
@ -221,8 +222,10 @@ export function useTransactionDisplayData(transactionGroup) {
title = t('send');
subtitle = t('toAddress', [shortenAddress(recipientAddress)]);
} else {
throw new Error(
`useTransactionDisplayData does not recognize transaction type. Type received is: ${type}`,
captureException(
Error(
`useTransactionDisplayData does not recognize transaction type. Type received is: ${type}`,
),
);
}