TZ
← All projectsTrezor

Trezor firmware

Firmware monorepo for Trezor One, Model T, and Safe devices.

BitcoinHardware walletsNormal
Repository coverage

2667 commits in the local evidence base

Every captured commit receives deterministic security triage and a separate communication-quality score. Security candidates and broader second-pass signals receive full-patch Ollama analysis.

921security candidates311second-pass queue2660AI analyses
322commits · 30 days
549commits · 60 days
1358commits · 180 days
2638commits · 365 days
Backfill bands
Aug 5 → Feb 61298 seen115 candidatesComplete
Feb 6 → Jun 6775 seen58 candidatesComplete
Jun 6 → Jul 6217 seen13 candidatesComplete
Jul 6 → Aug 5360 seen54 candidatesComplete
Commit communication

Does the history explain itself?

Message quality measures whether a commit identifies its scope, purpose, rationale, testing, and supporting references. It does not change the security-severity score.

66/100 average clarity
478Strong · 80–100
1321Adequate · 60–79
863Thin · 40–59
5Opaque · 0–39
Read the scoring rubric →
Developer activity

Who is changing the project?

Public Git author strings; identities are not independently verified.

DeveloperCommitsCandidatesAnalyzedHigh riskMessage avg.
tychovrahe292104292461
Roman Zeyde577181575272
PrisionMike945994273
Andrew Kozlik712470265
obrusvit21376213164
Jakub Janků22919182
Martin Pastyřík23823173
cepetr19682196059
Ioan Bizău23076230059
M1nd3r20772207071
Lukas Bielesch846784067
Martin Milata17446174063
Analysis record

Published AI watches

Last scanned 8 minutes ago

Low 27 AI analysisMessage 93 · Strong
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(core): digest EIP-1559/EIP-7702 magic without RLP encoding

This commit is a small internal cleanup in Trezor's Ethereum signing code. It changes how two special 'magic' bytes (the transaction type markers for newer Ethereum transaction formats) are fed into the cryptographic hash. Previously the c…

Refactor of cryptographic hashing path for Ethereum transaction signingRemoval of implicit assumption that RLP encodes small integers as single bytesChange affects EIP-1559 and EIP-7702 transaction type markers
2362bc6fby Roman Zeyde+6−32 files
No security note in commit
Informational 15 AI analysisMessage 98 · Strong
TZ TrezorTrezor firmware BitcoinHardware wallets

test(core): test RLP self-encoding bytestrings

This commit only adds a new unit test to the Trezor firmware codebase. It verifies that very short Ethereum RLP-encoded byte strings and small positive integers encode to themselves, which is a known property of the RLP specification. No p…

41538733by Roman Zeyde+16−01 file
No security note in commit
Informational 18 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

chore(core): remove sha1 from regular FW

This commit removes the SHA-1 hashing function from the regular Trezor firmware. SHA-1 is an old, weak hash algorithm that is no longer considered secure for sensitive uses. The change deletes the code that exposes SHA-1 to apps running on…

Removal of a deprecated cryptographic primitive (SHA-1) from the firmware API surfaceReduction of attack surface and prevention of future misuse of a collision-vulnerable hashNo direct vulnerability patch or memory-safety bug is present in the diff
16d15774by M1nd3r+0−2006 files
No security note in commit
Low 27 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): pass static public key to `noise_xxpsk3_*_init()`

This commit changes how a cryptographic library sets up secure connections. Previously, the code automatically calculated the public key from the private key. Now, the caller must provide the public key directly. This is a code-quality ref…

Cryptographic key handling changed: public key is now supplied rather than derivedPotential reduction of key-mismatch risk if caller provides correct public keyNew null-pointer check added for static_public_key
1b3128a4by Ondřej Vejpustek+20−92 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): change order of parameters

This commit simply reorders the arguments of an internal function called dh() and updates every place that calls it. The actual math and security behavior are unchanged; it is a code cleanup with no security effect.

33a119eeby Ondřej Vejpustek+15−151 file
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): prefix enums

This commit simply renames two groups of internal status labels (called enums) in the Trezor firmware's cryptographic code. The old names like WAITING_FOR_REQUEST1 were shared between two different parts of the code, so the developer gave …

