Skip to content

Commit 5baad56

Browse files
Merge pull request #974 from LedgerHQ/fix/apa/lns_rlp_parsing
App release 1.16.1 - LNS
2 parents ab139cb + 0f72615 commit 5baad56

14 files changed

Lines changed: 32 additions & 163 deletions

.github/workflows/build_and_functional_tests.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ on:
2121
- 'Open a PR'
2222
push:
2323
branches:
24-
- master
25-
- main
26-
- develop
24+
- nanos
2725
pull_request:
2826

2927
jobs:

.github/workflows/cflite_cron.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/workflows/cflite_pr.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.github/workflows/codeql_checks.yml

Lines changed: 4 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ on:
44
workflow_dispatch:
55
push:
66
branches:
7-
- master
8-
- main
9-
- develop
7+
- nanos
108
pull_request:
119
# Excluded path: add the paths you want to ignore instead of deleting the workflow
1210
paths-ignore:
@@ -15,33 +13,6 @@ on:
1513

1614
jobs:
1715
analyse:
18-
name: Analyse
19-
strategy:
20-
fail-fast: false
21-
matrix:
22-
sdk: ["$NANOS_SDK", "$NANOX_SDK", "$NANOSP_SDK", "$STAX_SDK", "$FLEX_SDK"]
23-
# 'cpp' covers C and C++
24-
language: ['cpp']
25-
runs-on: ubuntu-latest
26-
container:
27-
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-lite:latest
28-
29-
steps:
30-
- name: Clone
31-
uses: actions/checkout@v4
32-
with:
33-
submodules: true
34-
35-
- name: Initialize CodeQL
36-
uses: github/codeql-action/init@v3
37-
with:
38-
languages: ${{ matrix.language }}
39-
queries: security-and-quality
40-
41-
# CodeQL will create the database during the compilation
42-
- name: Build
43-
run: |
44-
make BOLOS_SDK=${{ matrix.sdk }}
45-
46-
- name: Perform CodeQL Analysis
47-
uses: github/codeql-action/analyze@v3
16+
name: Call Ledger CodeQL analysis
17+
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_codeql_checks.yml@v1
18+
secrets: inherit

.github/workflows/codespell.yml

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,12 @@ on:
44
workflow_dispatch:
55
push:
66
branches:
7-
- master
8-
- main
9-
- develop
7+
- nanos
108
pull_request:
119

1210
jobs:
1311
misspell:
1412
name: Check misspellings
15-
runs-on: ubuntu-latest
16-
steps:
17-
- uses: actions/checkout@v4
18-
with:
19-
submodules: true
20-
21-
- name: Check misspellings
22-
uses: codespell-project/actions-codespell@v2
23-
with:
24-
builtin: clear,rare
25-
check_filenames: true
26-
path: src, src_bagl, src_features, src_nbgl, src_plugins, doc, client
13+
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_spell_check.yml@v1
14+
with:
15+
src_path: src, src_bagl, src_features, src_nbgl, src_plugins, doc, client

.github/workflows/guidelines_enforcer.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ on:
1212
workflow_dispatch:
1313
push:
1414
branches:
15-
- master
16-
- main
17-
- develop
15+
- nanos
1816
pull_request:
1917

2018
jobs:

.github/workflows/lint-workflow.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ on:
1111
workflow_dispatch:
1212
push:
1313
branches:
14-
- master
15-
- main
16-
- develop
14+
- nanos
1715
pull_request:
1816

1917
jobs:

.github/workflows/swap-ci-workflow.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [1.16.1](../../compare/1.16.0...1.16.1-lns) - 2026-03-30
9+
10+
### Fixed
11+
12+
- RLP elements parsing
13+
14+
### Removed
15+
16+
- 44'/1' derivation path
17+
- 45' derivation path from clones
18+
819
## [1.16.0](../../compare/1.15.0...1.16.0) - 2025-04-28
920

1021
### Added

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ include ./makefile_conf/chain/$(CHAIN).mk
3737

3838
APPVERSION_M = 1
3939
APPVERSION_N = 16
40-
APPVERSION_P = 0
40+
APPVERSION_P = 1
4141
APPVERSION = $(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)
4242

4343
# Application source files
@@ -92,7 +92,6 @@ CURVE_APP_LOAD_PARAMS += secp256k1
9292
# and SLIP-0044 standards.
9393
# If your app needs it, you can specify multiple path by using:
9494
# `PATH_APP_LOAD_PARAMS = "44'/1'" "45'/1'"`
95-
PATH_APP_LOAD_PARAMS += "45'" "44'/1'"
9695

9796
# Setting to allow building variant applications
9897
# - <VARIANT_PARAM> is the name of the parameter which should be set

0 commit comments

Comments
 (0)