TZ
← All projectsTrezor

Trezor firmware

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

BitcoinHardware walletsNormal
Repository coverage

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

923security candidates311second-pass queue2662AI analyses
323commits · 30 days
552commits · 60 days
1337commits · 180 days
2644commits · 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
482Strong · 80–100
1323Adequate · 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 Zeyde579182576272
PrisionMike945994273
Andrew Kozlik712470265
obrusvit21376213164
Jakub Janků22919182
Martin Pastyřík24823173
cepetr19682196059
Ioan Bizău23076230059
M1nd3r20772207071
Lukas Bielesch846784067
Martin Milata17446174063
Analysis record

Published AI watches

Last scanned 8 minutes ago

Informational 15 AI analysisMessage 72 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

test(core/ethereum): EIP-7702 tuple nonce must be non-zero

This commit only changes test data and expected screen fingerprints for Trezor's Ethereum EIP-7702 signing tests. It replaces one test case that used a nonce of 0 with the same scenario using a nonce of 67, because the real-world protocol …

Test-only change with no production code modificationEIP-7702 tuple nonce constraint reflected in test dataExpected UI test hashes regenerated for renamed test vector
76cd2ed4by Roman Zeyde+28−282 files
No security note in commit
Informational 15 AI analysisMessage 85 · Strong
TZ TrezorTrezor firmware BitcoinHardware wallets

build(core): propagate emulator feature from projects

This commit is a build-system cleanup for the Trezor firmware's Rust code. It changes how the 'emulator' feature flag is passed between different software components. The firmware project no longer supports the emulator feature (which make…

5642074cby matejcik+5−44 files
No security note in commit
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
Repository ledger

Explore captured commits

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

Security candidatefeat(eckhart): tutorial power screenby Ioan Bizău · 0e625a94 · Sep 15, 2025 · 10 filesMessage 57 · ThinInformational 15Details
Commit message · Ioan Bizău

feat(eckhart): tutorial power screen

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

This commit adds a new tutorial screen to the Trezor hardware wallet's user interface that explains how to use the device's physical power button. It is a straightforward feature addition with no security relevance.

Lower-prioritychore(tests): update fixturesby Ioan Bizău · 06cbaf19 · Sep 15, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Ioan Bizău

chore(tests): update fixtures

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Uses a recognizable type or scope✓ Mentions testing or verification! No meaningful explanatory body
AI analysis · Informational 15/100

This commit only updates expected visual test hashes (fixtures) for the on-device tutorial feature in multiple languages. It does not change any firmware code, cryptographic logic, or user-facing behavior. There is no security issue present in this change.

Lower-prioritychore(tutorial): update copyby Ioan Bizău · 47a5f6fc · Sep 15, 2025 · 3 filesMessage 47 · ThinInformational 15Details
Commit message · Ioan Bizău

chore(tutorial): update copy

[no changelog]

47/100 · ThinMessage clarity
✓ Descriptive subject✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit only changes user-facing tutorial text strings in the Trezor firmware. It updates wording to clarify how users interact with on-screen buttons. There are no code logic changes, no security fixes, and no behavior changes.

Security candidatefeat(core): introduce device notification systemby tychovrahe · 1f9d3fa5 · Sep 15, 2025 · 17 filesMessage 57 · ThinLow 27Details
Commit message · tychovrahe

feat(core): introduce device notification system

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

This commit adds a new device-to-host notification feature to Trezor hardware wallets. When the device boots (either in normal firmware or bootloader mode), it can now send a small BLE notification to a connected host announcing that it has started. The change introduces a new BLE characteristic for notifications and a small kernel module to format and send the message. There is no direct evidence in the commit that this fixes a security bug; it appears to be a feature addition. However, the new code path involves copying untrusted-length data into a fixed-size buffer and allocating/freeing memory in an embedded BLE stack, which are places where future bugs could hide.

Security candidatefeat(vendor): disable traceback allocation in `PYOPT=1` buildsby Roman Zeyde · b5d9ecde · Sep 14, 2025 · 4 filesMessage 62 · AdequateLow 26Details
Commit message · Roman Zeyde

feat(vendor): disable traceback allocation in `PYOPT=1` builds

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

