TZ
← All projectsTrezor

Trezor firmware

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

BitcoinHardware walletsNormal
Repository coverage

2672 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
322commits · 30 days
551commits · 60 days
1336commits · 180 days
2643commits · 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
481Strong · 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 Zeyde578182576272
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 56 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.

Lower-priorityfeat(core): the regulation (interpolation of TPS61062 steps) has been added.by bleska · 04ae3b63 · Oct 22, 2025 · 1 fileMessage 62 · AdequateInformational 11Details
Commit message · bleska

feat(core): the regulation (interpolation of TPS61062 steps) has been added.

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

This commit updates the backlight driver for a Trezor hardware wallet display controller. It adds smoother brightness levels by blending between the hardware's 32 brightness steps, and it improves error checking during initialization and shutdown. There is no clear security vulnerability here; it reads as a normal hardware-driver improvement.

Lower-priorityfeat(core): implementing reviews' findings and cleaning up before merging into main.by bleska · 05fb85a3 · Oct 22, 2025 · 1 fileMessage 62 · AdequateInformational 20Details
Commit message · bleska

feat(core): implementing reviews' findings and cleaning up before merging into main.

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

This commit is a cleanup and hardening pass on the backlight driver for Trezor hardware wallets. It improves error handling, removes debug code, fixes a buffer-index bug in a DMA safety check, and adds memory-protection reconfiguration around the interrupt handler. The changes are defensive and reduce the chance of driver misbehavior, but they do not appear to fix a known exploitable security vulnerability in user-facing software.

Lower-priorityrefactor(core): the "int backlight_level" member of struct "power_save_wakeup_params_t" has been refactored to "uin8_t data type" in order to ensure consistency throughout the whole codebase.by bleska · a3fe5888 · Oct 22, 2025 · 1 fileMessage 74 · AdequateInformational 15Details
Commit message · bleska

refactor(core): the "int backlight_level" member of struct "power_save_wakeup_params_t" has been refactored to "uin8_t data type" in order to ensure consistency throughout the whole codebase.

[no changelog]

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

This is a minor code cleanup that changes a single variable type from a signed integer to an unsigned 8-bit integer. It does not fix a security bug and does not introduce any obvious security risk. The change is purely for internal consistency in how backlight brightness levels are represented.

Lower-prioritychore(python): tweak to optional requirementsby matejcik · 76bc9f62 · Oct 20, 2025 · 2 filesMessage 57 · ThinInformational 15Details
Commit message · matejcik

chore(python): tweak to optional requirements

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 is a routine packaging/documentation update. It renames an optional Python dependency group from 'bleak' to 'ble' and updates the README to document Bluetooth installation for newer Trezor models. There is no security-relevant code change.

Lower-prioritychore(python): bump version to 0.20.0-dev0by matejcik · 2410b3c3 · Oct 20, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · matejcik

chore(python): bump version to 0.20.0-dev0

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 changes a version number in a Python package configuration file from 0.14.0 to 0.20.0-dev0. It is a routine development version bump with no security relevance.

AI review queueddocs(python): changelog for 0.20.0-dev0by matejcik · 9faa614a · Oct 20, 2025 · 22 filesMessage 57 · ThinInformational 15Details
Commit message · matejcik

docs(python): changelog for 0.20.0-dev0

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: unusually broad change
AI analysis · Informational 15/100

This commit is purely a documentation update: it gathers individual changelog fragments into the main CHANGELOG.md file for the Python trezorlib package version 0.20.0-dev0. No program code was changed, so it cannot by itself introduce or fix a security vulnerability.

Security candidatechore: update bootloader changelogsby obrusvit · 35c62018 · Oct 20, 2025 · 9 filesMessage 47 · ThinInformational 15Details
Commit message · obrusvit

chore: update bootloader changelogs

[no changelog]

47/100 · ThinMessage clarity
✓ Descriptive subject✓ 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 only reorganizes the bootloader's written changelog. It deletes small draft files and copies their text into the main CHANGELOG.md, adding version numbers and pull-request links. No program code was changed, so this cannot introduce or fix a security bug by itself.

