-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release: (251 commits) 🚀 prepare release [skip ci] Smartling on-demand translation delivery from release (#1722) chore: bump lld chore(fix): doc:ljs and pods update update release note 🚀 release prerelease [LLM(3.10.0-next.4)] add changeset 🚀 entering LLD hotfix mode Fix/LIVE-4302 - Fix update firmware notif breaking layout (#1624) 🚀 release prerelease [LLM(3.10.0-next.3)] Bugfix: LIVE-4305 new rendering in the case of a LatestFirmwareVersionRequired error (#1648) 🚀 release prerelease [LLM(3.10.0-next.2)] Fix: Live-4319 MyLedger tab logo dot condition (#1633) 🚀 release prerelease [LLM(3.10.0-next.1)] Bugfix/live 4308 "Language" row bad layout in My Ledger (#1623) 🚀 release prerelease [LLM(3.10.0-next.0)] 🚀 entering LLM prerelease mode [LIVE-4283] - Bugfix: Update getFeesEstimation for EVM to prevent usage of `getFeeData` (#1603) chore: remove npm bump fixes bot workflow dispatch ...
- Loading branch information
Showing
731 changed files
with
40,593 additions
and
3,443 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"ledger-live-desktop": minor | ||
--- | ||
|
||
Adds prompts suggesting the user to update their device language according to a few set of conditions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"ledger-live-desktop": patch | ||
--- | ||
|
||
Feature flags: take into account env variable FEATURE_FLAGS to override feature flags |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"ledger-live-desktop": patch | ||
--- | ||
|
||
Improve UX of USB Troubleshooting flow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: "[Bot] non-reg on develop with 'Mère Denis'" | ||
on: | ||
schedule: | ||
- cron: "0 7 * * 1" | ||
|
||
concurrency: | ||
group: bot-seed1 | ||
|
||
jobs: | ||
start-runner: | ||
name: Start self-hosted EC2 runner | ||
runs-on: [ledger-live, linux] | ||
outputs: | ||
label: ${{ steps.start-ec2-linux-runner.outputs.label }} | ||
ec2-instance-id: ${{ steps.start-ec2-linux-runner.outputs.ec2-instance-id }} | ||
steps: | ||
- name: Start EC2 Linux Runner | ||
id: start-ec2-linux-runner | ||
uses: LedgerHQ/actions/ec2-linux-runner@main | ||
with: | ||
mode: start | ||
github-token: ${{ secrets.CI_BOT_TOKEN }} | ||
project: 2049 | ||
aws-nfs-logging: true | ||
ami-name-filter: ledger-live-runner | ||
instance-volume-size: 30 | ||
|
||
stop-runner: | ||
name: Stop self-hosted EC2 runner | ||
needs: [start-runner, run-bot] | ||
runs-on: [ledger-live, linux] | ||
timeout-minutes: 5 | ||
steps: | ||
- name: Stop EC2 Linux Runner | ||
uses: LedgerHQ/actions/ec2-linux-runner@main | ||
with: | ||
mode: stop | ||
github-token: ${{ secrets.CI_BOT_TOKEN }} | ||
label: ${{ needs.start-runner.outputs.label }} | ||
ec2-instance-id: ${{ needs.start-runner.outputs.ec2-instance-id }} | ||
|
||
run-bot: | ||
runs-on: ${{ needs.start-runner.outputs.label }} | ||
needs: [start-runner] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Retrieving coin apps | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ledger-live-bot | ||
repository: LedgerHQ/coin-apps | ||
token: ${{ secrets.GH_PAT }} | ||
path: coin-apps | ||
- uses: ./tools/actions/composites/bot | ||
id: bot | ||
timeout-minutes: 120 | ||
with: | ||
SLACK_API_TOKEN: ${{secrets.SLACK_API_TOKEN}} | ||
SLACK_ICON_EMOJI: ":bot-seed1:" | ||
SEED: ${{ secrets.SEED1 }} | ||
BOT_ENVIRONMENT: production |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
name: "[Bot] Testing with 'Mooncake'" | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
ref: | ||
description: The branch to run on | ||
required: true | ||
family: | ||
description: coin family to filter with (if any) | ||
required: false | ||
push: | ||
branches: | ||
- support/bot-mooncake | ||
- support/bot-mooncake-* | ||
|
||
concurrency: | ||
group: bot-seed4 | ||
|
||
jobs: | ||
start-runner: | ||
name: Start self-hosted EC2 runner | ||
runs-on: [ledger-live, linux] | ||
outputs: | ||
label: ${{ steps.start-ec2-linux-runner.outputs.label }} | ||
ec2-instance-id: ${{ steps.start-ec2-linux-runner.outputs.ec2-instance-id }} | ||
steps: | ||
- name: Start EC2 Linux Runner | ||
id: start-ec2-linux-runner | ||
uses: LedgerHQ/actions/ec2-linux-runner@main | ||
with: | ||
mode: start | ||
github-token: ${{ secrets.CI_BOT_TOKEN }} | ||
project: 2049 | ||
aws-nfs-logging: true | ||
ami-name-filter: ledger-live-runner | ||
instance-volume-size: 30 | ||
|
||
stop-runner: | ||
name: Stop self-hosted EC2 runner | ||
needs: [start-runner, run-bot] | ||
runs-on: [ledger-live, linux] | ||
timeout-minutes: 5 | ||
steps: | ||
- name: Stop EC2 Linux Runner | ||
uses: LedgerHQ/actions/ec2-linux-runner@main | ||
with: | ||
mode: stop | ||
github-token: ${{ secrets.CI_BOT_TOKEN }} | ||
label: ${{ needs.start-runner.outputs.label }} | ||
ec2-instance-id: ${{ needs.start-runner.outputs.ec2-instance-id }} | ||
|
||
run-bot: | ||
runs-on: ${{ needs.start-runner.outputs.label }} | ||
needs: [start-runner] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
if: ${{ github.event.inputs.ref != null }} | ||
with: | ||
ref: ${{ github.event.inputs.ref }} | ||
- uses: actions/checkout@v3 | ||
if: ${{ !github.event.inputs.ref }} | ||
- name: Retrieving coin apps | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ledger-live-bot | ||
repository: LedgerHQ/coin-apps | ||
token: ${{ secrets.GH_PAT }} | ||
path: coin-apps | ||
- uses: ./tools/actions/composites/bot | ||
id: bot | ||
timeout-minutes: 120 | ||
with: | ||
SHOW_LEGACY_NEW_ACCOUNT: "1" | ||
SLACK_API_TOKEN: ${{secrets.SLACK_API_TOKEN}} | ||
SLACK_ICON_EMOJI: ":bot-seed4:" | ||
SEED: ${{ secrets.SEED4 }} | ||
BOT_ENVIRONMENT: testing | ||
BOT_FILTER_FAMILY: ${{github.event.inputs.family}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
name: "[Bot] non-reg on develop with 'Phosphore'" | ||
on: | ||
schedule: | ||
- cron: "30 */6 * * *" | ||
push: | ||
branches: | ||
- develop | ||
|
||
concurrency: | ||
group: bot-seed6 | ||
|
||
jobs: | ||
start-runner: | ||
name: Start self-hosted EC2 runner | ||
runs-on: [ledger-live, linux] | ||
outputs: | ||
label: ${{ steps.start-ec2-linux-runner.outputs.label }} | ||
ec2-instance-id: ${{ steps.start-ec2-linux-runner.outputs.ec2-instance-id }} | ||
steps: | ||
- name: Start EC2 Linux Runner | ||
id: start-ec2-linux-runner | ||
uses: LedgerHQ/actions/ec2-linux-runner@main | ||
with: | ||
mode: start | ||
github-token: ${{ secrets.CI_BOT_TOKEN }} | ||
project: 2049 | ||
aws-nfs-logging: true | ||
ami-name-filter: ledger-live-runner | ||
instance-volume-size: 30 | ||
|
||
stop-runner: | ||
name: Stop self-hosted EC2 runner | ||
needs: [start-runner, run-bot] | ||
runs-on: [ledger-live, linux] | ||
timeout-minutes: 5 | ||
steps: | ||
- name: Stop EC2 Linux Runner | ||
uses: LedgerHQ/actions/ec2-linux-runner@main | ||
with: | ||
mode: stop | ||
github-token: ${{ secrets.CI_BOT_TOKEN }} | ||
label: ${{ needs.start-runner.outputs.label }} | ||
ec2-instance-id: ${{ needs.start-runner.outputs.ec2-instance-id }} | ||
|
||
run-bot: | ||
runs-on: ${{ needs.start-runner.outputs.label }} | ||
needs: [start-runner] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Retrieving coin apps | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ledger-live-bot | ||
repository: LedgerHQ/coin-apps | ||
token: ${{ secrets.GH_PAT }} | ||
path: coin-apps | ||
- uses: ./tools/actions/composites/bot | ||
id: bot | ||
timeout-minutes: 120 | ||
with: | ||
SHOW_LEGACY_NEW_ACCOUNT: "1" | ||
SLACK_API_TOKEN: ${{secrets.SLACK_API_TOKEN}} | ||
SLACK_ICON_EMOJI: ":bot-seed6:" | ||
SEED: ${{ secrets.SEED6 }} | ||
BOT_ENVIRONMENT: production |
Oops, something went wrong.
77e1ae4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
react-ui-storybook – ./
react-ui-storybook-git-main-ledgerhq.vercel.app
react-ui-storybook.vercel.app
react-ui-storybook-ledgerhq.vercel.app
77e1ae4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
native-ui-storybook – ./
native-ui-storybook-git-main-ledgerhq.vercel.app
native-ui-storybook.vercel.app
native-ui-storybook-ledgerhq.vercel.app
77e1ae4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
live-common-tools – ./
live-common-tools-ledgerhq.vercel.app
ledger-live.vercel.app
ledger-live-tools.vercel.app
live-common-tools-git-main-ledgerhq.vercel.app
live.ledger.tools
77e1ae4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
⏲ 21min 11s ✅ 52 txs ❌ 5 txs ($202.43) for [Bot] Testing with 'Phosphore'
❌ 5 mutation errors
Details of the 57 mutations
Spec Bitcoin (8)
Spec Bitcoin Testnet (13)
Spec Bitcoin Cash (7)
Spec Bitcoin Gold (6)
Spec Dash (7)
Spec Digibyte (9)
Spec DogeCoin (7)
Spec Komodo (5)
Spec Litecoin (9)
Spec Peercoin (5)
Spec PivX (5)
Spec Qtum (6)
Spec Vertcoin (6)
Spec Viacoin (5)
Spec ZCash (5)
Spec Horizen (5)
Spec Decred (7)
Details of the 16 uncovered mutations
Spec Bitcoin (1)
Spec Dash (1)
Spec DogeCoin (4)
Spec Komodo (1)
Spec Qtum (1)
Spec Vertcoin (1)
Spec Viacoin (4)
Spec ZCash (1)
Spec Horizen (2)
Portfolio ($202.43) – Details of the 17 currencies
bc1qq7e4zu0yjvtk0mhxmlge79jp6a8h8ye6d06nae
tb1qvkj936x2zdjt4krhyhqhz02vlw0zx8ux3mvmjn
qpk5ja3h0j6s3pd0r565sjr08ryhvdcc0c0kvupyu3
Acaw8s4vXzBTeXxeGjixxMTAy31g98yk9U
XwmTmCjKCuWWzGpz7UffZGnVYXdzZTFjtJ
dgb1qa34qrlsc8w7f9vp80a3dhmlcq6x8sj7wcv50mn
DSEoSvPRB5rLoFsJ55wW1w3N5JASZ2xq3c
RYEX7mm5zQZhCymhSWxcH7r96KWMLJbRug
ltc1qgcgtv5phhkkz86ymsuemcpylgn0kfkysu6a90q
PWXwogdGv5uBZMBErznCDPazuAVUvVTpLa
DRgNqQ29xm3rKAn6UfWyZcXkSS44MKBEzW
MKnC1ZxpvV7MunvC8SUMDqUKNpQLZLLDBF
3GRDHTfq9RTo447rFfLRrFSzBiZ7JN98N3
EQmcUL6tzHVzp2njda3B4jfQmmNnbGeQzk
t1Lv5G6MQEhtHyLWA7BQVqW18pAP14sZXYc
znk52JMUYSTgqBB6ckmjSTBrdSKy2TsgmsF
DsiXxHKZEAKwGbDsDD1p8e7EVX1ToTBZnpQ
Performance ⏲ 21min 11s
Time spent for each spec: (total across mutations)
77e1ae4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
⏲ 8min 57s ✅ 32 txs ❌ 10 txs ($113.41) for [Bot] Bitcoin on Staging
❌ 10 mutation errors
Details of the 42 mutations
Spec Bitcoin (7)
Spec Bitcoin Testnet (10)
Spec Bitcoin Cash (7)
Spec Bitcoin Gold (6)
Spec Dash (7)
Spec Digibyte (9)
Spec DogeCoin (7)
Spec Komodo (5)
Spec Litecoin (9)
Spec Peercoin (5)
Spec PivX (5)
Spec Qtum (6)
Spec Vertcoin (7)
Spec Viacoin (5)
Spec ZCash (5)
Spec Horizen (5)
Spec Decred (failed)
Details of the 31 uncovered mutations
Spec Bitcoin (2)
Spec Bitcoin Testnet (4)
Spec Bitcoin Cash (2)
Spec Bitcoin Gold (1)
Spec Dash (1)
Spec Komodo (1)
Spec Peercoin (1)
Spec PivX (2)
Spec Qtum (1)
Spec Vertcoin (2)
Spec Viacoin (4)
Spec ZCash (4)
Spec Horizen (2)
Spec Decred (4)
Portfolio ($113.41) – Details of the 17 currencies
bc1qe8c36wvlek77cld24la52ta5szv8f2fgwlgufr
tb1qufuqle89w3z4mvzrht4wf7a8ppl3tzuaxp722u
qzzhep7mm2dfcgle45xkcqxj0hcfrzmk9c9tfpduqh
AFrUeBu6nTwi5j2Uku2hiti1aL34uFnLqr
XnRQEujHuif4DErmxAcfX3MuEVWfK3j9NX
dgb1qfxjkpqx3cdrp5au0z0ee42wttlwdayjrgqpudx
DPXma8sEXcs4ZGEq9CbhuzEKEVAibUM5C6
RVPQeHVxL7aHQM7wRLGL8htxApp5eoVzVm
ltc1qj4fh29utgldgnhc47cdw2h30fv0dku7k8tuy4m
PLw97bz2mdaLKwmnUw4bhs5SRwdN96mwy7
DANnmVBmYxhwyiqfSRCDeDXSk9XinwbizB
MJYhjagLStHkaDZEs1AMBT1HTKDT8BQ6w5
36tx53x5KDtVDRaeVvWkHCiZkQsowSuubG
EZ14wpWagYsEBrkAsc7AuujUV57gRjte8i
t1RQNhus7YBiswKreemWCbLvvMTNgK55CiK
zncJjBVJwAjDeLhSJKHRpJcmGwCQkigdjsq
DshyFLDNm9kX5EL6DtkATQieLH2ZCL72UUj
Performance ⏲ 8min 57s
Time spent for each spec: (total across mutations)