f1c74046by Ondřej Vejpustek+26−222 files
No security note in commit
Low 37 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

fix(crypto): prevent calling `memzero(NULL, ...)`

This commit fixes three places in the Trezor firmware's cryptographic code where a memory-clearing function could be called with a NULL pointer. In practice, passing NULL to memzero is harmless on Trezor's platform (it does nothing), but i…

NULL pointer passed to memory-zeroing helper in cryptographic codeUndefined behavior in C standard library contractDefensive hardening in Noise protocol implementation
0394e934by Ondřej Vejpustek+11−51 file
No security note in commit
Informational 18 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): return remote static key from `noise_xxpsk3_*_handle_*()`

This commit is a code cleanup (refactor) for the cryptographic handshake code used in Trezor devices. It changes how the other party's long-term public key is returned to the caller: instead of storing it inside an internal state structure…

Removal of long-term public key storage from internal handshake stateCaller-supplied output buffer for remote static public key reduces internal secret retentionError-path memzero of returned key material on failure
3ead1aa6by Ondřej Vejpustek+79−423 files
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): rename ProjectProfile to ProjectConfig

This commit is a simple rename from 'ProjectProfile' to 'ProjectConfig' in two Rust source files. It only changes variable names, struct names, and error messages. There is no change to program logic, security behavior, or how data is hand…

581b37bcby cepetr+18−182 files
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): introduce ResolvedBuildArgs

This commit is a straightforward internal code refactor in Trezor's build tooling. It introduces a new ResolvedBuildArgs structure that centralizes default values for command-line build options before they are used. There is no change to u…

c24d1be8by cepetr+99−295 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): make build args tristate

This commit is a straightforward internal refactor of the Trezor firmware build tool's command-line argument handling. It changes many on/off flags from plain booleans to optional booleans so they can explicitly be set to true, false, or l…

271e249aby cepetr+57−561 file
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): introduce build options

This commit is a straightforward internal code reorganization in Trezor's build tooling. It moves build-option definitions from one Rust source file to a new module and adds the ability to load those options from a configuration file. Ther…

75085e2aby cepetr+275−2007 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(xtask): introduce build presets

This commit is a developer tooling change for the Trezor firmware build system. It introduces 'build presets'—named configuration bundles stored in TOML files—so developers can select common build settings with a single command-line flag i…

eefe8f7fby cepetr+397−419 files
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(xtask): upgrade manifest.yaml for tf-tools 0.3.0

This commit is a routine update to a build-system manifest file used by Trezor's internal tooling. It reorganizes and re-labels feature flags (for example, moving options between 'Features', 'Debugging', and 'Signing' groups and simplifyin…

57b28b89by cepetr+86−1351 file
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(core): add tf-tools 0.3.1+ configuration file

This commit adds a single configuration file for a Trezor developer tool (a VS Code extension). It only points the tool to existing folders in the repository and contains no executable code, no secrets, and no changes to firmware behavior.…

e554f618by cepetr+8−01 file
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): rename ResolvedBuild to ResolvedBuildFeatures

This commit is a simple internal code cleanup: it renames a Rust data structure called ResolvedBuild to ResolvedBuildFeatures and updates the places that use it. There are no functional changes, no security fixes, and no changes to how the…

aaa2780bby cepetr+5−52 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

fix(core): fix up clippy warnings in storage.rs

This is a tiny code cleanup commit that replaces two calls to `ptr::null()` with Rust's `unwrap_or_default()` to silence automated Clippy lint warnings. It does not change what value is produced (still a null pointer when no salt is provid…

62354461by cepetr+2−21 file
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): simplify dependencies

This commit is a straightforward internal code cleanup in Trezor's build tooling. It moves a data structure and two helper methods from one Rust source file to another and updates callers accordingly. There is no change to user-facing beha…

6268349fby cepetr+9−193 files
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

docs: add xtask documentation

This commit only adds documentation. It updates the table of contents and adds a new markdown page plus a diagram explaining the project's 'xtask' build helper. No code, build scripts, or firmware logic was changed, so it cannot introduce …

4879dababy cepetr+296−03 files
No security note in commit
Informational 17 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(xtask): introduce project-toml build-options

