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
321commits · 30 days
548commits · 60 days
1356commits · 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 47 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 candidatebuild(core): support DISABLE_TROPIC for HW testsby Roman Zeyde · 08d8e016 · Nov 27, 2025 · 3 filesMessage 67 · AdequateInformational 15Details
Commit message · Roman Zeyde

build(core): support DISABLE_TROPIC for HW tests

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

This commit adds a new build option, DISABLE_TROPIC, that lets developers compile Trezor firmware test builds without the Tropic secure-element feature. It mirrors the existing DISABLE_OPTIGA flag and is blocked from production builds. There is no indication this is a security fix or vulnerability patch; it is a build-system convenience for hardware testing.

Lower-priorityfix(core): fix pm_suspend return value in case of stabilization TIMEOUT.by kopecdav · 95c3a289 · Nov 26, 2025 · 1 fileMessage 62 · AdequateInformational 23Details
Commit message · kopecdav

fix(core): fix pm_suspend return value in case of stabilization TIMEOUT.

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

This is a one-line bug fix in the Trezor hardware wallet's power manager for STM32U5 chips. When the device timed out while waiting for its power state to stabilize, the function was accidentally returning the wrong value (false) instead of the proper error code (PM_TIMEOUT). This could cause callers to misinterpret a timeout as success, potentially mishandling power-state transitions. It is a correctness fix rather than an obvious exploit, but in embedded firmware such misreporting can contribute to reliability or security issues.

Lower-priorityfix(core): explicitly disable external tamper triggerby tychovrahe · 5782cb9e · Nov 26, 2025 · 3 filesMessage 62 · AdequateLow 46Details
Commit message · tychovrahe

fix(core): explicitly disable external tamper trigger

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

This commit adds a new function that explicitly turns off an external physical tamper-detection input on Trezor's secure microcontroller after initialization. Previously, the tamper input may have been left enabled by default after tamper_init(), which could allow a physical attacker to trigger a tamper event (and potentially wipe secrets or reset the device) using an external signal. The fix ensures the external trigger is disabled unless later explicitly enabled.

Lower-prioritybuild(core): fix T3W1 build with DISABLE_OPTIGA=1by Martin Milata · 43e0ac41 · Nov 26, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Martin Milata

build(core): fix T3W1 build with DISABLE_OPTIGA=1

