Skip to content

Commit ef7fa43

Browse files
authored
Merge pull request #26468 from MetaMask/Version-v12.0.6
Version v12.0.6 RC
2 parents 7333f96 + b232059 commit ef7fa43

File tree

21 files changed

+522
-508
lines changed

21 files changed

+522
-508
lines changed

.circleci/config.yml

+6
Original file line numberDiff line numberDiff line change
@@ -1657,9 +1657,15 @@ jobs:
16571657
- run:
16581658
name: Publish main release to Sentry
16591659
command: yarn sentry:publish
1660+
- run:
1661+
name: Publish main MV2 release to Sentry
1662+
command: yarn sentry:publish --dist mv2
16601663
- run:
16611664
name: Publish Flask release to Sentry
16621665
command: yarn sentry:publish --build-type flask
1666+
- run:
1667+
name: Publish Flask MV2 release to Sentry
1668+
command: yarn sentry:publish --build-type flask --dist mv2
16631669
- run:
16641670
name: Publish MMI release to Sentry
16651671
command: yarn sentry:publish --build-type mmi

CHANGELOG.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [12.0.6]
10+
### Changed
11+
- Improve error diagnostics ([#26482](https://github.com/MetaMask/metamask-extension/pull/26482))
12+
13+
### Fixed
14+
- Fix errors in error diagnistics on Firefox ([#26467](https://github.com/MetaMask/metamask-extension/pull/26467))
15+
- Prevent pending transactions from causing excessive disk space usage ([#26485](https://github.com/MetaMask/metamask-extension/pull/26485))
16+
- This is a repeat of the fix included in v12.0.1; it wasn't working for all users, but it should now.
17+
- Prevent UI crash while signature confirmation is closing ([#26248](https://github.com/MetaMask/metamask-extension/pull/26248))
18+
919
## [12.0.5]
1020
### Fixed
1121
- Prevent network selection per dapp from breaking if the rpc url of the currently selected network is edited ([#26453](https://github.com/MetaMask/metamask-extension/pull/26453))
@@ -4918,7 +4928,8 @@ Update styles and spacing on the critical error page ([#20350](https://github.c
49184928
- Added the ability to restore accounts from seed words.
49194929

49204930

4921-
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v12.0.5...HEAD
4931+
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v12.0.6...HEAD
4932+
[12.0.6]: https://github.com/MetaMask/metamask-extension/compare/v12.0.5...v12.0.6
49224933
[12.0.5]: https://github.com/MetaMask/metamask-extension/compare/v12.0.4...v12.0.5
49234934
[12.0.4]: https://github.com/MetaMask/metamask-extension/compare/v12.0.3...v12.0.4
49244935
[12.0.3]: https://github.com/MetaMask/metamask-extension/compare/v12.0.2...v12.0.3

app/scripts/background.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import Migrator from './lib/migrator';
4848
import ExtensionPlatform from './platforms/extension';
4949
import LocalStore from './lib/local-store';
5050
import ReadOnlyNetworkStore from './lib/network-store';
51-
import { SENTRY_BACKGROUND_STATE } from './lib/setupSentry';
51+
import { SENTRY_BACKGROUND_STATE } from './constants/sentry-state';
5252

5353
import createStreamSink from './lib/createStreamSink';
5454
import NotificationManager, {

0 commit comments

Comments
 (0)