This commit changes the Trezor firmware's embedded MicroPython configuration so that detailed error tracebacks are no longer stored in optimized (PYOPT=1) builds. The stated goal is to avoid allocating traceback data in release builds, which can save memory and reduce information exposure if an error occurs. There is no direct evidence in the commit that this fixes an active security vulnerability, but it is a defensive hardening measure.

Lower-priorityfix(core): restart BLE advertising after suspend/resumeby tychovrahe · f7b6e45d · Sep 12, 2025 · 2 filesMessage 62 · AdequateInformational 22Details
Commit message · tychovrahe

fix(core): restart BLE advertising after suspend/resume

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

This commit fixes a bug in the Trezor hardware wallet's Bluetooth handling. When the device went to sleep and woke back up, two internal flags that control whether Bluetooth advertising should restart were not saved and restored. As a result, after suspend/resume the device might not resume broadcasting its Bluetooth signal correctly, which could break wireless pairing/reconnection. The patch simply saves and restores those two flags across sleep/wake cycles.

Lower-priorityfix(core): wait for nRF to boot before deciding to start advertisingby tychovrahe · 78fbae71 · Sep 12, 2025 · 4 filesMessage 62 · AdequateLow 35Details
Commit message · tychovrahe

fix(core): wait for nRF to boot before deciding to start advertising

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

This commit fixes a timing issue during startup of the Trezor hardware wallet's Bluetooth (BLE) subsystem. Previously, the firmware might decide whether to start broadcasting Bluetooth advertisements before the wireless chip (nRF) had finished booting. The fix adds a new check that waits up to 5 seconds for the BLE subsystem to report it is fully started before making that decision. If the subsystem is not ready, the device may skip advertising for bonded peers. This is a defensive fix that could prevent Bluetooth pairing/connectivity problems or unexpected behavior at boot, but the commit itself does not describe a security vulnerability.

Security candidatefix(core): switch off BLE on power offby tychovrahe · 76869636 · Sep 12, 2025 · 1 fileMessage 57 · ThinLow 35Details
Commit message · tychovrahe

fix(core): switch off BLE on power off

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

This bootloader patch makes the device explicitly turn off its Bluetooth Low Energy (BLE) radio when the hardware receives a power-off command. Without this fix, the BLE chip might stay on during shutdown, which could waste battery, cause unexpected radio behavior, or keep the device discoverable longer than intended. The change is defensive and improves shutdown hygiene rather than fixing an obvious remote attack.

Lower-prioritytest(core): run `test_autolock_does_not_interrupt_preauthorized` on T3W1by Roman Zeyde · 7c17c49a · Sep 12, 2025 · 2 filesMessage 72 · AdequateInformational 15Details
Commit message · Roman Zeyde

test(core): run `test_autolock_does_not_interrupt_preauthorized` on T3W1

