From 375118f74e7f54c4a701f258c67061aaf6fb39e2 Mon Sep 17 00:00:00 2001 From: Xavier Chapron Date: Mon, 9 Oct 2023 10:07:51 +0200 Subject: [PATCH] SDK: update with latest patches --- CHANGELOG.md | 7 ++++++- lite/Dockerfile | 10 +++++----- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39826eb..b93c12f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [3.6.0] - 2023-09-18 +## [3.7.0] - 2023-10-09 + +### Changed + - Bump SDK versions + +## [3.6.0] - 2023-10-03 ### Added - Add `cargo ledger setup` step in full/legacy images so users don't have to do it. diff --git a/lite/Dockerfile b/lite/Dockerfile index cf4fc9c..866e24d 100644 --- a/lite/Dockerfile +++ b/lite/Dockerfile @@ -67,7 +67,7 @@ ARG GIT_SERVER=https://github.com/LedgerHQ # Latest Nano S SDK # Will switch to the unified SDK for next OS release. ENV NANOS_SDK=/opt/nanos-secure-sdk -RUN git clone --branch v2.1.0-11 --depth 1 "$GIT_SERVER/nanos-secure-sdk.git" "$NANOS_SDK" +RUN git clone --branch v2.1.0-12 --depth 1 "$GIT_SERVER/nanos-secure-sdk.git" "$NANOS_SDK" # Unified SDK ENV LEDGER_SECURE_SDK=/opt/ledger-secure-sdk @@ -75,17 +75,17 @@ RUN git clone "$GIT_SERVER/ledger-secure-sdk.git" "$LEDGER_SECURE_SDK" # Latest Nano X SDK (OS nanox_2.2.2 => based on API_LEVEL 5) ENV NANOX_SDK=/opt/nanox-secure-sdk -RUN git -C "$LEDGER_SECURE_SDK" worktree add "$NANOX_SDK" v5.6.0 +RUN git -C "$LEDGER_SECURE_SDK" worktree add "$NANOX_SDK" v5.7.0 RUN echo nanox > $NANOX_SDK/.target # Latest Nano S+ SDK (OS nanos+_1.1.0 => based on API_LEVEL 1) ENV NANOSP_SDK=/opt/nanosplus-secure-sdk -RUN git -C "$LEDGER_SECURE_SDK" worktree add "$NANOSP_SDK" v1.8.0 +RUN git -C "$LEDGER_SECURE_SDK" worktree add "$NANOSP_SDK" v1.9.0 RUN echo nanos2 > $NANOSP_SDK/.target -# Latest Stax SDK (OS stax_1.3.0-rc4 => based on API_LEVEL 13) +# Latest Stax SDK (OS stax_1.3.0 => based on API_LEVEL 13) ENV STAX_SDK=/opt/stax-secure-sdk -RUN git -C "$LEDGER_SECURE_SDK" worktree add "$STAX_SDK" v13.0.0 +RUN git -C "$LEDGER_SECURE_SDK" worktree add "$STAX_SDK" v13.1.0 RUN echo stax > $STAX_SDK/.target # Default SDK