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

AI review queuedchore: make genby obrusvit · 3ef747bc · Nov 4, 2025 · 1 fileMessage 40 · ThinInformational 15Details
Commit message · obrusvit

chore: make gen

[no changelog]

40/100 · ThinMessage clarity
✓ Subject identifies a change✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
signing or wallet pathtranslation-only discountsecond-pass: security-sensitive path
AI analysis · Informational 15/100

This commit only updates a generated metadata file (signatures.json) that records the latest approved translation bundle for the Trezor device. It changes a timestamp, commit hash, and Merkle root pointer. There is no code change and no security-relevant behavior change visible in the diff.

Lower-prioritychore(core): PT translations fixesby Ioan Bizău · d6c7cf38 · Nov 4, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Ioan Bizău

chore(core): PT translations fixes

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

This commit only updates Portuguese language translations in a JSON file. It shortens or rephrases text strings for different Trezor device models (Bolt, Caesar, Delizia, Eckhart) so they fit on screen better. There are no code changes and no security impact.

Security candidatechore(eckhart): make warning button multi lineby Ioan Bizău · 4231c563 · Nov 4, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Ioan Bizău

chore(eckhart): make warning button multi line

[no changelog]

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

This is a trivial user-interface layout change. It switches one button in a warning screen from a single-line text button to a multi-line text button so longer button labels can wrap. There is no security relevance in the code change itself.

Lower-prioritychore: update uv.lockby Roman Zeyde · 5f1b1e11 · Nov 3, 2025 · 1 fileMessage 40 · ThinInformational 15Details
Commit message · Roman Zeyde

chore: update uv.lock

[no changelog]

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

This is a routine dependency lock-file update. It changes the recorded version of Trezor's own Python package from 0.14.0 to a development version 0.20.0.dev0, renames an optional Bluetooth extra from 'bleak' to 'ble', and adds pre-built Windows wheel files for Python 3.14 for several supporting libraries. There is no indication of a security fix or vulnerability.

AI review queuedtest(ethereum): Add fixture for an unkown function callby PrisionMike · b4cb9951 · Nov 3, 2025 · 2 filesMessage 95 · StrongInformational 15Details
Commit message · PrisionMike

test(ethereum): Add fixture for an unkown function call

