TZ
← All projectsTrezor

Trezor firmware

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

BitcoinHardware walletsNormal
Repository coverage

2667 commits in the local evidence base

Every captured commit receives deterministic security triage and a separate communication-quality score. Security candidates and broader second-pass signals receive full-patch Ollama analysis.

921security candidates311second-pass queue2660AI analyses
322commits · 30 days
549commits · 60 days
1358commits · 180 days
2638commits · 365 days
Backfill bands
Aug 5 → Feb 61298 seen115 candidatesComplete
Feb 6 → Jun 6775 seen58 candidatesComplete
Jun 6 → Jul 6217 seen13 candidatesComplete
Jul 6 → Aug 5360 seen54 candidatesComplete
Commit communication

Does the history explain itself?

Message quality measures whether a commit identifies its scope, purpose, rationale, testing, and supporting references. It does not change the security-severity score.

66/100 average clarity
478Strong · 80–100
1321Adequate · 60–79
863Thin · 40–59
5Opaque · 0–39
Read the scoring rubric →
Developer activity

Who is changing the project?

Public Git author strings; identities are not independently verified.

DeveloperCommitsCandidatesAnalyzedHigh riskMessage avg.
tychovrahe292104292461
Roman Zeyde577181575272
PrisionMike945994273
Andrew Kozlik712470265
obrusvit21376213164
Jakub Janků22919182
Martin Pastyřík23823173
cepetr19682196059
Ioan Bizău23076230059
M1nd3r20772207071
Lukas Bielesch846784067
Martin Milata17446174063
Analysis record

Published AI watches

Last scanned 13 minutes ago

Low 27 AI analysisMessage 93 · Strong
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(core): digest EIP-1559/EIP-7702 magic without RLP encoding

This commit is a small internal cleanup in Trezor's Ethereum signing code. It changes how two special 'magic' bytes (the transaction type markers for newer Ethereum transaction formats) are fed into the cryptographic hash. Previously the c…

Refactor of cryptographic hashing path for Ethereum transaction signingRemoval of implicit assumption that RLP encodes small integers as single bytesChange affects EIP-1559 and EIP-7702 transaction type markers
2362bc6fby Roman Zeyde+6−32 files
No security note in commit
Informational 15 AI analysisMessage 98 · Strong
TZ TrezorTrezor firmware BitcoinHardware wallets

test(core): test RLP self-encoding bytestrings

This commit only adds a new unit test to the Trezor firmware codebase. It verifies that very short Ethereum RLP-encoded byte strings and small positive integers encode to themselves, which is a known property of the RLP specification. No p…

41538733by Roman Zeyde+16−01 file
No security note in commit
Informational 18 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

chore(core): remove sha1 from regular FW

This commit removes the SHA-1 hashing function from the regular Trezor firmware. SHA-1 is an old, weak hash algorithm that is no longer considered secure for sensitive uses. The change deletes the code that exposes SHA-1 to apps running on…

Removal of a deprecated cryptographic primitive (SHA-1) from the firmware API surfaceReduction of attack surface and prevention of future misuse of a collision-vulnerable hashNo direct vulnerability patch or memory-safety bug is present in the diff
16d15774by M1nd3r+0−2006 files
No security note in commit
Low 27 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): pass static public key to `noise_xxpsk3_*_init()`

This commit changes how a cryptographic library sets up secure connections. Previously, the code automatically calculated the public key from the private key. Now, the caller must provide the public key directly. This is a code-quality ref…

Cryptographic key handling changed: public key is now supplied rather than derivedPotential reduction of key-mismatch risk if caller provides correct public keyNew null-pointer check added for static_public_key
1b3128a4by Ondřej Vejpustek+20−92 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): change order of parameters

This commit simply reorders the arguments of an internal function called dh() and updates every place that calls it. The actual math and security behavior are unchanged; it is a code cleanup with no security effect.

33a119eeby Ondřej Vejpustek+15−151 file
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): prefix enums

