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

Lower-priorityfix: raise exceptionsby Ioan Bizău · 0bd5e776 · Nov 19, 2025 · 2 filesMessage 40 · ThinLow 49Details
Commit message · Ioan Bizău

fix: raise exceptions

[no changelog]

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

This commit fixes two places in Trezor's payment-request handling where error objects were created but never actually thrown (missing 'raise'). One missing raise meant a payment request with memos but no nonce would be accepted instead of rejected; the other meant an unknown memo type would be silently ignored instead of rejected. The patch adds the missing 'raise' keywords, refactors nonce handling to support unit testing, and adds tests to confirm the errors are now raised. It is a genuine bug fix, but the practical security impact is bounded because the verifier still checks the cryptographic signature before any payment is approved.

Lower-prioritychore: tighten pylintby Ioan Bizău · 6dd11e86 · Nov 19, 2025 · 1 fileMessage 40 · ThinInformational 15Details
Commit message · Ioan Bizău

chore: tighten pylint

[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 changes the project's Python linter configuration file (.pylintrc) to enable two additional code-quality checks: 'pointless-exception-statement' and 'pointless-statement'. These checks flag code that has no effect, such as an expression or exception object written on its own line without being raised or used. There is no change to the firmware source code, runtime behavior, or any security-sensitive logic. It is a routine tooling/development hygiene change.

Lower-priorityrefactor: allow payment requests without SLIP44 IDby Ioan Bizău · 2860c8de · Nov 19, 2025 · 4 filesMessage 62 · AdequateLow 32Details
Commit message · Ioan Bizău

refactor: allow payment requests without SLIP44 ID

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

This commit changes how Trezor handles payment requests that are not tied to a specific cryptocurrency coin type. Previously, payment notifications used a placeholder coin ID of 0 (Bitcoin). Now they use a new 'undefined' marker (0xFFFFFFFF). The change also adds a safety check so that refund memos cannot be used when no coin type is defined, because Trezor cannot hold coins of an undefined type. This appears to be a defensive refactor rather than a fix for an active vulnerability, but it removes a potentially misleading use of Bitcoin's coin ID in non-payment contexts.

Lower-prioritychore: handle PaymentNotification messagesby Ioan Bizău · 92dbd257 · Nov 19, 2025 · 1 fileMessage 47 · ThinInformational 15Details
Commit message · Ioan Bizău

chore: handle PaymentNotification messages

[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 adds a routing entry so that when the Trezor device receives a 'PaymentNotification' message, it knows which internal module to run. There is no visible security fix or vulnerability here—only a new message handler being wired up.

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.

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.

Security candidaterefactor: allow trades with no sell amountby Ioan Bizău · c8f1e8f5 · Nov 19, 2025 · 15 filesMessage 57 · ThinInformational 19Details
Commit message · Ioan Bizău

refactor: allow trades with no sell amount

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

This commit is a user-interface refactor that lets the Trezor device display trade confirmations even when there is no 'sell' amount. Previously the code assumed every trade was a swap (sell something to buy something). Now it can handle cases where only a buy amount is shown, such as a direct purchase or sale-to-fiat. The change touches UI layout code across several Trezor models and updates type hints, but it does not alter cryptographic signing, transaction parsing, or security checks.

Security candidaterefactor: make trades unaware of EVMby Ioan Bizău · db36f065 · Nov 19, 2025 · 10 filesMessage 57 · ThinInformational 15Details
Commit message · Ioan Bizău

refactor: make trades unaware of EVM

[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
cryptography-sensitive pathsigning or wallet path
AI analysis · Informational 15/100

This commit is a straightforward internal code cleanup. It renames a parameter from 'token_address' to 'extra_menu_items' and changes it from a single Ethereum token address string into a generic list of extra label/value pairs. The Ethereum app now passes the token contract address as one item in that list, while other cryptocurrency apps simply pass an empty list. There is no change to user-facing security behavior and no bug fix or vulnerability patch.

Security candidaterefactor: extract SLIP-24 utilitiesby Ioan Bizău · 7d35ebc2 · Nov 19, 2025 · 13 filesMessage 57 · ThinInformational 15Details
Commit message · Ioan Bizău

refactor: extract SLIP-24 utilities

[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
cryptography-sensitive pathsigning or wallet path
AI analysis · Informational 15/100

This is a routine internal code cleanup. It replaces loose groups of payment-request data (tuples) with named data classes (Refund and Trade) and moves shared helper code into a new file. There is no change to what the device shows or signs, and no security fix or vulnerability is present.

Security candidaterefactor: payment requests with no recipient addressby Ioan Bizău · acd48ccb · Nov 19, 2025 · 4 filesMessage 62 · AdequateInformational 18Details
Commit message · Ioan Bizău

refactor: payment requests with no recipient address

[no changelog]

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
cryptography-sensitive path
AI analysis · Informational 18/100

This commit refactors how Trezor hardware wallets display payment requests when no recipient address is provided. Previously, the code always expected a recipient address and would include it in the confirmation screen. Now, it handles cases where the recipient address is missing by either omitting that detail or showing a simpler confirmation. There is no direct evidence this fixes an active security vulnerability; it appears to be a UI robustness improvement.

Security candidatechore: include confirm_trade in BTC onlyby Ioan Bizău · 8d542f43 · Nov 19, 2025 · 4 filesMessage 57 · ThinInformational 17Details
Commit message · Ioan Bizău

chore: include confirm_trade in BTC only

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

This commit moves the same on-screen trade-confirmation helper from the non-Bitcoin code block into the common, always-compiled section across four Trezor device layouts. The function itself is not changed; it is only made available in the Bitcoin-only firmware build as well as the full build. There is no direct evidence in the commit that this fixes a security bug.

Lower-priorityfix(core): handle THP during unlockingby Roman Zeyde · 6b3f5afe · Nov 19, 2025 · 3 filesMessage 57 · ThinLow 33Details
Commit message · Roman Zeyde

fix(core): handle THP during unlocking

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

This update fixes a bug in the Trezor hardware wallet where a specific secure connection protocol (THP) would freeze while the user was entering their PIN to unlock the device. The fix keeps the protocol alive so the connected computer can still exchange basic keep-alive messages (like pings) during unlock, preventing connection timeouts or stalls.

Lower-prioritychore: update releases.jsonby Roman Zeyde · 6f1139e0 · Nov 19, 2025 · 1 fileMessage 47 · ThinInformational 15Details
Commit message · Roman Zeyde

chore: update releases.json

[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 adds a new firmware version number (2.9.4) and the list of Trezor device models it supports to a release metadata file. There is no code change, no bug fix, and no security-related content in the diff.

Lower-prioritychore: update definitions timestampby Roman Zeyde · 5bb4df5c · Nov 19, 2025 · 2 filesMessage 47 · ThinInformational 15Details
Commit message · Roman Zeyde

chore: update definitions timestamp

[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 bumps a timestamp and a matching minimum data version number used for Ethereum token/chain definitions. There is no code change, no security fix, and no vulnerability introduced.

Lower-prioritydocs(core/prodtest): changelog for 0.3.5by Roman Zeyde · 8f8c718f · Nov 19, 2025 · 2 filesMessage 57 · ThinInformational 15Details
Commit message · Roman Zeyde

docs(core/prodtest): changelog for 0.3.5

[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 purely a documentation update: it moves an existing changelog entry for a Bluetooth test fix ('Fix ble-adv-start without args.') from a draft file into the published prodtest changelog for version 0.3.5. No code was changed, so there is no security issue in this commit itself.

Lower-priorityfix(core): reload settings after unlockingby Roman Zeyde · f7dfa7e3 · Nov 19, 2025 · 3 filesMessage 57 · ThinLow 49Details
Commit message · Roman Zeyde

fix(core): reload settings after unlocking

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

This commit fixes a bug in Trezor hardware wallets where device settings stored behind the PIN lock were not reloaded after the user unlocked the device. The patch adds a call to reload settings from secure storage right after a successful PIN unlock. The included test checks that the auto-lock behavior still works correctly after unlocking. There is no public disclosure or CVE attached to this commit, and the vendor does not explicitly label it as a security fix.

AI review queueddocs(core): changelog for 2.9.4by Roman Zeyde · 26ef9c62 · Nov 19, 2025 · 23 filesMessage 57 · ThinInformational 15Details
Commit message · Roman Zeyde

docs(core): changelog for 2.9.4

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
second-pass: unusually broad change
AI analysis · Informational 15/100

This commit is purely a documentation change: it compiles the release notes for Trezor firmware version 2.9.4 by moving individual changelog fragments into the main CHANGELOG files. No source code, configuration, or executable files were modified, so it cannot introduce or fix a security vulnerability on its own.

AI review queuedchore(core): sign translationsby Roman Zeyde · f740f1eb · Nov 19, 2025 · 1 fileMessage 47 · ThinInformational 15Details
Commit message · Roman Zeyde

chore(core): sign translations

[no changelog]

47/100 · ThinMessage clarity
✓ Descriptive subject✓ 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 simply adds a new digital signature entry to a JSON file that records approved translation bundles for the Trezor hardware wallet. It is a routine metadata update with no code changes and no apparent security relevance.

Security candidatedocs(core/bootloader): changelog for 2.1.15by Roman Zeyde · a08e542f · Nov 19, 2025 · 6 filesMessage 57 · ThinInformational 15Details
Commit message · Roman Zeyde

docs(core/bootloader): changelog for 2.1.15

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

This commit is purely a documentation change: it moves five short bug-fix descriptions from individual changelog draft files into the official bootloader CHANGELOG.md for version 2.1.15. No source code was modified, so this commit by itself cannot introduce, fix, or exploit any security issue.

Security candidatechore: update embedded binaries for T3W1by Roman Zeyde · c0215fb3 · Nov 19, 2025 · 3 filesMessage 80 · StrongInformational 0Details
Commit message · Roman Zeyde

chore: update embedded binaries for T3W1

```
851bb4098104a1a607a6800dcee6ec4f100e78dfec1a3729ccc61ceae709faea core/embed/models/T3W1/bootloaders/bootloader_T3W1.bin
8872e5c872346921be1a18f871e6844ad72b647c7efceef8b2b05e7d716f4e3a core/embed/models/T3W1/secmon/secmon.bin
becea6434f423f8b5b3017513e4012f7c4045cccde1e8d78fe88b958f329ddc3 core/embed/models/T3W1/secmon/secmon_api.o
```

[no changelog]

80/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
Why it was queued
update trustboot or update path
AI analysis · Informational 0/100

This commit updates pre-built binary files (bootloader and security monitor) for the T3W1 hardware model, along with the matching bootloader hash. The change is presented as a routine chore with no changelog entry. There is no visible source diff or description of what changed inside the binaries, and no security relevance is stated.

Lower-prioritychore(nordic): adding "build*" directories to be ignored (the dirs can be named e.g. "build", "build_debug", etc.).by bleska · 4f41c3f2 · Nov 19, 2025 · 2 filesMessage 62 · AdequateInformational 15Details
Commit message · bleska

chore(nordic): adding "build*" directories to be ignored (the dirs can be named e.g. "build", "build_debug", etc.).

[no changelog]

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

This commit is a routine housekeeping change. It updates two project maintenance files so that build directories with names like 'build_debug' are ignored by Git and excluded from code-style checks. There is no change to the actual firmware code, no bug fix, and no security relevance.

Lower-priorityfix(core): fix tamper RSOD not showingby tychovrahe · af555ab2 · Nov 19, 2025 · 2 filesMessage 57 · ThinLow 42Details
Commit message · tychovrahe

fix(core): fix tamper RSOD not showing

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

This commit fixes a bug where Trezor hardware wallets would not display the intended Red Screen of Death (RSOD) warning when a physical tamper-detection event occurred. The fix reorganizes the tamper interrupt handler so it correctly rebuilds the error information and uses the proper RSOD display path after a tamper event. Without the fix, the device might fail to show the user-visible tamper alert, which could hide that the device had detected a physical attack.

Lower-priorityfix(core): remove external tamper triggerby tychovrahe · 7fd49c9c · Nov 19, 2025 · 1 fileMessage 57 · ThinModerate 57Details
Commit message · tychovrahe

fix(core): remove external tamper trigger

[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 removes a feature in the Trezor hardware wallet's security monitor that enabled an external tamper-detection trigger in production builds. Tamper detection is meant to wipe secrets if someone physically attacks the device. The change suggests the external trigger was either unreliable, risky, or not ready for production, but the commit message gives no details. Without more context, we cannot tell whether this fixes an active security flaw or is just a defensive cleanup.

Lower-priorityfeat(tests): traverse flow menusby Ioan Bizău · 08bfae08 · Nov 19, 2025 · 1 fileMessage 67 · AdequateInformational 15Details
Commit message · Ioan Bizău

feat(tests): traverse flow 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
AI analysis · Informational 15/100

This commit is a test-only helper update. It extends an automated UI traversal routine in the Python test library so it can also exercise the newer 'flow menu' screens on Trezor hardware. There is no change to device firmware, cryptography, user-facing behavior, or production code.

Lower-prioritychore: update fixturesby Ioan Bizău · 5e5aceb9 · Nov 19, 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 test data file. There are no code changes to the actual Trezor firmware, wallet logic, or security behavior. It is a routine maintenance update to keep automated UI tests aligned with the current software output.