[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 is a build-system fix that moves a single function outside of a conditional compilation block. When the Optiga secure chip support was disabled (DISABLE_OPTIGA=1), the T3W1 hardware build failed because a function named secret_key_delegated_identity was accidentally placed inside the Optiga-only code section. The patch makes that function always available, which is correct because it is unrelated to Optiga. There is no security vulnerability here.

AI review queuedchore(translations): sync Crowdin translationsby obrusvit · 9ca5dab2 · Nov 26, 2025 · 7 filesMessage 57 · ThinInformational 15Details
Commit message · obrusvit

chore(translations): sync Crowdin translations

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Informational 15/100

This commit is a routine synchronization of translated user-interface text strings from the Crowdin translation platform. It updates wording in Czech, German, Spanish, French, and Portuguese translation files, refreshes the cryptographic signature that authenticates those translations, and updates the corresponding visual test snapshots. There are no code logic changes, no security fixes, and no behavior changes beyond the exact text shown on screen.

Lower-prioritychore: update fixturesby Ioan Bizău · 101a277c · Nov 25, 2025 · 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 expected test result fingerprints (hashes) in a UI test fixtures file and adds one new test case entry. It does not change any firmware, application, or cryptographic code. There is no indication of a security fix or vulnerability.

Lower-prioritychore(tests): visit menu items in info flowby Ioan Bizău · a867fa67 · Nov 25, 2025 · 2 filesMessage 67 · AdequateInformational 15Details
Commit message · Ioan Bizău

chore(tests): visit menu items in info flow

[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 renames an internal test helper method from `_visit_menu_items` to `visit_menu_items` and adds a few calls to it in automated test scripts. It does not change any production firmware or device behavior. There is no security issue here.

AI review queuedchore(tests): add test for back from amountby Ioan Bizău · 25a0c80a · Nov 25, 2025 · 2 filesMessage 67 · AdequateInformational 15Details
Commit message · Ioan Bizău

chore(tests): add test for back from amount

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

This commit only adds a new automated test for the Trezor hardware wallet. It simulates a user pressing the 'back' button while confirming a Bitcoin transaction amount, then completing the transaction normally. There is no change to the actual wallet firmware or production code, so it does not introduce or fix any security issue on its own.

Security candidatechore: bump versionsby Roman Zeyde · 815d0b41 · Nov 24, 2025 · 9 filesMessage 55 · ThinInformational 15Details
Commit message · Roman Zeyde

chore: bump versions

core -> 2.9.6
secmon -> 1.0.5

[no changelog]

55/100 · ThinMessage clarity
✓ Subject identifies a change✓ Uses a recognizable type or scope✓ Provides an explanatory body
Why it was queued
signing or wallet pathboot or update path
AI analysis · Informational 15/100

This commit only updates version numbers and translation metadata. It changes the firmware version from 2.9.5 to 2.9.6, the secure monitor version from 1.0.4 to 1.0.5, and updates translation file headers and their signed metadata. There are no code changes that affect security or functionality.

Lower-prioritychore(test): run `pyright_tool` for `common` and `tools`by M1nd3r · 2111ad8a · Nov 21, 2025 · 3 filesMessage 72 · AdequateInformational 15Details
Commit message · M1nd3r

chore(test): run `pyright_tool` for `common` and `tools`

[no changelog]

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

This commit only changes how the project runs its internal Python type-checking tool (Pyright). It expands type-checking coverage to more folders and adds a Makefile shortcut. There is no change to the actual wallet firmware, cryptography, or any user-facing behavior, so it has no security relevance.

Security candidatechore(core, tools, common): improve type annotation, resolve issuesby M1nd3r · 78487cee · Nov 21, 2025 · 82 filesMessage 62 · AdequateInformational 15Details
Commit message · M1nd3r

chore(core, tools, common): improve type annotation, resolve issues

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

This is a large cleanup commit that improves Python type annotations and fixes minor code-quality issues across build tools, helper scripts, and test utilities. It does not change any security-critical firmware behavior, cryptographic operations, or device-facing code. There is no indication this commit fixes a security vulnerability.

Lower-prioritychore(core): use `flake8` style check for all PY_FILESby M1nd3r · 6a392ad9 · Nov 21, 2025 · 2 filesMessage 62 · AdequateInformational 15Details
Commit message · M1nd3r

chore(core): use `flake8` style check for all PY_FILES

[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 housekeeping change to the project's code-style tooling. It removes a special 'limited' flake8 pass and makes all Python files follow the same style rules. There is no change to the actual wallet firmware or any user-facing behavior.

Lower-prioritychore(ci): remove obsolete `test_python_support`by M1nd3r · 6d44bb43 · Nov 21, 2025 · 3 filesMessage 57 · ThinInformational 15Details
Commit message · M1nd3r

chore(ci): remove obsolete `test_python_support`

[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 outdated automated test that checked whether some Python helper scripts were compatible with old Python versions (3.7–3.9). It does not change any wallet, firmware, or security-sensitive code. There is no indication this is a security fix or that it introduces a vulnerability.

Lower-prioritychore: update fixturesby Ioan Bizău · 9f0a5dc1 · Nov 21, 2025 · 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 expected test result hashes (called 'fixtures') in a single JSON file used for automated user-interface testing. No actual product code, cryptography, or device behavior was changed. It is a routine test-maintenance change with no security relevance on its own.

Lower-priorityfix(tests,eckhart): visit the whole flowby Ioan Bizău · da6c667b · Nov 21, 2025 · 1 fileMessage 82 · StrongInformational 15Details
Commit message · Ioan Bizău

fix(tests,eckhart): visit the whole flow

`press_yes` used to kill the flow so we would never visit the amount
screen.

[no changelog]

82/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body✓ Mentions testing or verification
AI analysis · Informational 15/100

This is a minor test-only fix for the Trezor firmware test suite. It changes how a simulated user navigates through a device setup screen during automated testing so that the test visits an additional on-screen amount confirmation page. It does not change any production firmware code, cryptographic logic, or user-facing behavior, and there is no indication it fixes a security vulnerability.

Security candidatefix: make default consistentby Ioan Bizău · f7ba427e · Nov 21, 2025 · 2 filesMessage 47 · ThinInformational 15Details
Commit message · Ioan Bizău

fix: make default consistent

[no changelog]

47/100 · ThinMessage clarity
✓ Descriptive subject✓ 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 changes the default value of an optional UI parameter called `info` from `True` to `False` in a function that displays confirmation screens on Trezor hardware wallets. The change only affects documentation-style comments and a generated mock file, making the documented default match the actual implementation. There is no direct evidence this fixes a security vulnerability.

Security candidatefeat(tests,eckhart): traverse TextScreen menusby Ioan Bizău · a72cd10c · Nov 21, 2025 · 2 filesMessage 67 · AdequateInformational 13Details
Commit message · Ioan Bizău

feat(tests,eckhart): traverse TextScreen menus

[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
Why it was queued
boot or update path
AI analysis · Informational 13/100

This commit is a test-infrastructure and UI-layout change for the upcoming Trezor Safe 5 (Eckhart layout). It lets automated UI tests detect whether a text screen has an external menu, and it swaps a red cancel menu item for a dedicated themed cancel button. There is no security-relevant behavior change visible in the diff.

Security candidatefix: get rid of warning in non-debug buildby Ioan Bizău · 5b3ee5b8 · Nov 21, 2025 · 1 fileMessage 57 · ThinInformational 13Details
Commit message · Ioan Bizău

fix: get rid of warning in non-debug build

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

This is a minor Rust code cleanup that removes a compiler warning in non-debug builds. The change splits one function into two versions: one for debug builds that sets a test-only flag, and one for release builds that does nothing. There is no security-relevant change to actual device behavior.

Security candidateReapply "chore: remove `GetNonce` and `PaymentRequest` from experimental features"by Ioan Bizău · 858cd181 · Nov 20, 2025 · 24 filesMessage 65 · AdequateInformational 15Details
Commit message · Ioan Bizău

Reapply "chore: remove `GetNonce` and `PaymentRequest` from experimental features"

This reverts commit 366580dcb6c42df526854010e03dfe6a30f983f1.

65/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Provides an explanatory body
Why it was queued
nonce handlingcryptography-sensitive pathsigning or wallet path
AI analysis · Informational 15/100

This commit removes the 'experimental' label from two existing Trezor features—PaymentRequest (used in several cryptocurrency transaction flows) and GetNonce (a management message). It also removes the need to enable an 'experimental features' flag to use them. The change is a feature graduation, not a security fix. There is no evidence in the commit of a vulnerability being patched.

Lower-prioritychore: remove experimental markby Ioan Bizău · ee0df062 · Nov 20, 2025 · 1 fileMessage 47 · ThinInformational 15Details
Commit message · Ioan Bizău

chore: remove experimental mark

[no changelog]

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

This commit simply removes an 'experimental' label from a test file. It does not change any production code, security behavior, or test logic. There is no security relevance.

Lower-prioritychore(python): regenerate uv.lockby Pavol Rusnak · 82aaadc5 · Nov 20, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Pavol Rusnak

chore(python): regenerate uv.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 is a routine Python dependency lock file update that removes the 'ecdsa' package from the project's dependency list. There is no indication of a security fix, vulnerability, or malicious change in the commit itself.

Security candidatefix(python): remove ecdsa dependency, use cryptographyby Pavol Rusnak · fdc9976d · Nov 20, 2025 · 2 filesMessage 62 · AdequateLow 32Details
Commit message · Pavol Rusnak

fix(python): remove ecdsa dependency, use cryptography

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

This commit swaps out the 'ecdsa' Python library for the more widely used 'cryptography' library when verifying digital signatures on Trezor legacy firmware updates. It is a maintenance-style dependency change. There is no direct evidence in the commit that it fixes an active security vulnerability, but moving away from the older 'ecdsa' package reduces long-term supply-chain and implementation risk.

Lower-prioritybuild(core): enable Tropic by default for non-emulator targetsby Roman Zeyde · cf5f1dc5 · Nov 20, 2025 · 2 filesMessage 85 · StrongInformational 15Details
Commit message · Roman Zeyde

build(core): enable Tropic by default for non-emulator targets

Disable it by default only for at `SConscript.unix` (since currently `emu.py` doesn't start Tropic emulator).

[no changelog]

85/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
AI analysis · Informational 15/100

This commit changes the default build settings for the Trezor firmware so that a hardware security component called Tropic is enabled by default for real hardware builds, while keeping it disabled only for the software emulator used on PCs. It also removes the explicit default values for disabling Optiga and Tropic from the Makefile, making them optional overrides instead. There is no indication of a security vulnerability or fix in the change itself.

Lower-priorityfeat: buy crypto with fiatby Ioan Bizău · 7eb46961 · Nov 19, 2025 · 2 filesMessage 57 · ThinLow 27Details
Commit message · Ioan Bizău

feat: buy crypto with fiat

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

This commit adds a new feature to Trezor hardware wallets that lets users confirm on the device when they are buying cryptocurrency with regular money (fiat) through a third-party service. It changes how payment requests are verified and displayed on the device screen. The change removes the requirement that a payment amount be included in the request for these fiat-to-crypto purchases, because the amount being spent is in regular currency rather than cryptocurrency.

Lower-priorityfeat(tests): test payment_notificationby Ioan Bizău · 01414430 · Nov 19, 2025 · 2 filesMessage 57 · ThinInformational 15Details
Commit message · Ioan Bizău

feat(tests): test payment_notification

[no changelog]

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

This commit only adds a new automated test for an existing feature called payment_notification, and makes a small helper function in the test code tolerate missing output data. There is no change to the actual Trezor firmware or to any code that runs on the device. It is a test-only change and does not introduce or fix a security issue.