This commit simply renames two groups of internal status labels (called enums) in the Trezor firmware's cryptographic code. The old names like WAITING_FOR_REQUEST1 were shared between two different parts of the code, so the developer gave …

f1c74046by Ondřej Vejpustek+26−222 files
No security note in commit
Low 37 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

fix(crypto): prevent calling `memzero(NULL, ...)`

This commit fixes three places in the Trezor firmware's cryptographic code where a memory-clearing function could be called with a NULL pointer. In practice, passing NULL to memzero is harmless on Trezor's platform (it does nothing), but i…

NULL pointer passed to memory-zeroing helper in cryptographic codeUndefined behavior in C standard library contractDefensive hardening in Noise protocol implementation
0394e934by Ondřej Vejpustek+11−51 file
No security note in commit
Informational 18 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): return remote static key from `noise_xxpsk3_*_handle_*()`

This commit is a code cleanup (refactor) for the cryptographic handshake code used in Trezor devices. It changes how the other party's long-term public key is returned to the caller: instead of storing it inside an internal state structure…

Removal of long-term public key storage from internal handshake stateCaller-supplied output buffer for remote static public key reduces internal secret retentionError-path memzero of returned key material on failure
3ead1aa6by Ondřej Vejpustek+79−423 files
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): rename ProjectProfile to ProjectConfig

This commit is a simple rename from 'ProjectProfile' to 'ProjectConfig' in two Rust source files. It only changes variable names, struct names, and error messages. There is no change to program logic, security behavior, or how data is hand…

581b37bcby cepetr+18−182 files
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): introduce ResolvedBuildArgs

This commit is a straightforward internal code refactor in Trezor's build tooling. It introduces a new ResolvedBuildArgs structure that centralizes default values for command-line build options before they are used. There is no change to u…

c24d1be8by cepetr+99−295 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): make build args tristate

This commit is a straightforward internal refactor of the Trezor firmware build tool's command-line argument handling. It changes many on/off flags from plain booleans to optional booleans so they can explicitly be set to true, false, or l…

271e249aby cepetr+57−561 file
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): introduce build options

This commit is a straightforward internal code reorganization in Trezor's build tooling. It moves build-option definitions from one Rust source file to a new module and adds the ability to load those options from a configuration file. Ther…

75085e2aby cepetr+275−2007 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(xtask): introduce build presets

This commit is a developer tooling change for the Trezor firmware build system. It introduces 'build presets'—named configuration bundles stored in TOML files—so developers can select common build settings with a single command-line flag i…

eefe8f7fby cepetr+397−419 files
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(xtask): upgrade manifest.yaml for tf-tools 0.3.0

This commit is a routine update to a build-system manifest file used by Trezor's internal tooling. It reorganizes and re-labels feature flags (for example, moving options between 'Features', 'Debugging', and 'Signing' groups and simplifyin…

57b28b89by cepetr+86−1351 file
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(core): add tf-tools 0.3.1+ configuration file

This commit adds a single configuration file for a Trezor developer tool (a VS Code extension). It only points the tool to existing folders in the repository and contains no executable code, no secrets, and no changes to firmware behavior.…

e554f618by cepetr+8−01 file
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): rename ResolvedBuild to ResolvedBuildFeatures

This commit is a simple internal code cleanup: it renames a Rust data structure called ResolvedBuild to ResolvedBuildFeatures and updates the places that use it. There are no functional changes, no security fixes, and no changes to how the…

aaa2780bby cepetr+5−52 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

fix(core): fix up clippy warnings in storage.rs

This is a tiny code cleanup commit that replaces two calls to `ptr::null()` with Rust's `unwrap_or_default()` to silence automated Clippy lint warnings. It does not change what value is produced (still a null pointer when no salt is provid…

62354461by cepetr+2−21 file
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): simplify dependencies

