mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
Merge pull request #13111 from MetaMask/Version-v10.8.1
Version v10.8.1 RC
This commit is contained in:
commit
6f9927e15e
@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [10.8.1]
|
||||||
|
### Fixed
|
||||||
|
- [#13107](https://github.com/MetaMask/metamask-extension/pull/13107): Fix the Use Custom Nonce toggle
|
||||||
|
|
||||||
## [10.8.0]
|
## [10.8.0]
|
||||||
### Added
|
### Added
|
||||||
- [#12881](https://github.com/MetaMask/metamask-extension/pull/12881): Feature: Transaction Insights
|
- [#12881](https://github.com/MetaMask/metamask-extension/pull/12881): Feature: Transaction Insights
|
||||||
@ -2652,7 +2656,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.8.0...HEAD
|
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v10.8.1...HEAD
|
||||||
|
[10.8.1]: https://github.com/MetaMask/metamask-extension/compare/v10.8.0...v10.8.1
|
||||||
[10.8.0]: https://github.com/MetaMask/metamask-extension/compare/v10.7.1...v10.8.0
|
[10.8.0]: https://github.com/MetaMask/metamask-extension/compare/v10.7.1...v10.8.0
|
||||||
[10.7.1]: https://github.com/MetaMask/metamask-extension/compare/v10.7.0...v10.7.1
|
[10.7.1]: https://github.com/MetaMask/metamask-extension/compare/v10.7.0...v10.7.1
|
||||||
[10.7.0]: https://github.com/MetaMask/metamask-extension/compare/v10.6.4...v10.7.0
|
[10.7.0]: https://github.com/MetaMask/metamask-extension/compare/v10.6.4...v10.7.0
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "metamask-crx",
|
"name": "metamask-crx",
|
||||||
"version": "10.8.0",
|
"version": "10.8.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,3 +1,53 @@
|
|||||||
|
diff --git a/node_modules/@babel/runtime/helpers/construct.js b/node_modules/@babel/runtime/helpers/construct.js
|
||||||
|
index 108b39a..e3c769b 100644
|
||||||
|
--- a/node_modules/@babel/runtime/helpers/construct.js
|
||||||
|
+++ b/node_modules/@babel/runtime/helpers/construct.js
|
||||||
|
@@ -1,26 +1,21 @@
|
||||||
|
-var setPrototypeOf = require("./setPrototypeOf.js");
|
||||||
|
+// All of MetaMask's supported browsers include `Reflect.construct` support, so
|
||||||
|
+// we don't need this polyfill.
|
||||||
|
|
||||||
|
-var isNativeReflectConstruct = require("./isNativeReflectConstruct.js");
|
||||||
|
-
|
||||||
|
-function _construct(Parent, args, Class) {
|
||||||
|
- if (isNativeReflectConstruct()) {
|
||||||
|
- module.exports = _construct = Reflect.construct;
|
||||||
|
- module.exports["default"] = module.exports, module.exports.__esModule = true;
|
||||||
|
- } else {
|
||||||
|
- module.exports = _construct = function _construct(Parent, args, Class) {
|
||||||
|
- var a = [null];
|
||||||
|
- a.push.apply(a, args);
|
||||||
|
- var Constructor = Function.bind.apply(Parent, a);
|
||||||
|
- var instance = new Constructor();
|
||||||
|
- if (Class) setPrototypeOf(instance, Class.prototype);
|
||||||
|
- return instance;
|
||||||
|
- };
|
||||||
|
-
|
||||||
|
- module.exports["default"] = module.exports, module.exports.__esModule = true;
|
||||||
|
+// This Proxy preseves the two properties that were added by `@babel/runtime`.
|
||||||
|
+// I am not entire sure what these properties are for (maybe ES5/ES6
|
||||||
|
+// interoperability?) but they have been preserved just in case.
|
||||||
|
+const reflectProxy = new Proxy(
|
||||||
|
+ Reflect.construct,
|
||||||
|
+ {
|
||||||
|
+ get: function (target, property) {
|
||||||
|
+ if (property === 'default') {
|
||||||
|
+ return target;
|
||||||
|
+ } else if (property === '__esModule') {
|
||||||
|
+ return true;
|
||||||
|
+ }
|
||||||
|
+ return Reflect.get(...arguments);
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
+);
|
||||||
|
|
||||||
|
- return _construct.apply(null, arguments);
|
||||||
|
-}
|
||||||
|
-
|
||||||
|
-module.exports = _construct;
|
||||||
|
-module.exports["default"] = module.exports, module.exports.__esModule = true;
|
||||||
|
\ No newline at end of file
|
||||||
|
+module.exports = reflectProxy;
|
||||||
diff --git a/node_modules/@babel/runtime/helpers/extends.js b/node_modules/@babel/runtime/helpers/extends.js
|
diff --git a/node_modules/@babel/runtime/helpers/extends.js b/node_modules/@babel/runtime/helpers/extends.js
|
||||||
index eaf9547..d0474f5 100644
|
index eaf9547..d0474f5 100644
|
||||||
--- a/node_modules/@babel/runtime/helpers/extends.js
|
--- a/node_modules/@babel/runtime/helpers/extends.js
|
||||||
|
@ -2139,7 +2139,7 @@ export function setUseNonceField(val) {
|
|||||||
dispatch(showLoadingIndication());
|
dispatch(showLoadingIndication());
|
||||||
log.debug(`background.setUseNonceField`);
|
log.debug(`background.setUseNonceField`);
|
||||||
try {
|
try {
|
||||||
await background.setUseNonceField(val);
|
await promisifiedBackground.setUseNonceField(val);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
dispatch(displayWarning(error.message));
|
dispatch(displayWarning(error.message));
|
||||||
}
|
}
|
||||||
|
@ -17277,9 +17277,9 @@ just-map-keys@^1.1.0:
|
|||||||
integrity sha512-oNKi+4y7fr8lXnhKYpBbCkiwHRVkAnx0VDkCeTDtKKMzGr1Lz1Yym+RSieKUTKim68emC5Yxrb4YmiF9STDO+g==
|
integrity sha512-oNKi+4y7fr8lXnhKYpBbCkiwHRVkAnx0VDkCeTDtKKMzGr1Lz1Yym+RSieKUTKim68emC5Yxrb4YmiF9STDO+g==
|
||||||
|
|
||||||
just-safe-set@^2.1.0:
|
just-safe-set@^2.1.0:
|
||||||
version "2.1.0"
|
version "2.2.3"
|
||||||
resolved "https://registry.yarnpkg.com/just-safe-set/-/just-safe-set-2.1.0.tgz#237234e681a4f330b5dfa71a5251f34962813ef9"
|
resolved "https://registry.yarnpkg.com/just-safe-set/-/just-safe-set-2.2.3.tgz#b717b71a7237ff9f4b9d1220128a576001a11535"
|
||||||
integrity sha512-wSTg/2bQpzyivBYbWPqQgafdfxW0tr3hX9qYGDRS2ws+AXwc7tvn8ABqkp8iPQHChjj4F5JvL3t0FQLbcNuKig==
|
integrity sha512-6zAkfGKRjB766zXv/UVSGOFKSAqakhwLQDyIR9bmIhJ/e6jS3Ci1VxYTqaiooYZZUw3VLg0sZva8PE6JX/iu2w==
|
||||||
|
|
||||||
k-bucket@^5.0.0:
|
k-bucket@^5.0.0:
|
||||||
version "5.0.0"
|
version "5.0.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user