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 58 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(deps): bump urllib3 from 2.5.0 to 2.6.3by dependabot[bot] · 6bd6736f · Jan 30, 2026 · 1 fileMessage 88 · StrongInformational 13Details
Commit message · dependabot[bot]

chore(deps): bump urllib3 from 2.5.0 to 2.6.3

Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.5.0 to 2.6.3.
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](https://github.com/urllib3/urllib3/compare/2.5.0...2.6.3)

---
updated-dependencies:
- dependency-name: urllib3
dependency-version: 2.6.3
dependency-type: indirect
...

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 13/100

This is an automated dependency update by Dependabot that bumps the Python urllib3 library from version 2.5.0 to 2.6.3 in the project's lock file. urllib3 is a widely used HTTP client library, but it is an indirect dependency here, meaning it is pulled in by another package rather than being used directly by Trezor's firmware code. The commit itself only changes version numbers and download hashes; it does not modify Trezor's own code. Without knowing which known urllib3 vulnerabilities exist between these versions or how Trezor's tooling uses it, the direct security risk from this single commit is low.

Lower-prioritybuild(core): add `secmon` to nightly Docker buildsby Roman Zeyde · 77b1acb9 · Jan 30, 2026 · 1 fileMessage 89 · StrongInformational 12Details
Commit message · Roman Zeyde

build(core): add `secmon` to nightly Docker builds

Also, build firmware in a separate step, since it may fail due to a missing signed secmon.

[no changelog]

89/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body✓ Explains rationale or failure mode
Why it was queued
documentation-only discount
AI analysis · Informational 12/100

This commit changes the nightly build workflow for Trezor hardware wallets. It adds a new build step for a component called 'secmon' (only for the T3W1 model), splits the build into separate steps, and collects build fingerprints into a dedicated folder. There is no indication this fixes or introduces a security vulnerability; it is a build-pipeline improvement.

Lower-priorityci(core): add a workflow to generate translation contextby Michal Kazda · f8665dcc · Jan 30, 2026 · 4 filesMessage 62 · AdequateInformational 15Details
Commit message · Michal Kazda

ci(core): add a workflow to generate translation 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 15/100

This commit adds a new GitHub Actions workflow that builds Trezor firmware emulators, runs two selected UI tests in different languages, and uploads screenshot reports to an Amazon S3 bucket. It also adds a helper script that formats a comment with links to those reports, a list specifying which tests to run, and a minor change to slow down the animated GIF viewer from 200 ms to 1000 ms per frame. There is nothing in the changes that alters how the Trezor device handles secrets, cryptography, user input, or firmware security.

Lower-prioritychore(core/test): improve python unit test class-level skippingby M1nd3r · 7b9a96e1 · Jan 30, 2026 · 1 fileMessage 87 · StrongInformational 15Details
Commit message · M1nd3r

chore(core/test): improve python unit test class-level skipping

[no changelog]

Co-authored-by: romanz <9900+romanz@users.noreply.github.com>

87/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body✓ Mentions testing or verification
AI analysis · Informational 15/100

This commit is a minor internal improvement to the Python unit-test helper used in Trezor's firmware testing. It lets developers mark an entire test class as skipped rather than only individual test methods, and adds yellow coloring for skipped tests in console output. There is no change to device firmware, cryptography, wallet operations, or any user-facing security behavior.

Security candidatefix(core/tests): use decorator for unit tests skippingby M1nd3r · a9a1b9fd · Jan 30, 2026 · 7 filesMessage 72 · AdequateInformational 15Details
Commit message · M1nd3r

fix(core/tests): use decorator for unit tests skipping

[no changelog]

72/100 · AdequateMessage clarity
✓ Specific, 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
cryptography-sensitive pathsigning or wallet path
AI analysis · Informational 15/100

This commit only changes how certain software tests are skipped or run. It replaces manual 'if' checks at the bottom of test files with Python's built-in '@unittest.skipUnless' decorator on test classes. This makes the test suite behave more consistently but does not change any actual product code that users interact with.

Security candidatechore(core): slip21 keychain and path improvementsby M1nd3r · 5682a253 · Jan 29, 2026 · 3 filesMessage 62 · AdequateInformational 12Details
Commit message · M1nd3r

chore(core): slip21 keychain and path improvements

[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 path
AI analysis · Informational 12/100

This commit is a routine internal cleanup in the Trezor firmware. It moves the SLIP21 path validation into its own helper method, adds a new function to convert SLIP21 paths to human-readable strings, and updates tests. There is no indication it fixes a security vulnerability or changes user-visible behavior in a risky way.

Lower-priorityfix(core): fix task terminationby cepetr · 719a67f2 · Jan 29, 2026 · 1 fileMessage 57 · ThinLow 41Details
Commit message · cepetr

fix(core): fix task termination

[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 41/100

This commit fixes the order in which a simulated Trezor task (running on Unix/emulator) terminates itself when marked for shutdown. Previously, a killed task could briefly wake up and run again after yielding, because the 'am I killed?' check happened too late. Now the task exits immediately when it yields while killed, preventing a killed task from resuming and possibly executing unwanted code or mishandling an exception. The change is in the Unix emulator build, not the real hardware firmware, and the commit message does not call it a security fix.

Lower-priorityfeat(core): improve task post-mortem debug messagesby cepetr · 88fc0396 · Jan 29, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · cepetr

feat(core): improve task post-mortem debug messages

[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 only changes debug log messages shown when a task ends. It makes the messages clearer and skips printing details when a task ended normally with no error. There is no change to how the device operates or to any security behavior.

Lower-priorityfix(core): propagate the exit code from the core app emulatorby cepetr · b3861d2c · Jan 29, 2026 · 1 fileMessage 62 · AdequateInformational 17Details
Commit message · cepetr

fix(core): propagate the exit code from the core app emulator

[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 17/100

This commit fixes how the Trezor emulator exits when running the core app. Previously, the emulator thread did not pass along the actual exit code from the finished task, and it skipped the normal cleanup path. Now it calls the standard `systask_exit()` function with the real exit code. This is a code-correctness fix that mainly affects testing and emulator behavior, not a security vulnerability in the hardware wallet itself.

Lower-priorityfix(core/prodtest): exclude `backup-ram-erase` command from production prodtestby Roman Zeyde · 7e79e854 · Jan 29, 2026 · 1 fileMessage 77 · AdequateLow 35Details
Commit message · Roman Zeyde

fix(core/prodtest): exclude `backup-ram-erase` command from production prodtest

Following 73684a2811101d2c5207fac96551e6ff27f3a6a3.

[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 35/100

This commit removes a factory-testing command called backup-ram-erase from production builds of Trezor hardware wallets. The command was previously available in both production and non-production (development/test) builds, but should only exist in development builds. It is a hardening/cleanup change rather than a fix for an active exploit, because reaching the production-test command interface already requires physical access and special tooling.

Lower-prioritychore(core): remove unused `context.maybe_call()`by Roman Zeyde · 926f052c · Jan 28, 2026 · 1 fileMessage 72 · AdequateInformational 15Details
Commit message · Roman Zeyde

chore(core): remove unused `context.maybe_call()`

Its last caller was removed in 2ddca8ec1d942d077e400eac55fc363385259ff0.

[no changelog]

72/100 · AdequateMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body
AI analysis · Informational 15/100

This commit simply deletes an unused helper function called maybe_call() from the Trezor firmware's internal communication code. The function had no remaining callers, so removing it cannot introduce or fix any security issue. It is a routine code cleanup with no user-visible or security-relevant change.

Lower-prioritychore(core): log ignored ButtonRequestsby Roman Zeyde · 5958f029 · Jan 28, 2026 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Roman Zeyde

chore(core): log ignored ButtonRequests

[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 only adds extra debug logging messages that record when a 'ButtonRequest' event is ignored by the Trezor device's user interface code. It does not change program behavior, fix a bug, or alter security logic. There is no indication this is a security patch.

Security candidatefix(crypto): fix cash_encodeby M1nd3r · 13e6c4f5 · Jan 28, 2026 · 2 filesMessage 82 · StrongLow 37Details
Commit message · M1nd3r

fix(crypto): fix cash_encode

- Fixed description of buffer sizes in the header file.
- Added check of hrp length in cash_encode. Otherwise it allows to encode addresses that cannot be decoded using cash_decode.
- Adjusted naming of constants and parameters for clarity and consistency.

[no changelog]

82/100 · StrongMessage clarity
✓ Descriptive subject✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Explains rationale or failure mode
Why it was queued
cryptography-sensitive path
AI analysis · Low 37/100

This commit fixes a mismatch in Trezor's Bitcoin Cash address encoding. Previously, the encoder could create addresses with an overly long human-readable prefix (the part before the colon, like 'bitcoincash') that the decoder would later reject as invalid. The patch adds a length check so the encoder refuses to produce addresses that cannot be decoded. It also renames variables and updates comments for clarity, with no functional changes beyond the new length check.

Lower-priorityfix(tests): visit `flow_confirm_summary` menusby Ioan Bizău · 8d8eb7d8 · Jan 28, 2026 · 2 filesMessage 67 · AdequateInformational 17Details
Commit message · Ioan Bizău

fix(tests): visit `flow_confirm_summary` menus

[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 17/100

This commit is a test-only UI fix that enables the on-screen menu during automated test runs for two wallet interface layouts. It does not change how real transactions are signed or approved; it only makes sure automated tests can navigate the confirmation screens properly. There is no indication this fixes a security vulnerability.

Lower-priorityfix(delizia): visit summary menusby Ioan Bizău · 0c148ea5 · Jan 28, 2026 · 2 filesMessage 57 · ThinInformational 24Details
Commit message · Ioan Bizău

fix(delizia): visit summary menus

[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 24/100

This commit fixes a UI flow issue in the Trezor firmware's Delizia layout. Specifically, it ensures that transaction summary menus are properly included in the device flow, allowing users to access the menu during confirmation. Without this fix, users may not have been able to view or interact with summary details as intended during transaction signing. There is no direct evidence in the commit that this is a security vulnerability, but missing UI steps in a hardware wallet could theoretically affect user verification of transaction details.

Lower-priorityfix(tests): visit menus on all pagesby Ioan Bizău · 9bcf69ec · Jan 28, 2026 · 2 filesMessage 67 · AdequateInformational 15Details
Commit message · Ioan Bizău

fix(tests): visit menus on all pages

[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 changes test helper code. It moves calls that exercise on-screen menu items so they happen on every page of a paginated screen, not just the last page. There is no change to the actual Trezor firmware or to how real user transactions are handled, so it does not create or fix a security vulnerability in the device itself.

Lower-prioritychore: update fixturesby Ioan Bizău · a64683d0 · Jan 28, 2026 · 1 fileMessage 40 · ThinInformational 15Details
Commit message · Ioan Bizău

chore: update fixtures

[no changelog]

40/100 · ThinMessage clarity
✓ Subject identifies a change✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit only updates expected test result hashes (called 'fixtures') in a single test data file. There are no code changes, no bug fixes, and no security-related modifications visible in the diff. It appears to be a routine maintenance update so automated UI tests match the current device output.

Security candidaterefactor(core): introduce Notification rust typeby obrusvit · 5e065072 · Jan 28, 2026 · 17 filesMessage 80 · StrongInformational 15Details
Commit message · obrusvit

refactor(core): introduce Notification rust type

- introduce a type rather than carrying a tuple around
- this should make working with notifs easier in the future as we can
add fields to the struct
- export the NotificationLevel to uPy

[no changelog]

80/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
Why it was queued
cryptography-sensitive pathboot or update path
AI analysis · Informational 15/100

This commit is a straightforward internal code cleanup in the Trezor firmware's user-interface code. It replaces a loose pair of values (a notification text string plus a separate numeric 'level') with a single structured 'Notification' type, and gives the numeric levels named constants like ALERT, WARNING, INFO, and SUCCESS. There is no change to security behavior, no bug fix, and no externally visible functional change for users.

Lower-prioritychore(common): correct `DebugLinkSetLogFilter` next message annotationby Roman Zeyde · 3670e5b5 · Jan 28, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · Roman Zeyde

chore(common): correct `DebugLinkSetLogFilter` next message annotation

[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 is a documentation-only change inside a Protocol Buffers definition file. It corrects an annotation comment describing which message logically follows DebugLinkSetLogFilter. There is no code, no behavior change, and no security impact.

Lower-prioritychore: remove unused `LOCK_TIME` constantby Roman Zeyde · 1a909979 · Jan 28, 2026 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Roman Zeyde

chore: remove unused `LOCK_TIME` constant

[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 deletes an unused constant named LOCK_TIME from a test configuration file. It does not change any device firmware, wallet logic, or security behavior. There is no security issue here.

Security candidatechore: bump versionsby Roman Zeyde · 0a33b937 · Jan 28, 2026 · 11 filesMessage 63 · AdequateInformational 15Details
Commit message · Roman Zeyde

chore: bump versions

```
tools/bump-version.py core 2.10.2
tools/bump-version.py core/embed/projects/secmon 1.0.8
tools/bump-version.py core/embed/projects/bootloader 2.1.17
tools/bump-version.py core/embed/projects/prodtest 0.3.7
```

[no changelog]

63/100 · AdequateMessage clarity
✓ Subject identifies a change✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
Why it was queued
update trustsigning or wallet pathboot or update path
AI analysis · Informational 15/100

This commit is a routine version bump for Trezor firmware and related embedded components. It only changes version numbers in header files and translation metadata. There are no code changes, no bug fixes, and no security-related modifications visible in the diff.

Lower-priorityfeat(prodtest): enable disabling Tropic sensors in prodtestby Martin Pastyřík · 860ef85c · Jan 27, 2026 · 4 filesMessage 85 · StrongLow 35Details
Commit message · Martin Pastyřík

feat(prodtest): enable disabling Tropic sensors in prodtest

add prodtest cli commands to read and set the reversible configuration of the sensors (0x08)

also add a command to read the whole configurations to get a better clarity of what is set and what is not set

[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 · Low 35/100

This commit adds new factory-test (prodtest) commands for the Tropic secure chip used in some Trezor devices. It lets authorized production-line tools read and change a reversible chip setting called 'sensors configuration,' and also erase cryptographic slots or dump the whole chip configuration. The change is intended for manufacturing/testing, not normal user wallets, and requires a privileged pairing session. The code itself is not a hidden backdoor, but it does expand what a party with prodtest access can do to the secure chip.

Lower-priorityfeat(core): Add optiga-metadata-read command to prodtest.by Andrew Kozlik · cf823028 · Jan 27, 2026 · 4 filesMessage 62 · AdequateInformational 21Details
Commit message · Andrew Kozlik

feat(core): Add optiga-metadata-read command to prodtest.

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 21/100

This commit adds a new diagnostic command called optiga-metadata-read to Trezor's production-test firmware. It lets factory/test tooling read metadata from the Optiga secure chip, such as object sizes, access rules, and lifecycle state. It is a read-only debugging feature and does not change any data or access controls. There is no indication in the commit that this fixes a security bug or introduces a vulnerability.

AI review queuedchore(translations): sync Crowdin translationsby obrusvit · 12e02478 · Jan 27, 2026 · 7 filesMessage 57 · ThinInformational 15Details
Commit message · obrusvit

chore(translations): sync Crowdin translations

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 · Informational 15/100

This commit is a routine synchronization of translated user-interface text strings for the Trezor hardware wallet firmware. It updates Czech, German, Spanish, French, and Portuguese translations, refreshes the cryptographic signature that verifies those translations, and updates the expected screen hashes used in automated UI tests. There is no code that handles secrets, cryptography, network communication, or user authorization, and nothing in the changes suggests a security vulnerability.

Lower-prioritychore(tests): update UI fixturesby Martin Pastyřík · 9ddc6510 · Jan 27, 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 screenshots (called UI fixtures) for the Trezor hardware wallet's automated test suite. It adds hashes for two new test cases that check how the device handles invalid or missing credentials for an 'evolu' delegated identity key feature. There is no change to actual device firmware code, cryptography, or user-facing behavior, so it does not introduce or fix a security vulnerability on its own.