This commit is a straightforward internal code cleanup in Trezor's build tooling. It moves a data structure and two helper methods from one Rust source file to another and updates callers accordingly. There is no change to user-facing beha…

6268349fby cepetr+9−193 files
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

docs: add xtask documentation

This commit only adds documentation. It updates the table of contents and adds a new markdown page plus a diagram explaining the project's 'xtask' build helper. No code, build scripts, or firmware logic was changed, so it cannot introduce …

4879dababy cepetr+296−03 files
No security note in commit
Informational 17 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(xtask): introduce project-toml build-options

This commit is a build-system refactoring for Trezor firmware. It moves the mapping of command-line build options to Rust/cargo features out of hard-coded Rust logic and into per-project TOML files. It also adds a small change so debug bui…

Build-option mapping now lives in project.toml files, increasing the attack surface for supply-chain/build-configuration tamperingMakefile change automatically enables debug-link for PYOPT=0 debug buildsValidation added to reject storage_insecure_testing_mode in production builds
d44de007by cepetr+681−40817 files
No security note in commit
Repository ledger

Explore captured commits

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

Security candidatechore(core): skip empty confirmation footer on Deliziaby Roman Zeyde · ec46aca2 · Feb 13, 2026 · 3 filesMessage 62 · AdequateInformational 16Details
Commit message · Roman Zeyde

chore(core): skip empty confirmation footer on Delizia

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

This is a small user-interface cleanup for the Trezor hardware wallet's Delizia layout. It makes confirmation screens skip drawing an empty footer button label when no button text is provided. There is no indication this fixes a security bug; it appears to be a visual polish change.

Security candidaterefactor(core): support `ICON_DOWN` for `confirm_with_info()` in Caesarby Roman Zeyde · 226fcd7c · Feb 13, 2026 · 6 filesMessage 77 · AdequateInformational 12Details
Commit message · Roman Zeyde

refactor(core): support `ICON_DOWN` for `confirm_with_info()` in Caesar

Also, simplify info-related button creation.

