mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge pull request #12569 from MetaMask/Version-v10.4.1
Version v10.4.1 RC
This commit is contained in:
commit
bd83f43ae1
@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [10.4.1]
|
||||||
|
### Changed
|
||||||
|
- [#12515](https://github.com/MetaMask/metamask-extension/pull/12515): Updating 'Learn more' link location in dapp connection flow
|
||||||
|
|
||||||
## [10.4.0]
|
## [10.4.0]
|
||||||
### Added
|
### Added
|
||||||
- [#12400](https://github.com/MetaMask/metamask-extension/pull/12400): Add text to Restore Account screen noting current wallet replacement
|
- [#12400](https://github.com/MetaMask/metamask-extension/pull/12400): Add text to Restore Account screen noting current wallet replacement
|
||||||
@ -2534,7 +2538,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.4.0...HEAD
|
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v10.4.1...HEAD
|
||||||
|
[10.4.1]: https://github.com/MetaMask/metamask-extension/compare/v10.4.0...v10.4.1
|
||||||
[10.4.0]: https://github.com/MetaMask/metamask-extension/compare/v10.3.0...v10.4.0
|
[10.4.0]: https://github.com/MetaMask/metamask-extension/compare/v10.3.0...v10.4.0
|
||||||
[10.3.0]: https://github.com/MetaMask/metamask-extension/compare/v10.2.2...v10.3.0
|
[10.3.0]: https://github.com/MetaMask/metamask-extension/compare/v10.2.2...v10.3.0
|
||||||
[10.2.2]: https://github.com/MetaMask/metamask-extension/compare/v10.2.1...v10.2.2
|
[10.2.2]: https://github.com/MetaMask/metamask-extension/compare/v10.2.1...v10.2.2
|
||||||
|
@ -83,7 +83,7 @@ try {
|
|||||||
})();
|
})();
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Protecting intrinsics failed:', error);
|
console.error('Protecting intrinsics failed:', error);
|
||||||
if (globalThis?.sentry.captureException) {
|
if (globalThis.sentry && globalThis.sentry.captureException) {
|
||||||
globalThis.sentry.captureException(
|
globalThis.sentry.captureException(
|
||||||
new Error(`Protecting intrinsics failed: ${error.message}`),
|
new Error(`Protecting intrinsics failed: ${error.message}`),
|
||||||
);
|
);
|
||||||
|
@ -48,10 +48,10 @@ Options:
|
|||||||
Defaults to `false` if the entry task is `dev` or
|
Defaults to `false` if the entry task is `dev` or
|
||||||
`testDev`, and `true` otherwise.
|
`testDev`, and `true` otherwise.
|
||||||
[boolean] [default: <varies>]
|
[boolean] [default: <varies>]
|
||||||
--omit-lockdown Whether to omit SES lockdown files from the extension
|
--lockdown Whether to include SES lockdown files in the extension
|
||||||
bundle. Useful when linking dependencies that are
|
bundle. Setting this to `false` is useful e.g. when
|
||||||
incompatible with lockdown.
|
linking dependencies that are incompatible with lockdown.
|
||||||
[boolean] [default: false]
|
[boolean] [default: true]
|
||||||
--skip-stats Whether to refrain from logging build progress. Mostly
|
--skip-stats Whether to refrain from logging build progress. Mostly
|
||||||
used internally.
|
used internally.
|
||||||
[boolean] [default: false]
|
[boolean] [default: false]
|
||||||
|
@ -137,21 +137,21 @@ function parseArgv() {
|
|||||||
const NamedArgs = {
|
const NamedArgs = {
|
||||||
BuildType: 'build-type',
|
BuildType: 'build-type',
|
||||||
LintFenceFiles: 'lint-fence-files',
|
LintFenceFiles: 'lint-fence-files',
|
||||||
OmitLockdown: 'omit-lockdown',
|
Lockdown: 'lockdown',
|
||||||
SkipStats: 'skip-stats',
|
SkipStats: 'skip-stats',
|
||||||
};
|
};
|
||||||
|
|
||||||
const argv = minimist(process.argv.slice(2), {
|
const argv = minimist(process.argv.slice(2), {
|
||||||
boolean: [
|
boolean: [
|
||||||
NamedArgs.LintFenceFiles,
|
NamedArgs.LintFenceFiles,
|
||||||
NamedArgs.OmitLockdown,
|
NamedArgs.Lockdown,
|
||||||
NamedArgs.SkipStats,
|
NamedArgs.SkipStats,
|
||||||
],
|
],
|
||||||
string: [NamedArgs.BuildType],
|
string: [NamedArgs.BuildType],
|
||||||
default: {
|
default: {
|
||||||
[NamedArgs.BuildType]: BuildType.main,
|
[NamedArgs.BuildType]: BuildType.main,
|
||||||
[NamedArgs.LintFenceFiles]: true,
|
[NamedArgs.LintFenceFiles]: true,
|
||||||
[NamedArgs.OmitLockdown]: false,
|
[NamedArgs.Lockdown]: true,
|
||||||
[NamedArgs.SkipStats]: false,
|
[NamedArgs.SkipStats]: false,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
@ -183,7 +183,7 @@ function parseArgv() {
|
|||||||
buildType,
|
buildType,
|
||||||
entryTask,
|
entryTask,
|
||||||
isLavaMoat: process.argv[0].includes('lavamoat'),
|
isLavaMoat: process.argv[0].includes('lavamoat'),
|
||||||
shouldIncludeLockdown: argv[NamedArgs.OmitLockdown],
|
shouldIncludeLockdown: argv[NamedArgs.Lockdown],
|
||||||
shouldLintFenceFiles,
|
shouldLintFenceFiles,
|
||||||
skipStats: argv[NamedArgs.SkipStats],
|
skipStats: argv[NamedArgs.SkipStats],
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "metamask-crx",
|
"name": "metamask-crx",
|
||||||
"version": "10.4.0",
|
"version": "10.4.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
4871
patches/@reduxjs+toolkit+1.6.2.patch
Normal file
4871
patches/@reduxjs+toolkit+1.6.2.patch
Normal file
File diff suppressed because one or more lines are too long
@ -17,7 +17,7 @@ export default class PermissionsConnectFooter extends Component {
|
|||||||
onClick={() => {
|
onClick={() => {
|
||||||
global.platform.openTab({
|
global.platform.openTab({
|
||||||
url:
|
url:
|
||||||
'https://medium.com/metamask/privacy-mode-is-now-enabled-by-default-1c1c957f4d57',
|
'https://metamask.zendesk.com/hc/en-us/articles/4405506066331-User-guide-Dapps',
|
||||||
});
|
});
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user