Skip to content

Commit

Permalink
Merge pull request #28771 from MetaMask/merge-master-12.7.2-12.8.0
Browse files Browse the repository at this point in the history
Merge master at v12.7.2 into 12.8.0
  • Loading branch information
danjm authored Nov 28, 2024
2 parents 2d84732 + 5453b96 commit 0ad9990
Show file tree
Hide file tree
Showing 11 changed files with 873 additions and 525 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -964,7 +964,7 @@ jobs:
at: .
- run:
name: Install Playwright browsers
command: yarn exec playwright install
command: yarn exec playwright install chromium
- run:
name: Test Storybook
command: yarn test-storybook:ci
Expand Down
21 changes: 19 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- fix: updated event name for site cell component ([#27981](https://github.com/MetaMask/metamask-extension/pull/27981))
- fix(deps): [email protected]>~2.6.0 ([#27973](https://github.com/MetaMask/metamask-extension/pull/27973))


## [12.7.2]
### Fixed
- Fix message signatures for Gridplus lattice hardware wallets ([#28694](https://github.com/MetaMask/metamask-extension/pull/28694))

## [12.7.1]
### Fixed
- Fix bug that could prevent security warnings from being shown on token transfer confirmations in some cases ([#28487](https://github.com/MetaMask/metamask-extension/pull/28487))
- Fix balance display, so that it correctly shows ETH and fiat values, when the "Show balane and token price checker" toggle is off ([#28569](https://github.com/MetaMask/metamask-extension/pull/28569))

## [12.7.0]
### Added
- Added Token Network Filter UI, allowing users to filter tokens by network (behind a feature flag) ([#27884](https://github.com/MetaMask/metamask-extension/pull/27884))
Expand Down Expand Up @@ -240,6 +250,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved handling of network switching and adding networks to prevent issues with queued transactions ([#28090](https://github.com/MetaMask/metamask-extension/pull/28090))
- Prevented redirect after adding a network in Onboarding Settings ([#28165](https://github.com/MetaMask/metamask-extension/pull/28165))

## [12.6.2]
### Fixed
- Prevent QR code scanning from setting incorrect recipient addresses during the send flow by restricting the QR scanner feature to only handle simple sends, and fail on QR codes that encode more complex transaction types ([#28521](https://github.com/MetaMask/metamask-extension/pull/28521))

## [12.6.1]
### Fixed
- Fixed gas limit estimation on Base and BNB chains ([#28327](https://github.com/MetaMask/metamask-extension/pull/28327))
Expand Down Expand Up @@ -5542,8 +5556,11 @@ Update styles and spacing on the critical error page ([#20350](https://github.c


[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v12.8.0...HEAD
[12.8.0]: https://github.com/MetaMask/metamask-extension/compare/v12.7.0...v12.8.0
[12.7.0]: https://github.com/MetaMask/metamask-extension/compare/v12.6.1...v12.7.0
[12.8.0]: https://github.com/MetaMask/metamask-extension/compare/v12.7.2...v12.8.0
[12.7.2]: https://github.com/MetaMask/metamask-extension/compare/v12.7.1...v12.7.2
[12.7.1]: https://github.com/MetaMask/metamask-extension/compare/v12.7.0...v12.7.1
[12.7.0]: https://github.com/MetaMask/metamask-extension/compare/v12.6.2...v12.7.0
[12.6.2]: https://github.com/MetaMask/metamask-extension/compare/v12.6.1...v12.6.2
[12.6.1]: https://github.com/MetaMask/metamask-extension/compare/v12.6.0...v12.6.1
[12.6.0]: https://github.com/MetaMask/metamask-extension/compare/v12.5.1...v12.6.0
[12.5.1]: https://github.com/MetaMask/metamask-extension/compare/v12.5.0...v12.5.1
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/lib/setupSentry.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ function getTracesSampleRate(sentryTarget) {
return 1.0;
}

return 0.02;
return 0.01;
}

/**
Expand Down
Loading

0 comments on commit 0ad9990

Please sign in to comment.