[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
Why it was queued
cryptography-sensitive pathboot or update path
AI analysis · Informational 12/100

This commit is a user-interface cleanup in the Trezor firmware's 'Caesar' layout. It replaces several hard-coded 'i' text labels with a shared 'info icon' helper and adds support for a down-arrow icon. There is no change to cryptographic operations, memory safety, authentication, or data handling. It appears to be a non-security refactor.

AI review queuedchore(core): add confirmation-related English string entriesby Roman Zeyde · 9b6995a5 · Feb 13, 2026 · 6 filesMessage 62 · AdequateInformational 15Details
Commit message · Roman Zeyde

chore(core): add confirmation-related English string entries

[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 only adds two new English text labels, 'Confirm all' and 'Show next', to the Trezor firmware's translation system. It updates the generated code that maps internal keys to user-visible strings and refreshes the translation signature metadata. There is no change to security logic, user prompts, or how confirmations work.

Lower-prioritychore(python): update uv.lock after `trezorlib` releaseby Roman Zeyde · b0135d8b · Feb 13, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · Roman Zeyde

chore(python): update uv.lock after `trezorlib` release

[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 routine build-file update that records a new release of Trezor's own Python library (trezorlib), bumping the version from 0.20.0 to 0.20.1. The change is in a lock file only and contains no code modifications. There is no security-relevant content visible in the commit.

AI review queuedrefactor(core): use non-async function ETH staking detectionby Roman Zeyde · 40c222e9 · Feb 12, 2026 · 1 fileMessage 62 · AdequateInformational 11Details
Commit message · Roman Zeyde

refactor(core): use non-async function ETH staking detection

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

This commit is a small internal code cleanup in Trezor's Ethereum transaction signing code. It changes a function that detects and handles Ethereum staking transactions from an 'async' (pause-able) style to a regular function that returns a confirmation task. There is no visible change in behavior, no bug fix, and no security-relevant change described by the vendor.

Lower-prioritydocs: add Sparrow Wallet to `third-parties.md`by Roman Zeyde · adae0a15 · Feb 12, 2026 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Roman Zeyde

docs: add Sparrow Wallet to `third-parties.md`

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

This commit simply adds a single line to a documentation file listing Sparrow Wallet as a third-party wallet that uses no Trezor libraries. It is a non-code documentation change with no security relevance.

Lower-prioritychore: translations blanker scriptby obrusvit · 5b97dd3b · Feb 11, 2026 · 2 filesMessage 70 · AdequateInformational 15Details
Commit message · obrusvit

chore: translations blanker script

- a helper script to blank certain translations for layouts if they are
not used in the said layout
- the script uses rules JSON

[no changelog]

70/100 · AdequateMessage clarity
✓ Descriptive subject✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
Why it was queued
translation-only discount
AI analysis · Informational 15/100

This commit adds a helper script and a rules file for managing translated text in Trezor firmware. The script blanks out translation strings that do not apply to specific hardware layouts (e.g., removing Bluetooth-related text for devices that lack Bluetooth). It is a build/translation tooling change and does not modify device firmware code, cryptographic operations, or security-sensitive logic.

Lower-prioritychore(l10n): add new rulesby Michal Kazda · 7089a9e1 · Feb 11, 2026 · 2 filesMessage 57 · ThinInformational 15Details
Commit message · Michal Kazda

chore(l10n): add new rules

[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 is a routine maintenance update to the translation tooling for Trezor hardware wallets. It adds and reorganizes rules that decide which on-screen text strings appear on which device models (Bolt, Caesar, Delizia, Eckhart). There is no indication of a security fix, vulnerability, or exploit.

Lower-prioritychore(l10n): blanked en.json with the new rulesby Michal Kazda · 553d33e5 · Feb 11, 2026 · 3 filesMessage 57 · ThinInformational 15Details
Commit message · Michal Kazda

chore(l10n): blanked en.json with the new rules

[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 is a routine localization update. It blanks out many English strings in the translation file and regenerates the Rust translation table and mock stubs accordingly. There is no code behavior change, no bug fix, and no security fix.

Lower-prioritychore(rust/trezor-thp): delete Cargo.lockby Martin Milata · d180ad1e · Feb 11, 2026 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Martin Milata

chore(rust/trezor-thp): delete Cargo.lock

[no changelog]

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

This commit simply deletes a Cargo.lock file from a Rust subproject. A Cargo.lock pins exact versions of dependencies. Removing it does not change any source code and does not, by itself, introduce a vulnerability. It means future builds of this subproject will resolve dependency versions from Cargo.toml constraints rather than fixed lockfile versions, which can affect reproducibility and supply-chain risk but is a routine project-maintenance decision, not a security defect.

Lower-priorityrefactor(rust/trezor-thp): error loggingby Martin Milata · a9ddd8c7 · Feb 11, 2026 · 3 filesMessage 57 · ThinInformational 15Details
Commit message · Martin Milata

refactor(rust/trezor-thp): error logging

[no changelog]

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

This commit only adds error log messages to an internal Rust library (trezor-thp) used by Trezor hardware wallets. It does not change any security logic, parsing rules, or behavior. The same error conditions were already being returned before; now they also print a short diagnostic message. There is no indication this fixes or introduces a security vulnerability.

Security candidatefeat(rust/trezor-thp): secure channel layerby Martin Milata · 86934e07 · Feb 11, 2026 · 13 filesMessage 57 · ThinLow 35Details
Commit message · Martin Milata

feat(rust/trezor-thp): secure channel layer

[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
authentication path
AI analysis · Low 35/100

This commit adds a new secure communication layer to the Trezor hardware wallet's Rust protocol library. It introduces encrypted channels, handshake logic, and credential handling. The change is a feature implementation rather than a documented security fix, but it touches sensitive cryptography and transport code, so correctness matters for device security.

Security candidatefeat(rust/trezor-thp): add example clientby Martin Milata · 191b8643 · Feb 11, 2026 · 19 filesMessage 57 · ThinInformational 15Details
Commit message · Martin Milata

feat(rust/trezor-thp): add example client

[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
authentication pathparser or protocol path
AI analysis · Informational 15/100

This commit adds example code and development tooling for the Trezor THP (Trezor Host Protocol) Rust library. It is a feature addition containing example clients, generated protobuf bindings, and a renamed example. There is no indication this commit fixes or introduces a security vulnerability in the firmware itself.

Security candidaterefactor(python): improve authenticity checkby matejcik · 977402ec · Feb 11, 2026 · 2 filesMessage 72 · AdequateInformational 17Details
Commit message · matejcik

refactor(python): improve authenticity check

moving complexity around to a better siloed location, as a preparation
for adding new kinds of (PQ) cryptography

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

This is a code cleanup in the Python Trezor library that reorganizes how device authenticity checks handle public keys and signatures. It does not change the security behavior visible to users; it only moves existing logic into new helper classes to make future cryptography upgrades easier. There is no indication this fixes a security bug or introduces a vulnerability.

Security candidatefix(python): improve handling for CA blacklists/whitelistsby matejcik · e397ee5f · Feb 11, 2026 · 2 filesMessage 77 · AdequateLow 36Details
Commit message · matejcik

fix(python): improve handling for CA blacklists/whitelists

* handle inability to download the allowlist
* prepare for blacklist that will be used for T3W1

77/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body
Why it was queued
authentication path
AI analysis · Low 36/100

This commit improves how Trezor's Python library handles the list of trusted certificate authorities used to verify a device is genuine. Previously, if the online allowlist could not be downloaded, the tool might fail in an uncontrolled way. The change adds proper error handling and renames 'whitelist' to the more general 'allowlist' to support both approved and revoked (blacklisted) public keys. It also renames the user-facing option from --skip-whitelist to --offline. There is no direct evidence in the commit that this fixes an active security vulnerability, but it hardens the device-authentication process.

Security candidatefeat(python): Ensure that Trezor provides Tropic signature when expected.by Andrew Kozlik · 7dec396c · Feb 11, 2026 · 1 fileMessage 67 · AdequateLow 45Details
Commit message · Andrew Kozlik

feat(python): Ensure that Trezor provides Tropic signature when expected.

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
signing boundaryauthentication path
AI analysis · Low 45/100

This commit tightens device authentication checks in Trezor's Python library. Previously, if a hardware wallet returned a Tropic signature, it was verified. Now, the library also raises an error if a Tropic signature is expected (because an Ed25519 root public key is configured) but missing. This prevents a device from skipping a required signature check and being accepted as authentic.

Security candidatefeat(python): add root production key for T3B1by Andrew Kozlik · 3e0a170e · Feb 11, 2026 · 1 fileMessage 57 · ThinInformational 18Details
Commit message · Andrew Kozlik

feat(python): add root production key for T3B1

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

This commit updates the list of trusted public keys used by Trezor's Python library to authenticate genuine Trezor hardware. It adds the official production key for a new device model (T3B1, sold as Trezor Safe 3) and renames an older internal model name (T3W1) to its marketed name (Trezor Safe 7). There is no indication of a security vulnerability; it is routine key inventory maintenance for a new product variant.

Lower-prioritychore(python): bump version after releaseby matejcik · 67013755 · Feb 11, 2026 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · matejcik

chore(python): bump version after release

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 increases the version number of the Python Trezor library from 0.20.0 to 0.20.1 after a release. It changes one line in a packaging metadata file and has no security relevance.

Lower-prioritydocs(python): fix typoby matejcik · d7fce2ab · Feb 11, 2026 · 1 fileMessage 40 · ThinInformational 15Details
Commit message · matejcik

docs(python): fix typo

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

This commit fixes a single spelling mistake in a documentation string inside a Python source file. It changes 'registred' to 'registered' in a comment describing what a function does. There is no code behavior change and no security relevance.

Lower-priorityfix(python): fix BLE behavior on macosby matejcik · 47c900be · Feb 11, 2026 · 1 fileMessage 80 · StrongInformational 19Details
Commit message · matejcik

fix(python): fix BLE behavior on macos

* macOS does not have `client.pair()`, as documented in bleak docs. This
way we just ignore the NotImplementedError and everything Just Works(tm)
* installing firmware will fail on macos unless response=True. we don't
want to limit other OSes for that so we configure that with a top level
constant

80/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
AI analysis · Informational 19/100

This commit fixes two macOS-specific compatibility issues in the Python Trezor library's Bluetooth Low Energy (BLE) transport code. It makes BLE pairing and firmware installation work on Apple computers by handling a missing macOS pairing function and switching to a more reliable write mode on that platform. There is no indication this is a security vulnerability fix.

Lower-prioritydocs(python): generate changelog for 0.20.0by matejcik · 45ff2419 · Feb 11, 2026 · 8 filesMessage 57 · ThinInformational 15Details
Commit message · matejcik

docs(python): generate changelog for 0.20.0

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 purely a documentation update that generates the changelog for the Python trezorlib package version 0.20.0. It deletes small changelog fragment files and merges their contents into the main CHANGELOG.md, plus updates the command-line help documentation. No actual source code, firmware, or security logic is changed.

Lower-prioritychore: update fixturesby Ioan Bizău · afc88d25 · Feb 11, 2026 · 1 fileMessage 40 · ThinInformational 15Details
Commit message · Ioan Bizău

chore: update fixtures

[no changelog]

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

This commit only updates a test data file (fixtures.json) used for automated UI testing. It replaces expected screen-shot hashes with new ones, matching a routine refresh of test baselines. No firmware code, no user-facing behavior, and no security-sensitive logic was changed.

Lower-priorityfix: make `total_amount` nullableby Ioan Bizău · 341ecd52 · Feb 11, 2026 · 2 filesMessage 47 · ThinInformational 12Details
Commit message · Ioan Bizău

fix: make `total_amount` nullable

[no changelog]

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

This commit changes two UI layout functions so that the `total_amount` parameter can accept a null/missing value in addition to a string. It is a small type-signature relaxation with no visible behavior change in the diff. There is no direct evidence in the commit that this fixes an exploitable security vulnerability; it is most likely a defensive fix for a UI crash or type mismatch when a transaction total is not available.

AI review queuedfix: testsby Ioan Bizău · 78cb6b18 · Feb 11, 2026 · 1 fileMessage 12 · OpaqueInformational 15Details
Commit message · Ioan Bizău

fix: tests

[no changelog]

12/100 · OpaqueMessage clarity
✓ Uses a recognizable type or scope✓ Mentions testing or verification! Very short subject! Too few words to establish purpose! No meaningful explanatory body
Why it was queued
second-pass: opaque commit message
AI analysis · Informational 15/100

This commit only updates test helper code in tests/input_flows.py. It renames a helper method and changes which on-screen text labels the tests look for, matching the tests to updated wording in the device firmware's user interface. There is no change to the actual Trezor firmware or wallet logic, so it has no security relevance for end users.

Lower-priorityfeat(tests): keyboard shortcuts for UI diffby Ioan Bizău · 4e018b3d · Feb 11, 2026 · 1 fileMessage 67 · AdequateInformational 15Details
Commit message · Ioan Bizău

feat(tests): keyboard shortcuts for UI diff

[no changelog]

67/100 · AdequateMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Mentions testing or verification! No meaningful explanatory body
AI analysis · Informational 15/100

This commit only adds keyboard shortcuts (j/k to scroll, p/n for previous/next case) to a local test-report web page used by Trezor developers during UI testing. It does not touch wallet, firmware, or cryptographic code and has no security relevance for end users.