Every unkown call should not have an unkown contract address screen lest users get used to ignoring the warning screens.
[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
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Informational 15/100

This commit only adds a new test case for Ethereum transactions. It does not change any production code, so it cannot directly introduce or fix a security vulnerability. The test checks how the device displays a transaction when the called function, token, and blockchain are all unknown. The commit message hints at a user-interface design concern—avoiding unnecessary warning screens so users don't learn to ignore them—but that concern is not implemented in this change.

Lower-prioritychore(changelog): added changelog 6032by PrisionMike · f3e407a9 · Nov 3, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · PrisionMike

chore(changelog): added changelog 6032

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

This commit only adds a one-line changelog note saying a warning screen was removed for some non-ERC20 contract calls. It contains no code changes, so it cannot by itself introduce or fix a security vulnerability. The actual functional change is in some other commit that is not supplied here.

Security candidatefix(eth): Hardening ERC-20 detection logicby PrisionMike · 5f7e6a2d · Nov 3, 2025 · 1 fileMessage 85 · StrongModerate 63Details
Commit message · PrisionMike

fix(eth): Hardening ERC-20 detection logic

Previously, we were checking just the 'shape' and size of the contract to determine if it's an ERC-20 contract call. We now directly look at the function signature, if it is familiar. Changed function name for clarity as it handles non-ERC-20 contracts as well.
[no changelog]

85/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Names security-relevant behavior explicitly
Why it was queued
signing boundarydefensive validationsigning or wallet path
AI analysis · Moderate 63/100

This commit tightens how a Trezor hardware wallet decides whether an Ethereum transaction is a standard ERC-20 token transfer/approval. Previously the code guessed based on the transaction's overall shape and size; now it also checks the actual function signature bytes. The change removes an assumption that any matching transaction must be either a transfer or approval, which could have led the device to display a token-style confirmation for contract calls that only happened to look similar. There is no public claim that this was exploited, and the commit does not label itself as a security fix.

Security candidatechore(core): update T3W1 dev bootloaderby tychovrahe · 79471a5b · Nov 3, 2025 · 2 filesMessage 57 · ThinInformational 3Details
Commit message · tychovrahe

chore(core): update T3W1 dev bootloader

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

This commit simply swaps in a newer pre-built bootloader binary for the T3W1 hardware model used in QA/testing, and updates the matching hash list so the firmware recognizes it. There is no source-code change, no description of a security fix, and no public reference linking it to a vulnerability.

Lower-priorityfix(core/embed): fix variable nameby Ondřej Vejpustek · 012f524a · Oct 31, 2025 · 1 fileMessage 57 · ThinModerate 57Details
Commit message · Ondřej Vejpustek

fix(core/embed): fix variable name

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

This commit fixes a typo in the code that manages the Optiga secure chip's metadata. The code was writing a value to the wrong variable name (`metadata_locked` instead of `metadata`). Because the intended `metadata` structure was not fully initialized, the device might have compared stored secure-chip settings against an incomplete or incorrect expected value. In the worst case this could affect whether the device correctly detects that the Optiga chip is configured, which is part of the hardware-security boundary protecting secrets. The change is a one-line variable-name correction and is marked [no changelog], so the vendor does not describe it as a security fix.

Security candidatefix(core): remove "Go to bootloader" item from non-debug buildsby Roman Zeyde · 23d1fb32 · Oct 31, 2025 · 1 fileMessage 62 · AdequateLow 36Details
Commit message · Roman Zeyde

fix(core): remove "Go to bootloader" item from non-debug builds

[no changelog]

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

This commit removes a 'Go to bootloader' menu option from normal user builds of the Trezor hardware wallet, keeping it only in debug/developer builds. The change prevents an ordinary user from intentionally or accidentally rebooting the device into bootloader mode through the on-device menu. While entering bootloader mode is a normal part of firmware updates, exposing it in production builds could let a local attacker with brief physical access force the device into a state where they could attempt to install modified firmware or interfere with an update. The patch is narrow: it only hides the menu item behind a debug-only compile flag, so the underlying bootloader entry mechanism still exists for legitimate update workflows.

Lower-priorityfix(core/eckhart): correct res confirm_with_menuby obrusvit · ad061624 · Oct 31, 2025 · 1 fileMessage 72 · AdequateLow 44Details
Commit message · obrusvit

fix(core/eckhart): correct res confirm_with_menu

- if we do not use extra menu item which should return `INFO`, we should
correctly return `CANCELLED`

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

This commit fixes a UI flow bug in the Trezor hardware wallet's 'Eckhart' layout. Previously, when a user opened a menu during a confirmation screen and chose an item, the wrong internal signal could be sent: the first menu item was always treated as 'Info' and the second as 'Cancel', even if the menu only contained a cancel option. The fix tracks which menu items actually exist and maps the user's selection to the correct result (Info or Cancel).

Lower-priorityfix(core): add missing `get_serial_number` handlerby Roman Zeyde · 5c33f760 · Oct 31, 2025 · 7 filesMessage 77 · AdequateInformational 16Details
Commit message · Roman Zeyde

fix(core): add missing `get_serial_number` handler

Also, correct the `exclude` expression at `SConscript.unix`.

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

This commit fixes a build configuration issue for the Trezor T3W1 hardware wallet. The device supports reading a unique serial number, but the build system was not correctly advertising that capability. As a result, the Python module that handles the 'get serial number' command was accidentally excluded from the firmware image, so the feature would not work at runtime. The patch adds the missing capability flag for the T3W1 (emulator and three hardware revisions) and fixes a related list-concatenation bug in the build script that could have caused other feature exclusions to behave incorrectly. There is no direct evidence in the commit of a security vulnerability; it reads as a functionality/availability fix.

Security candidatechore(core): shorten `Regulatory certification` stringby Roman Zeyde · de88c778 · Oct 31, 2025 · 16 filesMessage 62 · AdequateInformational 15Details
Commit message · Roman Zeyde

chore(core): shorten `Regulatory certification` string

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

This commit simply shortens the on-screen label for a device menu item from 'Regulatory certification' to 'Regulatory' (or translated equivalents) and updates the internal translation key from regulatory_certification__title to regulatory__title. It is a cosmetic UI text change with no security relevance.

Security candidateRevert "chore(core): rename `ble__waiting_for_host` to `words__waiting_for_host`"by Roman Zeyde · c8073aa2 · Oct 31, 2025 · 13 filesMessage 65 · AdequateInformational 15Details
Commit message · Roman Zeyde

Revert "chore(core): rename `ble__waiting_for_host` to `words__waiting_for_host`"

This reverts commit f4424b657e4eca2f07824b1e8c40ce2f4e41c7c8.

65/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Provides an explanatory body
Why it was queued
signing or wallet pathboot or update path
AI analysis · Informational 15/100

This commit simply reverts a previous internal renaming of a user-interface text label. It changes the translation key for a Bluetooth 'Waiting for connection...' message from 'words__waiting_for_host' back to 'ble__waiting_for_host' and updates the generated translation files accordingly. There is no security relevance.

Security candidatefeat(core): show an explicit warning when `ButtonRequest` ACK is delayedby Roman Zeyde · 661681f5 · Oct 31, 2025 · 11 filesMessage 100 · StrongInformational 19Details
Commit message · Roman Zeyde

feat(core): show an explicit warning when `ButtonRequest` ACK is delayed

This should help the user to avoid the "blank screen" issue[1]
(if the layout is closed before `ButtonRequest` loop is done, the
user will see a blank screen - until a new message is received).

This PR doesn't allow the user to abort the layout task, since
it may leave the THP channel in a "non-writeable" state (if the
flow is aborted before `ButtonRequest` THP-level ACK is received,
ABP will prevent further writes into the channel[2].

[1]: https://github.com/trezor/trezor-firmware/issues/5884
[2]: https://github.com/trezor/trezor-firmware/blob/4aa242ba0404cf92c41a01ab78247054dcb50df7/core/src/trezor/wire/thp/channel.py#L415

100/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Explains rationale or failure mode✓ Links an issue, advisory, or supporting reference
Why it was queued
signing or wallet pathboot or update path
AI analysis · Informational 19/100

This commit adds a user-facing warning message on Trezor devices when the connected computer or phone is slow to respond during a button-confirmation step. It is a usability improvement to prevent users from seeing a confusing blank screen; it does not fix a vulnerability and does not introduce a new attack path.

Security candidatefix(core): reduce +/- buttons' size to allow more text to fitby Roman Zeyde · 23f6518a · Oct 31, 2025 · 3 filesMessage 94 · StrongInformational 17Details
Commit message · Roman Zeyde

fix(core): reduce +/- buttons' size to allow more text to fit

Otherwise, "seconds" translation may overflow on T3W1.

94/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✓ Names security-relevant behavior explicitly
Why it was queued
memory safetyboot or update path
AI analysis · Informational 17/100

This is a visual layout tweak for the Trezor T3W1 hardware wallet. It slightly shrinks the plus/minus buttons on a settings screen so that translated text (like the word "seconds") does not get cut off. There is no indication of a security vulnerability or exploit.

Lower-prioritychore(core): fix a small typoby Roman Zeyde · 22f1b480 · Oct 31, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Roman Zeyde

chore(core): fix a small typo

[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 fixes a single spelling mistake in a code comment, changing 'then' to 'than'. It does not change any executable code, behavior, or security properties of the Trezor firmware.

Lower-priorityfix(core): Remove unnecessary dependencies.by kopecdav · fca7a25d · Oct 30, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · kopecdav

fix(core): Remove unnecessary dependencies.

[no changelog]

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

This commit simply removes an unused header file include from a battery fuel gauge source file. There is no functional code change, no bug fix, and no security relevance visible in the diff.

Lower-priorityfeat(core): add hcf343837ncz battery model.by kopecdav · b004cafc · Oct 30, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · kopecdav

feat(core): add hcf343837ncz battery model.

[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 data file describing a specific battery model (HCF343837NCZ) used by the device's power/fuel gauge. It contains calibration tables for temperature, voltage, capacity, and internal resistance. There is no code that processes user input, no network activity, no cryptographic operations, and no change to existing logic. It is purely a hardware-support data addition.

Lower-priorityfeat(core): prepare fuel gauge / battery model for different battery typesby tychovrahe · 0dd4503a · Oct 30, 2025 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · tychovrahe

feat(core): prepare fuel gauge / battery model for different battery types

[no changelog]

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

This commit adds a single header include to a battery fuel gauge source file in preparation for supporting different battery types. There is no functional code change, no security fix, and no security-relevant behavior introduced.

Lower-priorityfeat(core): update battery model unit variant selection.by kopecdav · bdebde58 · Oct 30, 2025 · 3 filesMessage 62 · AdequateInformational 15Details
Commit message · kopecdav

feat(core): update battery model unit variant selection.

[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 updates the Trezor firmware's battery fuel gauge to support a second battery model (HCF343837NCZ) alongside the existing one. It renames constants to avoid naming conflicts, adds a new compile-time selection case, and includes the new battery data header. There is no indication this is a security fix or introduces a security vulnerability.

Security candidatefix(core/bootloader): disable 'pair new device' menu item in case BLE is disabledby tychovrahe · a9c676f9 · Oct 30, 2025 · 1 fileMessage 62 · AdequateInformational 19Details
Commit message · tychovrahe

fix(core/bootloader): disable 'pair new device' menu item in case BLE is disabled

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

This commit changes the bootloader menu on a Trezor hardware wallet so that the 'Pair new device' Bluetooth option is grayed out when Bluetooth Low Energy (BLE) is disabled. It is a UI consistency fix rather than a fix for an exploitable vulnerability. There is no evidence in the commit or supplied references that this resolves a security issue.

Security candidatefeat(core): respect BLE settings in bootloaderby tychovrahe · 20dfec51 · Oct 30, 2025 · 4 filesMessage 57 · ThinLow 35Details
Commit message · tychovrahe

feat(core): respect BLE settings in bootloader

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

This commit changes the Trezor bootloader so that Bluetooth Low Energy (BLE) settings are remembered across reboots. Previously, the bootloader would turn BLE back on even if the user had turned it off. Now the bootloader reads a saved 'BLE enabled' flag from backup memory and only enables BLE if the user had left it on. The pairing/setup workflows still force BLE on because they need it. This is a privacy/usability fix rather than a critical security patch, but it prevents an unwanted BLE radio from being active when the user expects it to be off.

Security candidatefix(core/bootloader): erase protected backup ram on wipe code entryby tychovrahe · 32866cc5 · Oct 30, 2025 · 1 fileMessage 62 · AdequateModerate 57Details
Commit message · tychovrahe

fix(core/bootloader): erase protected backup ram on wipe code entry

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

This bootloader patch makes the device erase a special protected memory region (backup RAM) when the user enters a 'wipe code' to factory-reset the device. Without this cleanup, sensitive leftovers could remain in that protected memory after a wipe. The change is small and defensive, but the commit message does not explain what specific risk it fixes.

Lower-priorityfix(core): start advertising after re-enabling BLEby tychovrahe · 49b289fa · Oct 30, 2025 · 2 filesMessage 62 · AdequateInformational 21Details
Commit message · tychovrahe

fix(core): start advertising after re-enabling BLE

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

This commit fixes a Bluetooth behavior on the Trezor T3W1 hardware wallet: after a user turns Bluetooth back on, the device now resumes advertising itself so it can be found and reconnected. Previously it might stay silent, causing connection problems. There is no direct evidence this is a security vulnerability rather than a usability bug.