[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 only re-enables an existing automated test for the T3W1 hardware model and records the expected screen snapshots for that test. It does not change any firmware code that runs on the device, so it cannot introduce a security vulnerability or fix one.

Lower-prioritychore(core): update translated UI fixturesby Roman Zeyde · ed095434 · Sep 12, 2025 · 1 fileMessage 88 · StrongInformational 15Details
Commit message · Roman Zeyde

chore(core): update translated UI fixtures

Should have been done in https://github.com/trezor/trezor-firmware/pull/5750/commits/3158294d16957bd3ef316de60d9bd819920f8147.

[no changelog]

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

This commit only updates expected screenshot fingerprints (hashes) in a test fixture file. It does not change any actual device code, cryptographic logic, or user-facing behavior. It is a test-maintenance follow-up with no security relevance.

Security candidatefeat(translations): allow dev-signed translation blobs in non-production buildsby Suyash Shandilya · f51a8fe8 · Sep 12, 2025 · 6 filesMessage 95 · StrongLow 25Details
Commit message · Suyash Shandilya

feat(translations): allow dev-signed translation blobs in non-production builds

Changed the feature lock on accepting dev signed translation blobs from `debug` to `dev_keys` (new). This is enabled for all non-production builds so QA can test translations even on production ready, unsigned builds.
[no changelog]

95/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Mentions testing or verification
Why it was queued
boot or update path
AI analysis · Low 25/100

This change lets non-production firmware builds accept translation files signed with development keys, not just official production keys. It is meant to help QA test translations on unsigned builds. Production builds still require official signatures, so an end-user running official firmware is not directly affected. The main risk is that a misconfigured build could accidentally ship with the relaxed setting enabled.

Lower-priorityfeat(python): BLE support via bleakby Martin Milata · 355d17b4 · Sep 11, 2025 · 6 filesMessage 72 · AdequateInformational 15Details
Commit message · Martin Milata

feat(python): BLE support via bleak

Co-authored-by: tychovrahe <brunam@seznam.cz>

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 adds Bluetooth Low Energy (BLE) support to the Trezor Python library so it can discover and connect to Trezor hardware wallets over Bluetooth. It is a feature addition, not a security fix. The new code runs BLE operations in a separate process and communicates with it through a pipe. There are no obvious severe vulnerabilities in the diff, but the code introduces new attack surface: it trusts nearby BLE devices advertising a specific service UUID, performs Bluetooth pairing, and forwards raw USB-like protocol chunks over BLE. Because this is brand-new code, its security posture is unproven and partial (for example, chunk-size validation is only logged, not enforced).

Lower-priorityfix(python): enable BLE only if TREZOR_BLE=1 or --ble givenby Martin Milata · 5cef52be · Sep 11, 2025 · 3 filesMessage 62 · AdequateLow 29Details
Commit message · Martin Milata

fix(python): enable BLE only if TREZOR_BLE=1 or --ble given

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

This commit changes the Trezor Python library so that Bluetooth Low Energy (BLE) device support is only enabled when the user explicitly sets an environment variable or passes a command-line flag. Previously, BLE transport was always included in device discovery. The change is a defensive hardening measure, not a fix for a known exploit.

AI review queuedbuild(core): uv: add bleak dependencyby Martin Milata · f24eb774 · Sep 11, 2025 · 2 filesMessage 57 · ThinInformational 15Details
Commit message · Martin Milata

build(core): uv: add bleak dependency

[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 only adds a new Python library called 'bleak' to the project's dependency list and lock file. Bleak is a popular, legitimate library used for Bluetooth Low Energy communication. There is no actual code change, no vulnerability fix, and no indication of malicious intent in the commit itself. It is a routine build/dependency update.

Security candidatefeat(core/eckhart): Device menu refreshby Lukas Bielesch · 092e207c · Sep 11, 2025 · 12 filesMessage 80 · StrongInformational 17Details
Commit message · Lukas Bielesch

feat(core/eckhart): Device menu refresh

- New refresh device menu result used to refresh the menu after BLE connection change
- Use static submenus in device menu for possibility to refresh to a particular menu screen
- Add init screen param to device_menu FwUI function. After each device menu action, update the init screen or break out of the menu loop
- Static back navigation, the previous design assumed the initial screen was always the root.
- Don't require confirmation for toggle buttons
[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 17/100

This commit refreshes the on-device settings menu for the Trezor Safe 7 (Eckhart layout). It lets the menu restart on a specific submenu after actions like disconnecting a Bluetooth device or toggling haptics/LED, and removes the confirmation prompt for some toggle buttons. The changes are almost entirely user-interface plumbing; there is no obvious security bug, but the new loop and direct hardware calls deserve a quick sanity check.

Security candidaterefactor(core/eckhart): device menu screenby Lukas Bielesch · edabe785 · Sep 11, 2025 · 8 filesMessage 80 · StrongInformational 15Details
Commit message · Lukas Bielesch

refactor(core/eckhart): device menu screen

- add builder functions for menu items
- VecExt trait for menu items
- use u8 instead of usize where possible
[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 routine internal code cleanup for the Trezor firmware's on-device menu screen. It changes some internal number types from usize to u8, adds helper functions for building menu items, and makes the code more readable. There is no indication of a security fix or vulnerability being addressed.

Security candidatefix(core): use translation strings instead of literalsby Roman Zeyde · 5c16f75e · Sep 11, 2025 · 15 filesMessage 62 · AdequateInformational 15Details
Commit message · Roman Zeyde

fix(core): use translation strings instead of literals

[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 replaces hard-coded English text strings in the Bluetooth pairing user interface with references to the device's translation system. It does not change what the device does, only how the text is loaded, so it can be translated into other languages later. There is no security bug being fixed here.

Security candidatefeat(core/bootloader): add LED effect to bootloader pairing workflow.by kopecdav · c5bb14ec · Sep 11, 2025 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · kopecdav

feat(core/bootloader): add LED effect to bootloader pairing workflow.

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

This commit adds colored LED lighting effects during the Bluetooth pairing process in the Trezor bootloader. It is purely a user-interface change to give visual feedback when the device is in pairing mode. There is no indication it fixes or introduces any security vulnerability.

Security candidatefeat(core/bootloader): add red LED to workflow_wipe_device.by kopecdav · 9de30971 · Sep 11, 2025 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · kopecdav

feat(core/bootloader): add red LED to workflow_wipe_device.

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

This change simply turns the device's LED red while the user is confirming a factory wipe, then turns it off afterward. It is a user-experience/visual indicator change in the bootloader and does not alter security logic, data handling, or access controls.

Security candidatefeat(core) add LED charging effect in hibernation.by kopecdav · dd1d8df3 · Sep 11, 2025 · 1 fileMessage 50 · ThinInformational 15Details
Commit message · kopecdav

feat(core) add LED charging effect in hibernation.

[no changelog]

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

This commit changes the Trezor bootloader's hibernation charging indicator from a solid blue LED to a pulsing 'charging' LED effect. There is no security-relevant change visible in the diff. It is a user-experience/visual feature.

Lower-priorityfeat(core): add rgb_led_effect_get_type function.by kopecdav · d530f12c · Sep 11, 2025 · 7 filesMessage 57 · ThinInformational 15Details
Commit message · kopecdav

feat(core): add rgb_led_effect_get_type function.

[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 adds a new function that lets the firmware ask the RGB LED driver what lighting effect is currently running (for example, pairing or charging). It also adds a special 'none' value returned when no effect is active and tightens a bounds check so invalid negative effect IDs are rejected. There is no security-relevant change here; it is a straightforward feature addition.

Lower-priorityfeat(core): swap charging efect phases to start 800ms in OFF.by kopecdav · f8128a36 · Sep 11, 2025 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · kopecdav

feat(core): swap charging efect phases to start 800ms in OFF.

[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 visual pattern of the RGB LED charging indicator on Trezor hardware wallets. It swaps the order of the charging animation phases so the LED stays off for the first 800 milliseconds, then fades to yellow, holds yellow, fades off, and repeats. There is no security-relevant change here—only the timing and visual appearance of a status light.

Lower-priorityfix(core): fix rgb_led_effect_ongoing function in unix.by kopecdav · 6625201b · Sep 11, 2025 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · kopecdav

fix(core): fix rgb_led_effect_ongoing function in unix.

[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 tiny code cleanup in Trezor's firmware emulator for Unix. It renames one internal function and adds a stub function that always reports 'no LED effect active.' It does not change behavior on real Trezor hardware and does not fix or introduce any security issue.

AI review queuedfix(core): use translation strings for THP layoutsby Roman Zeyde · e68bc306 · Sep 11, 2025 · 7 filesMessage 62 · AdequateInformational 15Details
Commit message · Roman Zeyde

fix(core): use translation strings for THP layouts

[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
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Informational 15/100

This commit replaces hard-coded English text in Trezor's on-screen pairing and connection prompts with proper translation keys. The visible messages stay the same in English, but the firmware can now display them in other languages. There is no security bug being fixed here; it is a routine internationalization cleanup.

Lower-priorityfeat(core): display recent THP `host_name` instead of BLE MAC addressby Roman Zeyde · 8ab6fb7b · Sep 11, 2025 · 3 filesMessage 77 · AdequateInformational 18Details
Commit message · Roman Zeyde

feat(core): display recent THP `host_name` instead of BLE MAC address

THP `host_name` will be cached during first pairing using its MAC address.

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

This commit is a user-experience improvement for Trezor hardware wallets that connect over Bluetooth. It makes the device menu show a friendly computer name (like "Alice's MacBook") instead of a raw Bluetooth MAC address for recently paired devices. The change also stores that friendly name in device flash memory the first time pairing happens. There is no direct security bug visible in the diff, but it slightly increases the amount of untrusted data (the host name supplied by the connecting computer) that is saved and later displayed on the device screen.