This commit is a build-system refactoring for Trezor firmware. It moves the mapping of command-line build options to Rust/cargo features out of hard-coded Rust logic and into per-project TOML files. It also adds a small change so debug bui…

Build-option mapping now lives in project.toml files, increasing the attack surface for supply-chain/build-configuration tamperingMakefile change automatically enables debug-link for PYOPT=0 debug buildsValidation added to reject storage_insecure_testing_mode in production builds
d44de007by cepetr+681−40817 files
No security note in commit
Repository ledger

Explore captured commits

Expand any commit for its author, full message, clarity score, changed files, triage signals, analysis, and source link.

AI review queuedchore: remove untranslated stringby Ioan Bizău · 40a37ffe · Feb 11, 2026 · 3 filesMessage 47 · ThinInformational 15Details
Commit message · Ioan Bizău

chore: remove untranslated string

[no changelog]

47/100 · ThinMessage clarity
✓ Descriptive subject✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Informational 15/100

This commit is a minor user-interface cleanup. It removes a fallback English string ('Path ...') that was not part of the device's translation system and instead reuses an already-translated derivation-path label. It also stops the wallet from showing the same account information twice on screen when no proper account name is available. There is no security issue here.

Security candidatefeat(delizia): back button on summaryby Ioan Bizău · 60294d4c · Feb 11, 2026 · 4 filesMessage 57 · ThinInformational 19Details
Commit message · Ioan Bizău

feat(delizia): back button on summary

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
boot or update path
AI analysis · Informational 19/100

This commit adds a back button (swipe-down gesture) to the transaction summary screen on Trezor's Delizia and Eckhart UI layouts. Previously, the summary screen only allowed swiping up to proceed to the hold-to-confirm step. Now, when the caller requests it, users can swipe down to go back. This is a user-interface feature change, not a security fix or vulnerability.

Security candidatefix(delizia): `show_properties` layout consistencyby Ioan Bizău · 7e85413c · Feb 11, 2026 · 1 fileMessage 85 · StrongInformational 17Details
Commit message · Ioan Bizău

fix(delizia): `show_properties` layout consistency

before: you could call `show_properties` either with a string or with a
list of properties
* if you would call it with a string it would use `ConfirmValue`
* if you would call it with a list of properties, it would use
`ShowInfoParams` to show multiple properties

after:
* if you call it with a list of properties that only has one property
it defaults to the same behaviour as the case when you call it with a
single string

[no changelog]

85/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
Why it was queued
boot or update path
AI analysis · Informational 17/100

This commit changes how the Trezor hardware wallet displays a single property on screen. Previously, passing one property as a list used a different screen layout than passing the same property as a plain string. Now both cases use the same ConfirmValue screen. This is a UI consistency fix with no obvious security impact, though any UI change can in principle affect what the user sees and approves.

Security candidaterefactor(core): improve `PropertyType` consistencyby Ioan Bizău · 3a8d869e · Feb 11, 2026 · 28 filesMessage 62 · AdequateInformational 15Details
Commit message · Ioan Bizău

refactor(core): improve `PropertyType` consistency

[no changelog]

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
cryptography-sensitive pathsigning or wallet pathboot or update path
AI analysis · Informational 15/100

This commit is a large but purely cosmetic refactor of on-screen text labels across Trezor firmware. It removes trailing colons from many prompts (e.g., changing 'New fee rate:' to 'New fee rate') and adjusts capitalization for consistency. There is no change to security logic, cryptography, transaction validation, or how user confirmations work.

Lower-priorityfeat(core/prodtest): add command to check CRC statusby tychovrahe · df2d0f01 · Feb 10, 2026 · 4 filesMessage 62 · AdequateInformational 15Details
Commit message · tychovrahe

feat(core/prodtest): add command to check CRC status

[no changelog]

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit adds a simple read-only command called 'crc-status' to Trezor's production-test tool. It lets a factory technician ask the device whether automatic CRC checks are currently turned on or off. The command does not change any settings, access secrets, or affect normal wallet operation. It is purely informational.

