eth: bump firmware version for eth streaming
What changed, and why it matters
This commit is a routine version bump and changelog update. It records that the next firmware release will add support for streaming large Ethereum transaction data, but it does not contain any actual code changes to the feature itself. There is nothing in the diff that introduces, fixes, or changes security-relevant behavior.
No security action required for this commit. Review the actual implementation of Ethereum data streaming separately if it has not already been audited.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit only modifies CHANGELOG.md to document ‘Ethereum: add data streaming support for transactions with large (>6144 bytes) data’ and bumps FIRMWARE_VERSION from v9.25.0 to v9.26.0 in CMakeLists.txt. No functional code, cryptographic logic, memory handling, or protocol parsing is changed.
Changed components
Inspect captured patch +2 / −1
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fb5d225..e1f2ae0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,7 @@ customers cannot upgrade their bootloader, its changes are recorded separately.
### [Unreleased]
- Improve experience of moving back and forth when entering password characters
+- Ethereum: add data streaming support for transactions with large (>6144 bytes) data
### v9.25.0
- BitBox02 Nova: improved password stretching algorithm
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a0a79f4..deacbfa 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -92,7 +92,7 @@ endif()
#
# Versions MUST contain three parts and start with lowercase 'v'.
# Example 'v1.0.0'. They MUST not contain a pre-release label such as '-beta'.
-set(FIRMWARE_VERSION "v9.25.0")
+set(FIRMWARE_VERSION "v9.26.0")
set(BOOTLOADER_VERSION "v1.1.2")
find_package(PythonInterp 3.6 REQUIRED)
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.