mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-12 04:37:13 +01:00
904dad256f
* Connect ledger via webhid if that option is available * Explicitly setting preference for webhid * Use ledgerTransportType enum instead of booleans for ledger live and webhid preferences * Use single setLEdgerTransport preference methods and property * Temp * Lint fix * Unit test fix * Remove async keyword from setLedgerTransportPreference function definition in preferences controller * Fix ledgelive setting toggle logic * Migrate useLedgerLive preference property to ledgerTransportType * Use shared constants for ledger transport type enums * Use constant for ledger usb vendor id * Use correct property to check if ledgerLive preference is set when deciding whether to ask for webhid connection * Update eth-ledger-bridge-keyring to v0.9.0 * Only show ledger live transaction helper messages if using ledger live * Only show ledger live part of tutorial if ledger live setting is on * Fix ledger related prop type errors * Explicitly use u2f enum instead of empty string as a transport type; default transport type to webhid if available; use constants for u2f and webhid * Cleanup * Wrap ledger webhid device request in try/catch * Clean up * Lint fix * Ensure user can easily connect their ledger wallet when they need to. * Fix locales * Fix/improve locales changes * Remove unused isFirefox property from confirm-transaction-base.container.js * Disable transaction and message signing confirmation if ledger webhid requires connection * Ensure translation keys for ledger connection options in settings dropdown can be properly detected by verify-locales * Drop .component from ledger-instruction-field file name * Move renderLedgerLiveStep to module scope * Remove ledgerLive from function and message names in ledger-instruction-field * Wrap ledger connection logic in ledger-instruction-field in try catch * Clean up signature-request.component.js * Check whether the signing address, and not the selected address, is a ledger account in singature-request.container * Ensure ledger instructions and webhid connection button are shown on signature-request-original signatures * Improve webhid selection handling in select-ledger-transport-type onChange handler * Move metamask redux focused ledger selectors to metamask duck * Lint fix * Use async await in checkWebHidStatusRef.current * Remove unnecessary use of ref in ledger-instruction-field.js * Lint fix * Remove unnecessary try/catch in ledger-instruction-field.js * Check if from address, not selected address, is from a ledger account in confirm-approve * Move findKeyringForAddress to metamask duck * Fix typo in function name * Ensure isEqualCaseInsensitive handles possible differences in address casing * Fix Learn More link size in advanced settings tab * Update app/scripts/migrations/066.js Co-authored-by: Mark Stacey <markjstacey@gmail.com> * Update ui/pages/settings/advanced-tab/advanced-tab.component.test.js Co-authored-by: Mark Stacey <markjstacey@gmail.com> * Add jsdoc comments for new selectors * Use jest.spyOn for mocking navigator in ledger webhid migration tests * Use LEDGER_TRANSPORT_TYPES values to set proptype of ledgerTransportType * Use LEDGER_TRANSPORT_TYPES values to set proptype of ledgerTransportType * Fix font size of link in ledger connection description in advanced settings * Fix return type in setLedgerTransportPreference comment * Clean up connectHardware code for webhid connection in actions.js * Update app/scripts/migrations/066.test.js Co-authored-by: Mark Stacey <markjstacey@gmail.com> * Update ui/ducks/metamask/metamask.js Co-authored-by: Mark Stacey <markjstacey@gmail.com> * Add migration test for when useLedgerLive is true in a browser that supports webhid * Lint fix * Fix inline-link size Co-authored-by: Mark Stacey <markjstacey@gmail.com>
143 lines
2.4 KiB
JavaScript
143 lines
2.4 KiB
JavaScript
// Migrations must start at version 1 or later.
|
|
// They are objects with a `version` number
|
|
// and a `migrate` function.
|
|
//
|
|
// The `migrate` function receives the previous
|
|
// config data format, and returns the new one.
|
|
|
|
import m002 from './002';
|
|
import m003 from './003';
|
|
import m004 from './004';
|
|
import m005 from './005';
|
|
import m006 from './006';
|
|
import m007 from './007';
|
|
import m008 from './008';
|
|
import m009 from './009';
|
|
import m010 from './010';
|
|
import m011 from './011';
|
|
import m012 from './012';
|
|
import m013 from './013';
|
|
import m014 from './014';
|
|
import m015 from './015';
|
|
import m016 from './016';
|
|
import m017 from './017';
|
|
import m018 from './018';
|
|
import m019 from './019';
|
|
import m020 from './020';
|
|
import m021 from './021';
|
|
import m022 from './022';
|
|
import m023 from './023';
|
|
import m024 from './024';
|
|
import m025 from './025';
|
|
import m026 from './026';
|
|
import m027 from './027';
|
|
import m028 from './028';
|
|
import m029 from './029';
|
|
import m030 from './030';
|
|
import m031 from './031';
|
|
import m032 from './032';
|
|
import m033 from './033';
|
|
import m034 from './034';
|
|
import m035 from './035';
|
|
import m036 from './036';
|
|
import m037 from './037';
|
|
import m038 from './038';
|
|
import m039 from './039';
|
|
import m040 from './040';
|
|
import m041 from './041';
|
|
import m042 from './042';
|
|
import m043 from './043';
|
|
import m044 from './044';
|
|
import m045 from './045';
|
|
import m046 from './046';
|
|
import m047 from './047';
|
|
import m048 from './048';
|
|
import m049 from './049';
|
|
import m050 from './050';
|
|
import m051 from './051';
|
|
import m052 from './052';
|
|
import m053 from './053';
|
|
import m054 from './054';
|
|
import m055 from './055';
|
|
import m056 from './056';
|
|
import m057 from './057';
|
|
import m058 from './058';
|
|
import m059 from './059';
|
|
import m060 from './060';
|
|
import m061 from './061';
|
|
import m062 from './062';
|
|
import m063 from './063';
|
|
import m064 from './064';
|
|
import m065 from './065';
|
|
import m066 from './066';
|
|
|
|
const migrations = [
|
|
m002,
|
|
m003,
|
|
m004,
|
|
m005,
|
|
m006,
|
|
m007,
|
|
m008,
|
|
m009,
|
|
m010,
|
|
m011,
|
|
m012,
|
|
m013,
|
|
m014,
|
|
m015,
|
|
m016,
|
|
m017,
|
|
m018,
|
|
m019,
|
|
m020,
|
|
m021,
|
|
m022,
|
|
m023,
|
|
m024,
|
|
m025,
|
|
m026,
|
|
m027,
|
|
m028,
|
|
m029,
|
|
m030,
|
|
m031,
|
|
m032,
|
|
m033,
|
|
m034,
|
|
m035,
|
|
m036,
|
|
m037,
|
|
m038,
|
|
m039,
|
|
m040,
|
|
m041,
|
|
m042,
|
|
m043,
|
|
m044,
|
|
m045,
|
|
m046,
|
|
m047,
|
|
m048,
|
|
m049,
|
|
m050,
|
|
m051,
|
|
m052,
|
|
m053,
|
|
m054,
|
|
m055,
|
|
m056,
|
|
m057,
|
|
m058,
|
|
m059,
|
|
m060,
|
|
m061,
|
|
m062,
|
|
m063,
|
|
m064,
|
|
m065,
|
|
m066,
|
|
];
|
|
|
|
export default migrations;
|