Lower-prioritychore: update prodtest changelogsby obrusvit · 9b84b95e · Oct 20, 2025 · 17 filesMessage 62 · AdequateInformational 15Details
Commit message · obrusvit

chore: update prodtest changelogs

- changelogs haven't been cleared out for the recent internal releases

[no changelog]

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

This commit only updates the production-test firmware changelog. It deletes individual changelog fragment files and rolls their text into the main CHANGELOG.md file, adding release sections and pull-request links. No program code was changed.

Lower-priorityfix(core): preserve THP-BLE name cache across reset/recoveryby Martin Milata · 3ea2dc46 · Oct 20, 2025 · 1 fileMessage 62 · AdequateLow 26Details
Commit message · Martin Milata

fix(core): preserve THP-BLE name cache across reset/recovery

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

This commit fixes a minor consistency bug in Trezor's storage reset logic. When resetting or recovering a device, the code now preserves a cache of paired Bluetooth Low Energy (BLE) device names alongside the BLE bonding data and Trezor-Host Protocol (THP) credentials. Previously, this name cache could be wiped while the underlying bonds/credentials were kept, which could cause confusion or minor pairing issues but does not appear to be a security vulnerability.

Lower-priorityrefactor(core): rename pairing_cache to pairing_namesby Martin Milata · 675d107e · Oct 20, 2025 · 3 filesMessage 77 · AdequateInformational 15Details
Commit message · Martin Milata

refactor(core): rename pairing_cache to pairing_names

In the context of storage what we call cache does not persists across
reboots but this structure does.

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

This commit is a simple rename-only code cleanup. It changes internal names like 'paired_cache' to 'paired_names' and updates comments to clarify that the data is stored in flash and survives reboots. No behavior, logic, or security properties change.

Lower-priorityfix(core): while trying to increase the backlight brightness at T3W1 using the slider, it lags. The reason is implemented wait for making sure that the display gets refreshed during fade out/fade in transitions. The current implementation of the condition limits the wait only to such cases and not tby bleska · 4aa242ba · Oct 20, 2025 · 1 fileMessage 77 · AdequateInformational 18Details
Commit message · bleska

fix(core): while trying to increase the backlight brightness at T3W1 using the slider, it lags. The reason is implemented wait for making sure that the display gets refreshed during fade out/fade in transitions. The current implementation of the condition limits the wait only to such cases and not to all when the brightness needs to be increased.

