TZ
← All projectsTrezor

Trezor firmware

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

BitcoinHardware walletsNormal
Repository coverage

2665 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.

919security candidates311second-pass queue2658AI analyses
332commits · 30 days
563commits · 60 days
1366commits · 180 days
2648commits · 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
476Strong · 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 Zeyde575179573271
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 14 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.

Lower-priorityfeat(prodtest): Add Tropic random value and Tropic initialize to Tropic stress testby Martin Pastyřík · 9fe2945f · Mar 24, 2026 · 7 filesMessage 77 · AdequateInformational 15Details
Commit message · Martin Pastyřík

feat(prodtest): Add Tropic random value and Tropic initialize to Tropic stress test

[no changelog]

77/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Mentions testing or verification✓ Names security-relevant behavior explicitly! No meaningful explanatory body
AI analysis · Informational 15/100

This commit is a routine feature addition to an internal production-test tool used during hardware manufacturing. It expands a stress test for the Tropic secure chip to also exercise chip initialization and random-number generation, and it cleans up how the emulator build chooses a network port for the simulated Tropic chip. There is no indication this fixes a security vulnerability or introduces a security-relevant weakness.

Lower-prioritychore(python): remove per-call THP piggybackingby Roman Zeyde · 382de2bc · Mar 23, 2026 · 1 fileMessage 57 · ThinInformational 11Details
Commit message · Roman Zeyde

chore(python): remove per-call THP piggybacking

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

This commit removes a small piece of Python code in Trezor's host-side library that automatically bundled low-level transport acknowledgements with every device call. The change is labelled as a routine cleanup ('chore') and explicitly says it has no changelog entry. There is nothing in the diff or commit message that indicates a security fix, vulnerability, or behavior change visible to users.

Lower-priorityfeat(python): enable per-workflow THP ACK piggybackingby Roman Zeyde · a677eeff · Mar 23, 2026 · 9 filesMessage 85 · StrongInformational 19Details
Commit message · Roman Zeyde

feat(python): enable per-workflow THP ACK piggybacking

Following https://github.com/trezor/trezor-firmware/pull/6563#issuecomment-4022724116.

[no changelog]

85/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body✓ Links an issue, advisory, or supporting reference
AI analysis · Informational 19/100

This commit refactors how the Trezor Python client handles low-level 'ACK' messages during encrypted THP communication. It replaces a single-workflow marker with a stack of nested contexts so multiple sessions can share a channel without sending duplicate acknowledgements. The change is a feature/cleanup, not a security fix, and does not appear to introduce a vulnerability. It mainly touches test helpers and the THP transport layer.

Lower-priorityrefactor(python): move invalidation & refresh into workflow() decoratorby Roman Zeyde · 01f9fd54 · Mar 23, 2026 · 3 filesMessage 89 · StrongInformational 18Details
Commit message · Roman Zeyde

refactor(python): move invalidation & refresh into workflow() decorator

Otherwise, THP ACK piggybacking may result in unnecessary re-transmissions.

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

This is a small internal cleanup in Trezor's Python library. It moves the 'refresh device info' and 'invalidate client' steps into a shared decorator so they happen after a workflow finishes, rather than inside each individual function. The stated reason is to avoid unnecessary re-transmissions in the new THP (Trezor Host Protocol) when an ACK is piggybacked. There is no direct security bug being fixed; it is a reliability/refactoring change.

Lower-priorityfeat(core): re-enable THP ACK piggybackingby Roman Zeyde · 201ce5ed · Mar 23, 2026 · 4 filesMessage 72 · AdequateLow 27Details
Commit message · Roman Zeyde

feat(core): re-enable THP ACK piggybacking

This reverts commit 586df8a0de3bbfe26abf61941847cc8afca77ed9.

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

