1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 09:57:02 +01:00

Merge pull request #16328 from MetaMask/Version-v10.21.1

Version v10.21.1 RC
This commit is contained in:
Mark Stacey 2022-10-31 17:14:10 -02:30 committed by GitHub
commit ae197d02b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 3 deletions

View File

@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [10.21.1]
### Changed
- Improve rate limiting for metric events ([#16308](https://github.com/MetaMask/metamask-extension/pull/16308))
## [10.21.0]
### Added
- Add functionality for buying native currency and tokens on Optimism and Arbitrum, using Transak ([#16031](https://github.com/MetaMask/metamask-extension/pull/16031))
@ -3249,7 +3253,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/v10.21.0...HEAD
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v10.21.1...HEAD
[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.20.0]: https://github.com/MetaMask/metamask-extension/compare/v10.19.0...v10.20.0
[10.19.0]: https://github.com/MetaMask/metamask-extension/compare/v10.18.4...v10.19.0

View File

@ -104,7 +104,7 @@ const rateLimitTimeouts = {};
export default function createRPCMethodTrackingMiddleware({
trackEvent,
getMetricsState,
rateLimitSeconds = 60,
rateLimitSeconds = 60 * 5,
}) {
return function rpcMethodTrackingMiddleware(
/** @type {any} */ req,

View File

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