[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 is a one-line bugfix for the T3W1 hardware wallet's screen brightness slider. Previously, increasing brightness at all caused an unnecessary wait for the display to refresh, making the slider feel laggy. The fix narrows that wait so it only happens when turning the backlight on from fully off (e.g., during fade-in/fade-out transitions), not every time the brightness is raised. There is no security issue here.

Lower-priorityfix(core): disable unused THP pairing methodsby M1nd3r · 9c8b1561 · Oct 20, 2025 · 2 filesMessage 57 · ThinLow 25Details
Commit message · M1nd3r

fix(core): disable unused THP pairing methods

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

This commit removes two unused Bluetooth pairing methods (QR code and NFC) from the default list in Trezor's new 'THP' transport layer, leaving only the code-entry method active in normal builds. In debug/test builds, the removed methods are still available so internal tests can keep running. The change is framed as a cleanup of unfinished features, not as a response to a known security bug.

Lower-priorityfix(core): increasing the buffer length in "dbg_console_vprintf()" function from 80B to 160B. It will improve the debug messages' usage.by bleska · b3cd2f83 · Oct 20, 2025 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · bleska

fix(core): increasing the buffer length in "dbg_console_vprintf()" function from 80B to 160B. It will improve the debug messages' usage.

[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 doubles the size of a temporary text buffer used for debug-only console messages in the Trezor firmware. There is no security issue here: the code already safely limits how much data is written, and the change only makes longer debug messages fit without being cut off.

Lower-priorityfix(core): fix usb driver event signallingby cepetr · 050e4ecd · Oct 20, 2025 · 2 filesMessage 57 · ThinInformational 20Details
Commit message · cepetr

fix(core): fix usb driver event signalling

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

This commit fixes a minor USB status display bug in Trezor hardware wallets. The device could briefly show a false 'NO USB CONNECTION' warning on its home screen due to timing glitches when reading the USB connection state. The fix adds proper interrupt protection around shared timing data and refreshes the connection timestamp more frequently. There is no direct evidence this is a security vulnerability.

Lower-prioritychore(core): add error string to static_assertby matejcik · cb4d6f2a · Oct 20, 2025 · 1 fileMessage 72 · AdequateInformational 15Details
Commit message · matejcik

chore(core): add error string to static_assert

to fix C23 extension warning in clang 21

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 is a trivial one-line change that adds a human-readable error message to a compile-time size check. It does not change any logic, behavior, or security boundary. It only suppresses a compiler warning in newer versions of clang.

AI review queuedchore(test): add payment requests test case used in connect-e2e tests [no changelog]by M1nd3r · 27fa2a17 · Oct 18, 2025 · 3 filesMessage 87 · StrongInformational 15Details
Commit message · M1nd3r

chore(test): add payment requests test case used in connect-e2e tests
[no changelog]

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

This commit only adds a new test case and updates expected test screenshots. It does not change the actual Trezor firmware code that users run. The new test verifies that a payment request without a memo or nonce behaves as expected and does not trigger a nonce-reuse error. There is no security fix or vulnerability here.

Security candidatefix(core): text color in warning action bar buttonby obrusvit · 5bc2179f · Oct 17, 2025 · 2 filesMessage 62 · AdequateInformational 15Details
Commit message · obrusvit

fix(core): text color in warning action bar button

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

This commit is a purely cosmetic UI fix. It changes the text and icon color of a warning-style action-bar button from bright orange to a dimmed orange when the button is active/pressed. The large number of changed lines are just updated test screenshot hashes (fixtures) reflecting the new color, not functional code changes. There is no security relevance.

Security candidatefix(core/eckhart): synchronize LED and background in tutorialby Roman Zeyde · a1a83b1e · Oct 17, 2025 · 2 filesMessage 62 · AdequateInformational 19Details
Commit message · Roman Zeyde

fix(core/eckhart): synchronize LED and background in tutorial

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

This commit fixes a visual timing issue in the setup tutorial on the Trezor T3W1 hardware wallet. Previously, the on-screen background color and the device's RGB LED could change at slightly different moments because they were driven by separate timers. The patch removes the separate LED timer and ties the LED color change directly to the same progress check used for the on-screen loader/background, so they stay synchronized. There is no indication this was a security vulnerability.

Lower-priorityfeat(core/eckhart): two-piece indeterminate loaderby obrusvit · d508cf3a · Oct 17, 2025 · 2 filesMessage 62 · AdequateInformational 15Details
Commit message · obrusvit

feat(core/eckhart): two-piece indeterminate loader

[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 is a purely cosmetic user-interface change for the Trezor hardware wallet's 'Eckhart' layout. It changes the indeterminate loading spinner from a single moving piece to two moving pieces on opposite sides of the screen. The only code change is in the loader drawing logic, and the rest of the diff is just updated test screenshot hashes (fixtures) that reflect the new visual appearance. There is no security-relevant change.

Security candidatefix(core): avoid LED blinking on event loop restartby Roman Zeyde · 88e9188f · Oct 17, 2025 · 9 filesMessage 85 · StrongInformational 18Details
Commit message · Roman Zeyde

fix(core): avoid LED blinking on event loop restart

Setting the LED color is now set as part of the rendering process.

If a component doesn't set the LED, it will be automatically turned off.
This way, we don't need to turn it off at `Homescreen::drop()` - which
was causing blinking during event loop restarts.

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

This commit fixes a cosmetic bug where the RGB LED on the Trezor T3W1 would briefly blink or flicker when the device's user-interface event loop restarted (for example, when leaving the homescreen). The fix moves LED color control into the normal screen-drawing pipeline so the LED state is set consistently during rendering rather than being turned off when a screen object is destroyed. There is no indication this is a security vulnerability.

Lower-prioritychore(core): change copy to Pair & Connectby obrusvit · c8daac2c · Oct 17, 2025 · 4 filesMessage 57 · ThinInformational 15Details
Commit message · obrusvit

chore(core): change copy to Pair & Connect

[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 changes the on-screen text label from "Pair & connect" to "Pair & Connect" (capitalizing the C). It also updates the corresponding test snapshot hashes because the displayed text changed. There is no code behavior change and no security relevance.

Security candidatechore: add nrf keys to ModelKeys [no changelog]by M1nd3r · c74ba894 · Oct 17, 2025 · 1 fileMessage 72 · AdequateInformational 15Details
Commit message · M1nd3r

chore: add nrf keys to ModelKeys
[no changelog]

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

This commit adds public verification keys for the nRF wireless/Bluetooth chip to the Trezor library's list of known device model keys. It is a routine data update with no code logic change and no indication of a security vulnerability.

Security candidaterefactor(core): proper raise_if_not_confirmed behaviorby matejcik · 2b4bf74b · Oct 17, 2025 · 13 filesMessage 97 · StrongLow 45Details
Commit message · matejcik

refactor(core): proper raise_if_not_confirmed behavior

bd501ad8a3 renamed `raise_if_not_confirmed` to `raise_if_cancelled`,
because the function did in fact only raise when a CANCELLED result was
returned.

In practice, we want "raise if NOT CONFIRMED" behavior to cover other
unexpected results, so this PR reverts the name change and implements
the desired behavior.

[no changelog]

97/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Explains rationale or failure mode
Why it was queued
cryptography-sensitive path
AI analysis · Low 45/100

This commit renames a helper function back from `raise_if_cancelled` to `raise_if_not_confirmed` and changes its behavior. Previously, the code only raised an error when the user explicitly cancelled. Now it also raises an error if the UI returns any unexpected result other than a confirmed success. This is a defensive hardening change across many on-device confirmation screens, intended to prevent the device from silently continuing when something other than a clear confirmation happens.

Security candidatefix(core): wipe BLE bonds after entering wipe codeby tychovrahe · 014e3a81 · Oct 17, 2025 · 15 filesMessage 62 · AdequateModerate 58Details
Commit message · tychovrahe

fix(core): wipe BLE bonds after entering wipe code

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 · Moderate 58/100

This update fixes a bug in the Trezor hardware wallet where entering a 'wipe code' (a special PIN that securely erases the device) did not remove saved Bluetooth pairings on the T3W1 model. After the fix, the device reboots into a dedicated wipe routine in the bootloader that both erases storage and clears Bluetooth bonding information, preventing a wiped device from remaining paired to a previously trusted phone or computer.

Security candidatefix(core): adjust random part of BLE name during pairingby tychovrahe · dc7deec3 · Oct 17, 2025 · 4 filesMessage 67 · AdequateInformational 23Details
Commit message · tychovrahe

fix(core): adjust random part of BLE name during pairing

[no changelog]

67/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Names security-relevant behavior explicitly! No meaningful explanatory body
Why it was queued
boot or update path
AI analysis · Informational 23/100

This commit changes how Trezor T3W1 devices generate their temporary Bluetooth (BLE) name during pairing. Previously the name contained three random characters from a pool of 26 letters plus 10 digits. Now it uses a digit-letter-digit pattern. This reduces the number of possible names from 36×36×36 (about 46,656) to 10×26×10 (2,600), making it easier for a nearby attacker to guess or collide with the advertised name during pairing. The change appears intentional to make the displayed name easier to read or type, but it weakens the randomness that helps distinguish devices.