This commit re-enables a feature called 'THP ACK piggybacking' in Trezor firmware. It is a feature change, not a security patch. The commit message and diff do not describe any security vulnerability or fix. The change was previously disabled due to an unrelated issue (#6506) that is now apparently resolved. Without additional references, there is no direct evidence this commit fixes a security problem.

Security candidatefeat(common): introduce `BackupMethod` protobuf enumby Roman Zeyde · c2ba96a3 · Mar 23, 2026 · 9 filesMessage 62 · AdequateInformational 18Details
Commit message · Roman Zeyde

feat(common): introduce `BackupMethod` protobuf enum

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

This commit adds a new 'BackupMethod' setting to Trezor's device communication protocol. It lets the wallet software tell the device how to handle backup or recovery of the secret recovery words. The change only defines the new enum and wires it into three messages (ResetDevice, BackupDevice, RecoveryDevice); it does not add any actual backup/recovery behavior. There is no security fix or vulnerability visible in this patch.

Lower-priorityfeat(core/prodtest) Update changelog.by kopecdav · 4900b36a · Mar 23, 2026 · 1 fileMessage 45 · ThinInformational 15Details
Commit message · kopecdav

feat(core/prodtest) Update changelog.

45/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
AI analysis · Informational 15/100

This commit is a documentation-only update to the production-test changelog. It records that an optional amplitude argument was added to a haptic (vibration) test command for two Trezor device models. There is no code change, no security fix, and no security-relevant behavior change.

Lower-priorityfeat(core/prodtest): Update haptic-test command with optional amplitude parameter.by kopecdav · bdc1930f · Mar 23, 2026 · 2 filesMessage 72 · AdequateInformational 15Details
Commit message · kopecdav

feat(core/prodtest): Update haptic-test command with optional amplitude parameter.

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

This commit updates a factory-testing command used only in Trezor's internal production-test firmware. It adds an optional amplitude parameter (0-100) to the haptic-test command so testers can vary vibration strength. There is no user-facing change, no normal wallet firmware impact, and no security relevance visible in the commit.

AI review queuedfeat(solana): SLIP-24 for native SOLby Ioan Bizău · e5af2a91 · Mar 23, 2026 · 6 filesMessage 57 · ThinLow 30Details
Commit message · Ioan Bizău

feat(solana): SLIP-24 for native SOL

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

This commit adds support for native Solana (SOL) payment requests using the SLIP-24 standard on Trezor hardware wallets. It extends existing token payment-request logic to also cover plain SOL transfers, and updates tests and UI fixtures accordingly. There is no direct evidence in the commit of a security vulnerability, but any change to payment verification and confirmation flows carries a low level of implementation risk.

Security candidatefeat(eckhart): scroll with inertiaby obrusvit · 4ef98f68 · Mar 23, 2026 · 2 filesMessage 80 · StrongInformational 17Details
Commit message · obrusvit

feat(eckhart): scroll with inertia

- support "coasting" in long vertical menus when a user lifts the finger
from the screen giving the scroll some velocity
- the inertia uses a simple friction-based model to calculate the speed

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
boot or update path
AI analysis · Informational 17/100

This commit adds a smoother, momentum-based scrolling effect to long menus on the Trezor T3W1 hardware wallet. It is a user-experience improvement, not a security fix. There is no indication it addresses a vulnerability or that an attacker could exploit it.

Lower-priorityfeat(core): add more robust USB configuration status for battery powered devicesby tychovrahe · 5d8f6fbe · Mar 23, 2026 · 1 fileMessage 62 · AdequateInformational 24Details
Commit message · tychovrahe

feat(core): add more robust USB configuration status for battery powered devices

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

This commit changes how a Trezor hardware wallet decides whether its USB connection is truly active, especially for battery-powered models. Previously, the code assumed the device was USB-powered and treated a suspended USB state as still 'configured' and ready. The patch makes that behavior depend on actual power-manager data and a remembered 'was configured' flag, so the device no longer falsely reports itself as ready when it may not be. This is a hardening/robustness improvement rather than a clear-cut fix for an exploitable vulnerability.

Security candidatefeat(core): allow `WebAuthnListResidentCredentials` paginationby Roman Zeyde · 1e319b3b · Mar 21, 2026 · 6 filesMessage 62 · AdequateInformational 21Details
Commit message · Roman Zeyde

feat(core): allow `WebAuthnListResidentCredentials` pagination

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
credential or privilege stateauthentication path
AI analysis · Informational 21/100

This commit adds pagination support for listing WebAuthn (FIDO2) resident credentials stored on a Trezor device. Previously, the device returned all credentials in one message, which could hit size limits. Now the host can request credentials in smaller batches. There is no obvious security bug in the change; it is a feature addition with a small, well-scoped protocol change.

Security candidatefeat(common): allow `WebAuthnListResidentCredentials` paginationby Roman Zeyde · 2cd2dda2 · Mar 21, 2026 · 9 filesMessage 62 · AdequateInformational 21Details
Commit message · Roman Zeyde

feat(common): allow `WebAuthnListResidentCredentials` pagination

[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
credential or privilege stateauthentication path
AI analysis · Informational 21/100

This commit only changes the protocol definitions (the message formats) used for listing WebAuthn resident credentials. It adds an optional batch size, a flag indicating whether more credentials are available, and a new acknowledgment message so the host can request the next batch. There is no actual implementation of the pagination logic in the firmware or host code in this commit, and nothing in the commit suggests a security vulnerability. It appears to be a normal feature addition to support paginated credential listing.

Lower-prioritychore(core): change default `TREZOR_MODEL` to `T3W1`by M1nd3r · a307f135 · Mar 20, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · M1nd3r

chore(core): change default `TREZOR_MODEL` to `T3W1`

[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 simply changes the default hardware model name used when building the Trezor firmware from 'T2T1' (Model T) to 'T3W1' (a newer model). It is a one-line build configuration change with no security relevance.

Lower-prioritytest(core): add unit tests for thp channelby M1nd3r · b4a593ef · Mar 20, 2026 · 3 filesMessage 67 · AdequateInformational 15Details
Commit message · M1nd3r

test(core): add unit tests for thp channel

[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 adds new unit tests for the Trezor Host Protocol (THP) channel code. It does not change any production firmware logic, so it cannot introduce a security vulnerability by itself. The tests verify that the channel correctly rejects or handles oversized messages.

Lower-prioritychore(core): improve handling of large messagesby M1nd3r · 15975901 · Mar 20, 2026 · 3 filesMessage 80 · StrongLow 32Details
Commit message · M1nd3r

chore(core): improve handling of large messages

- Handle failure to read big messages in a more controlled way.
- Raise `FirmwareError` when failing to get a write buffer.
- Remove duplicated constant from `writer.py`.

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

This commit hardens how the Trezor firmware handles oversized messages in its low-level communication layer. Previously, asking for a buffer larger than the fixed 8 KB limit would trigger an internal assertion failure (a hard crash). Now the code returns a failure indicator and, in the sending path, raises a controlled FirmwareError instead. This is a defensive improvement that prevents a class of potential denial-of-service or crash conditions when very large messages are received or sent, but it does not by itself fix a known exploitable vulnerability.

Lower-prioritytest(core): don't use Eckhart-specific homescreen in THP testsby Roman Zeyde · eefe1ec9 · Mar 20, 2026 · 2 filesMessage 72 · AdequateInformational 15Details
Commit message · Roman Zeyde

test(core): don't use Eckhart-specific homescreen in THP tests

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

This commit is a minor test-code cleanup. It removes a hard-coded Eckhart-specific JPEG homescreen path from a Trezor hardware wallet test suite and instead reuses a helper function that picks the correct image based on the device's screen layout type. There is no change to firmware behavior, no security fix, and no vulnerability.

AI review queuedfeat(core): introduce explicit manufacturing mode exitby tychovrahe · 29431ce7 · Mar 20, 2026 · 40 filesMessage 62 · AdequateLow 30Details
Commit message · tychovrahe

feat(core): introduce explicit manufacturing mode exit

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
second-pass: unusually broad change
AI analysis · Low 30/100

This commit adds a new factory/production tool command that permanently exits 'manufacturing mode' by writing and locking a special one-time-programmable memory block. It also reorganizes how each Trezor model defines its OTP memory layout and unit properties. The change is a feature addition for the production-test firmware, not a fix for a known exploitable bug in user-facing firmware. It does not appear to introduce an obvious vulnerability, but it changes security-relevant manufacturing state logic.

AI review queuedchore(deps): bump pyasn1 from 0.6.2 to 0.6.3by dependabot[bot] · 127a5ab8 · Mar 19, 2026 · 1 fileMessage 88 · StrongInformational 15Details
Commit message · dependabot[bot]

chore(deps): bump pyasn1 from 0.6.2 to 0.6.3

Bumps [pyasn1](https://github.com/pyasn1/pyasn1) from 0.6.2 to 0.6.3.
- [Release notes](https://github.com/pyasn1/pyasn1/releases)
- [Changelog](https://github.com/pyasn1/pyasn1/blob/main/CHANGES.rst)
- [Commits](https://github.com/pyasn1/pyasn1/compare/v0.6.2...v0.6.3)

---
updated-dependencies:
- dependency-name: pyasn1
dependency-version: 0.6.3
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 15/100

This is a routine automated dependency update by Dependabot that bumps the Python library pyasn1 from version 0.6.2 to 0.6.3 in the project's lock file. The commit itself only changes package metadata (download URLs and cryptographic hashes) and contains no code changes, bug fixes, or security claims. There is no evidence in the commit or supplied references that this update addresses a security issue.

Lower-prioritychore(tools): remove `fonttools` from `automatic_battery_tester`by M1nd3r · 48989d5a · Mar 19, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · M1nd3r

chore(tools): remove `fonttools` from `automatic_battery_tester`

[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
documentation-only discount
AI analysis · Informational 15/100

This commit removes a single unused dependency (fonttools) from a requirements file for an internal battery-testing tool. There is no indication of a security vulnerability or functional change to the Trezor firmware or wallet software.

Lower-prioritytests: download tropic emulator variantsby danielhladik-sl · 59553188 · Mar 19, 2026 · 3 filesMessage 78 · AdequateInformational 15Details
Commit message · danielhladik-sl

tests: download tropic emulator variants

Extend the emulator downloader to fetch tropic-capable variants for supported models.
Keep the local directory layout aligned with the S3 subpath structure and fix the shell wrapper's autoPatchelf invocation.

78/100 · AdequateMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Provides detailed explanatory context✓ Mentions testing or verification
AI analysis · Informational 15/100

This commit only changes test tooling. It extends a script that downloads Trezor firmware emulators for testing so it can also fetch a new 'tropic-enabled' variant for supported hardware models, and it fixes a shell quoting issue in a Nix helper command. There is no change to the actual device firmware, wallet logic, cryptography, or anything end users rely on for security.

Lower-priorityFix tropic emulator discovery and harden upload path handlingby danielhladik-sl · 3416e357 · Mar 19, 2026 · 3 filesMessage 50 · ThinInformational 21Details
Commit message · danielhladik-sl

Fix tropic emulator discovery and harden upload path handling

50/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
defensive validation
AI analysis · Informational 21/100

This commit fixes two internal tooling issues in Trezor's firmware test pipeline: it makes the test framework correctly find a new 'Tropic' emulator variant, and it sanitizes the Amazon S3 upload path so a leading or missing trailing slash does not accidentally change where emulator files are stored. There is no direct evidence this is a security vulnerability in the hardware wallet itself, but the S3 path normalization is a hardening measure that could prevent accidental mis-uploads in CI.

Lower-priorityci(release-emu): extract reusable core and legacy emulator build actionsby danielhladik-sl · 79d5b1f9 · Mar 19, 2026 · 3 filesMessage 85 · StrongInformational 15Details
Commit message · danielhladik-sl

ci(release-emu): extract reusable core and legacy emulator build actions

Add .github/actions/build-core-emu and .github/actions/build-legacy-emu as composite actions.

Refactor release emulator workflow jobs to call these actions instead of duplicating shell steps.

Keep existing outputs and deployment behavior (S3 upload; artifact upload for core builds).

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
documentation-only discount
AI analysis · Informational 15/100

This commit is a routine cleanup of the project's automated build scripts. It extracts repeated emulator build steps into reusable GitHub Actions components without changing what gets built, how it gets uploaded, or who can access it. There is no indication this affects the security of Trezor devices or their firmware.

Lower-prioritychore(core): update changelogs for 2.11.0 releaseby Roman Zeyde · 5523eb3f · Mar 19, 2026 · 6 filesMessage 72 · AdequateInformational 15Details
Commit message · Roman Zeyde

chore(core): update changelogs for 2.11.0 release

[no changelog]

(cherry picked from commit 4b11ef82bac8feddaa78e8ab1bdf9ff1bb81bdd3)

72/100 · AdequateMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body
Why it was queued
documentation-only discount
AI analysis · Informational 15/100

This commit only updates the version number shown at the top of six changelog files from 2.10.1 to 2.11.0. No code, no bug fixes, and no security changes are present.

Lower-prioritychore: update releases.jsonby Roman Zeyde · c863f9e4 · Mar 19, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · Roman Zeyde

chore: update releases.json

[no changelog]

(cherry picked from commit 764df17ae7827be6dfb19e545f2faa6685e96773)

62/100 · AdequateMessage clarity
✓ Descriptive subject✓ Uses a recognizable type or scope✓ Provides an explanatory body
AI analysis · Informational 15/100

This commit simply adds two new firmware version numbers to a release tracking file. It does not change any code, fix any bug, or alter device behavior. There is no security relevance visible in the change itself.