Lower-priorityfix(core/prodtest): exclude the space before CRC value from its calculationby tychovrahe · d706b8c5 · Feb 10, 2026 · 2 filesMessage 62 · AdequateInformational 23Details
Commit message · tychovrahe

fix(core/prodtest): exclude the space before CRC value from its calculation

[no changelog]

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 23/100

This commit fixes a tiny bug in Trezor's factory production-test command-line tool. The tool can require a CRC32 checksum at the end of each command to catch typos. The bug was that the checksum was accidentally calculated over an extra space character that sits just before the checksum value, so the device would reject commands whose checksum was computed the 'obvious' way. The patch removes that extra space from the checksum calculation and updates the README examples. It only affects the production-testing CLI, not normal wallet operation.

AI review queuedchore(deps): bump protobuf from 6.32.0 to 6.33.5by dependabot[bot] · cad6d979 · Feb 10, 2026 · 1 fileMessage 88 · StrongInformational 14Details
Commit message · dependabot[bot]

chore(deps): bump protobuf from 6.32.0 to 6.33.5

Bumps [protobuf](https://github.com/protocolbuffers/protobuf) from 6.32.0 to 6.33.5.
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Commits](https://github.com/protocolbuffers/protobuf/commits)

---
updated-dependencies:
- dependency-name: protobuf
dependency-version: 6.33.5
dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

88/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Links an issue, advisory, or supporting reference
Why it was queued
automated dependency-update discountsecond-pass: broader security terminology
AI analysis · Informational 14/100

This is an automated dependency update by Dependabot that bumps the Python protobuf library from version 6.32.0 to 6.33.5 in the project's lock file. It also removes an unused 'ecdsa' dependency entry. There is no indication in the commit itself that this fixes a known security vulnerability, and no security advisory was supplied. Dependency updates can in principle include security fixes, but this change alone does not demonstrate any exploitable flaw.

Lower-priorityfix(core): include telemetry-related source in emulator buildsby Roman Zeyde · c6564b01 · Feb 10, 2026 · 4 filesMessage 62 · AdequateInformational 18Details
Commit message · Roman Zeyde

fix(core): include telemetry-related source in emulator builds

[no changelog]

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 18/100

This commit fixes a build configuration issue for the Trezor hardware wallet emulator. It makes sure that telemetry-related code (which reads device health data like temperature and battery statistics) is included when building the software emulator, and it adds a missing workflow decorator to the Python helper that requests telemetry. There is no direct security vulnerability here; it is a build/test fix that enables a feature to work correctly in the emulator.

AI review queuedchore(deps-dev): bump wheel from 0.45.1 to 0.46.2by dependabot[bot] · aea24a58 · Feb 9, 2026 · 1 fileMessage 88 · StrongInformational 15Details
Commit message · dependabot[bot]

chore(deps-dev): bump wheel from 0.45.1 to 0.46.2

Bumps [wheel](https://github.com/pypa/wheel) from 0.45.1 to 0.46.2.
- [Release notes](https://github.com/pypa/wheel/releases)
- [Changelog](https://github.com/pypa/wheel/blob/main/docs/news.rst)
- [Commits](https://github.com/pypa/wheel/compare/0.45.1...0.46.2)

---
updated-dependencies:
- dependency-name: wheel
dependency-version: 0.46.2
dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>

88/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Links an issue, advisory, or supporting reference
Why it was queued
automated dependency-update discountsecond-pass: broader security terminology
AI analysis · Informational 15/100

This is a routine automated update by Dependabot that bumps the Python 'wheel' development dependency from version 0.45.1 to 0.46.2 in the project's lock file. It only changes a package metadata entry and does not alter any device firmware, wallet logic, or runtime code. There is no indication this fixes or introduces a security issue.

Lower-priorityfeat(core): increase default logging level to WARNby cepetr · 8aece503 · Feb 9, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · cepetr

feat(core): increase default logging level to WARN

[no changelog]

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit changes the default logging setting on Trezor hardware wallets from 'no logging' to 'log warnings'. It is a routine configuration change that makes the device record more diagnostic information by default. There is no indication this is a security fix or introduces a security problem.

Lower-priorityrefactor(core): improve app_loader error handlingby cepetr · a0bbfe81 · Feb 9, 2026 · 17 filesMessage 57 · ThinLow 34Details
Commit message · cepetr

refactor(core): improve app_loader error handling

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Low 34/100

This commit is a code-quality refactor in Trezor's firmware that changes how the app loader reports failures. It replaces simple true/false return values with detailed error codes, adds cleanup paths, and makes the kernel halt if app-cache or app-loader initialization fails. The changes do not appear to fix a known exploitable bug, but they harden error handling and could prevent subtle failures from being silently ignored.

Lower-priorityfeat(core): introduce TS_ACCES error codeby cepetr · aed0378b · Feb 9, 2026 · 2 filesMessage 57 · ThinInformational 15Details
Commit message · cepetr

feat(core): introduce TS_ACCES error code

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit simply adds a new error code constant named TS_EACCES (matching the standard Unix 'permission denied' code EACCES) to the Trezor firmware's internal error-handling library. It only defines the constant and its string representation; no code actually uses it yet. There is no functional change to device behavior and no security fix or vulnerability present in the diff.

Lower-priorityrefactor(core): simplify reconfiguration of MPU for systaskby cepetr · ec392659 · Feb 9, 2026 · 4 filesMessage 62 · AdequateInformational 12Details
Commit message · cepetr

refactor(core): simplify reconfiguration of MPU for systask

[no changelog]

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 12/100

This commit is a code cleanup: it replaces several copies of the same small block of code with a single helper function called systask_set_mpu(). The helper does exactly the same thing as the old repeated code—configures memory protection for an applet if one is attached, and does nothing otherwise. There is no change in behavior or security boundary.

Lower-priorityfix(core): fix double evaluation of status in TSH_CHECK_xxxby cepetr · fa6c5108 · Feb 9, 2026 · 1 fileMessage 62 · AdequateLow 44Details
Commit message · cepetr

fix(core): fix double evaluation of status in TSH_CHECK_xxx

[no changelog]

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Low 44/100

This commit fixes a subtle C macro bug where a status value could be evaluated twice. In some cases, the value used for logging could differ from the value actually stored as the error result, which might hide or misreport what went wrong inside the Trezor firmware. The patch stores the status in a variable first, then logs that same stored value so the two always match.

Lower-priorityfeat(core): add automatic logging in TSH_CHECK macrosby cepetr · 0c0a4d6f · Feb 9, 2026 · 3 filesMessage 62 · AdequateInformational 12Details
Commit message · cepetr

feat(core): add automatic logging in TSH_CHECK macros

[no changelog]

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 12/100

This commit adds automatic error logging to internal Trezor firmware macros that handle failed security and status checks. It is a diagnostic/debugging improvement, not a fix for a security vulnerability. The change only affects what information is logged when errors already occur; it does not change how errors are handled or what code is allowed to run.

AI review queuedchore(python): update `click` dependency versionsby Roman Zeyde · 34d382d4 · Feb 9, 2026 · 2 filesMessage 57 · ThinInformational 15Details
Commit message · Roman Zeyde

chore(python): update `click` dependency versions

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
second-pass: broader security terminology
AI analysis · Informational 15/100

This commit simply widens the allowed version range for the Python 'click' command-line library used in Trezor's Python tools. It does not change any device firmware, wallet logic, or security-sensitive code. There is no indication this is a security fix or that it addresses any vulnerability.

Lower-priorityfix(python): restore `TrezorClient.cancel()` behaviourby Roman Zeyde · 0edb43ec · Feb 9, 2026 · 3 filesMessage 77 · AdequateLow 28Details
Commit message · Roman Zeyde

fix(python): restore `TrezorClient.cancel()` behaviour

It should only send `messages.Cancel()`, so the main flow will receive the `ActionCancelled` failure.

[no changelog]

77/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body
AI analysis · Low 28/100

This commit fixes a behavior quirk in the Python Trezor client library's cancel() method. Previously, calling cancel() on a TrezorClient object would use a session-level cancel that swallowed the Cancelled exception, which could hide the fact that the operation was cancelled from the main application flow. The fix makes cancel() simply send a Cancel message and lets the normal flow receive the ActionCancelled failure. This is a library-side correctness fix; it does not appear to be a security vulnerability in the hardware wallet firmware itself.

Lower-priorityfix(python): fix `trezorctl get-session` for legacyby Roman Zeyde · 8cb7675d · Feb 9, 2026 · 1 fileMessage 85 · StrongInformational 20Details
Commit message · Roman Zeyde

fix(python): fix `trezorctl get-session` for legacy

`TrezorConnection._version` wasn't set, so the command was failing with:
```
Traceback (most recent call last):
File "./venv/bin/trezorctl", line 8, in <module>
sys.exit(cli())
^^^^^
File "./venv/lib/python3.12/site-packages/click/core.py", line 1161, in __call__
return self.main(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "./venv/lib/python3.12/site-packages/click/core.py", line 1082, in main
rv = self.invoke(ctx)
^^^^^^^^^^^^^^^^
File "/home/rzeyde/src/trezor-firmware/python/src/trezorlib/cli/trezorctl.py", line 161, in invoke
return super().invoke(ctx)
^^^^^^^^^^^^^^^^^^^
File "./venv/lib/python3.12/site-packages/click/core.py", line 1697, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "./venv/lib/python3.12/site-packages/click/core.py", line 1443, in invoke
return ctx.invoke(self.callback, **ctx.params)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "./venv/lib/python3.12/site-packages/click/core.py", line 788, in invoke
return __callback(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "./venv/lib/python3.12/site-packages/click/decorators.py", line 45, in new_func
return f(get_current_context().obj, *args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/rzeyde/src/trezor-firmware/python/src/trezorlib/cli/trezorctl.py", line 361, in get_session
if obj.features.model == "1" and obj.version < (1, 9, 0):
^^^^^^^^^^^
File "/home/rzeyde/src/trezor-firmware/python/src/trezorlib/cli/__init__.py", line 280, in version
if self._version is None:
^^^^^^^^^^^^^
AttributeError: 'TrezorConnection' object has no attribute '_version'. Did you mean: 'version'?
```

[no changelog]

85/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
AI analysis · Informational 20/100

This is a straightforward bug fix in the Python command-line tool `trezorctl`. A missing internal variable (`_version`) caused the `get-session` subcommand to crash with an error when used with older (legacy) Trezor devices. The patch adds the missing variable declaration and resets it when the connection closes. There is no security vulnerability here—just a broken feature being repaired.

AI review queuedfeat(tron): Clear sign some TRC20 transfers.by PrisionMike · adf70c8e · Feb 8, 2026 · 3 filesMessage 57 · ThinLow 28Details
Commit message · PrisionMike

feat(tron): Clear sign some TRC20 transfers.

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Low 28/100

This commit expands the Trezor hardware wallet's ability to clearly display details for more Tron TRC20 token transfers on the device screen. Previously, only one test token was recognized; now a built-in list of popular tokens (like USDT, USDD, BTT, etc.) is shown with their proper names and decimal places when a user signs a transfer. This is a user-experience and safety improvement, not a fix for a known exploit.

Security candidatechore(core): remove double check when changing pinby Martin Pastyřík · 589fd84b · Feb 6, 2026 · 31 filesMessage 62 · AdequateLow 32Details
Commit message · Martin Pastyřík

chore(core): remove double check when changing pin

[no changelog]

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
seed or entropy pathboot or update pathauthentication path
AI analysis · Low 32/100

This commit refactors how the Trezor hardware wallet changes its PIN. Previously, the storage layer itself re-checked the old PIN while changing it. Now the device must already be unlocked before changing the PIN, and the change-PIN function only sets the new PIN. The change is described as removing a redundant 'double check.' It also adds more detailed error codes so the firmware can tell the user exactly what went wrong. There is no direct evidence in the commit that this fixes an active security bug, but it is a meaningful change to a security-critical function.

Lower-prioritychore(tests): update UI fixturesby Martin Pastyřík · 8a1128a4 · Feb 6, 2026 · 1 fileMessage 67 · AdequateInformational 15Details
Commit message · Martin Pastyřík

chore(tests): update UI fixtures

[no changelog]

67/100 · AdequateMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Mentions testing or verification! No meaningful explanatory body
AI analysis · Informational 15/100

This commit only updates expected test result fingerprints (called UI fixtures) in a single JSON file. It does not change any firmware, application, or test logic. There is no security-relevant code change here.

Lower-priorityfix(core): call SDL drawing function in kernel task contextby cepetr · b4a58dde · Feb 6, 2026 · 1 fileMessage 62 · AdequateInformational 23Details
Commit message · cepetr

fix(core): call SDL drawing function in kernel task context

[no changelog]

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 23/100

This commit changes how the Trezor emulator (Unix/SDL build) redraws the screen and the suspend overlay. Previously, SDL drawing functions could be called from any internal task. The patch forces those SDL calls to run in the special 'kernel task' context, likely to avoid crashes, graphics corruption, or thread-safety problems when another task tries to update the display. It is a hardening/robustness fix for the emulator, not a live hardware wallet fix, and there is no direct evidence it closes a user-exploitable security vulnerability.

Lower-priorityfeat(core): TS7 display refresh rate scaling and configuration optimizationby bleska · 5ba03339 · Feb 5, 2026 · 6 filesMessage 100 · StrongInformational 11Details
Commit message · bleska

feat(core): TS7 display refresh rate scaling and configuration optimization

In order to lower the power consumption in standard operation mode, the goal is to regulate the display refresh rate based on the current needs (animations - 60Hz, static images - 30 Hz).
- Introduction of the on-the-fly refresh rate change functionality (interrupt based).

Configuration optimizations' investigations:
- Since the display visible dimensions are 520x380 and the display controller doesn't support this resolution directly, the closest variant 520x480 is used with 50px offset. Changing the resolution used to 520x430 and shortening the HACT region by 50px effectivly increasing the blanking period.
- Using RGB565 DSI color format, changing pixel clock to 15.5 MHz, changing HFP to 20 to maintain the 60 Hz refresh rate for the new pixel clock.
- DSI lane byte clock vs LTDC pixel clock ratio (max, min) tests.
- Etc. - different configuration profiles have been tested and TS7 input power consumption measured.

Formalizing the code to official one:
- adding preprocessor definitions to panels' configuration header files
- adding ifdefs to display_driver and display_fb source files to integrate the refresh rate scaling code based on panel's used
- the refresh rate change is to be performed to high one as soon as new image is to be shown, and to the low one after a timeout expires

[no changelog]

100/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Explains rationale or failure mode✓ Mentions testing or verification
AI analysis · Informational 11/100

This commit changes how the Trezor hardware wallet's display is driven, mainly to save battery. It adds the ability to switch between 60 Hz and 30 Hz refresh rates depending on whether the screen is showing animations or a static image. It also reorganizes display timing numbers into panel-specific configuration files. There is no direct evidence in the commit that this fixes a security vulnerability; it reads as a power-optimization and code-cleanup change.

Lower-priorityrefactor(core): panel configuration refactoring.by bleska · b82f5999 · Feb 5, 2026 · 2 filesMessage 80 · StrongInformational 16Details
Commit message · bleska

refactor(core): panel configuration refactoring.

The arguments' passed to the HAL_DSI_LongWrite() function calls were corrected. Since the code is used in "KERNEL_MODE" => adding the respective preprocessor directives.

[no changelog]

80/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
AI analysis · Informational 16/100

This commit fixes the length arguments passed to display-panel initialization commands in Trezor firmware. The wrong lengths could have caused some display panels to fail to initialize correctly, but there is no direct evidence this is exploitable for security harm. The commit also wraps the panel driver code in a KERNEL_MODE preprocessor guard so it only compiles in the appropriate build mode.

Lower-priorityci(core): test all languages on nightly CI runsby Roman Zeyde · 43abe309 · Feb 5, 2026 · 1 fileMessage 67 · AdequateInformational 15Details
Commit message · Roman Zeyde

ci(core): test all languages on nightly CI runs

[no changelog]

67/100 · AdequateMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Mentions testing or verification! No meaningful explanatory body
Why it was queued
documentation-only discount
AI analysis · Informational 15/100

This commit changes a GitHub Actions workflow so that nightly automated test runs exercise all supported device languages, not just English. It is purely a testing/CI configuration change and does not modify any firmware code, cryptography, or user-facing behavior. There is no security relevance.