mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
Merge pull request #16328 from MetaMask/Version-v10.21.1
Version v10.21.1 RC
This commit is contained in:
commit
ae197d02b6
@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [10.21.1]
|
||||||
|
### Changed
|
||||||
|
- Improve rate limiting for metric events ([#16308](https://github.com/MetaMask/metamask-extension/pull/16308))
|
||||||
|
|
||||||
## [10.21.0]
|
## [10.21.0]
|
||||||
### Added
|
### Added
|
||||||
- Add functionality for buying native currency and tokens on Optimism and Arbitrum, using Transak ([#16031](https://github.com/MetaMask/metamask-extension/pull/16031))
|
- 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
|
### 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.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.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
|
||||||
[10.19.0]: https://github.com/MetaMask/metamask-extension/compare/v10.18.4...v10.19.0
|
[10.19.0]: https://github.com/MetaMask/metamask-extension/compare/v10.18.4...v10.19.0
|
||||||
|
@ -104,7 +104,7 @@ const rateLimitTimeouts = {};
|
|||||||
export default function createRPCMethodTrackingMiddleware({
|
export default function createRPCMethodTrackingMiddleware({
|
||||||
trackEvent,
|
trackEvent,
|
||||||
getMetricsState,
|
getMetricsState,
|
||||||
rateLimitSeconds = 60,
|
rateLimitSeconds = 60 * 5,
|
||||||
}) {
|
}) {
|
||||||
return function rpcMethodTrackingMiddleware(
|
return function rpcMethodTrackingMiddleware(
|
||||||
/** @type {any} */ req,
|
/** @type {any} */ req,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "metamask-crx",
|
"name": "metamask-crx",
|
||||||
"version": "10.21.0",
|
"version": "10.21.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
Loading…
Reference in New Issue
Block a user