mirror of
https://github.com/trezor/trezor-firmware.git
synced 2026-03-03 22:15:26 +01:00
44 KiB
44 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
0.20.0 (2026-02-10)
Version 0.20.0 introduces a set of major breaking API changes. All user code must be upgraded.
As announced, the API has changed significantly since the pre-release version 0.20.0-dev.
Incompatible changes
- Refactor trezorlib session-based API. #6273
Added
- Use keyring package for storing THP keys and credentials. #6273
Removed
- Deprecate uploading language blob during firmware update. #6103
- debuglink: Remove vestigial memory_write/read/erase methods. #6273
- Deprecated
@expectdecorator was removed. #6273 - Deprecated
strreturn values in functions whose result is a success have been removed. #6273
Fixed
- Avoid dropping WebUSB chunks in case of a timeout. #6112
- Support resuming THP sessions. #6273
- trezorctl: BLE behavior on macOS was improved. #6449
- trezorctl: fix crash when device authentication allowlist is unavailable. #6449
0.20.0-dev0 (2025-10-21)
Version 0.20.0 introduces a set of major breaking API changes. All user code must be upgraded.
This version is a pre-release. The new API is unstable and may change until 0.20.0 is released.
Incompatible changes
- All Trezor functions now run on top of a
Sessioninstead ofTrezorClient. - Reworked API of
TrezorClient.
Added
- Support for T3W1.
- Support for Trezor-Host Protocol. #4976
- Cardano: Add support for signing arbitrary messages. #3509
- Added support for Bluetooth Low Energy transport. #4948
- Added new translation blob format to support larger fonts. #4975
- Generation of SLIP-21 node for a new way of storing labels (using Evolu). #5220
- Add support for displaying the message hash when signing Ethereum EIP-712 typed data. #5344
- Check Tropic fields to AuthenticityProof. #5760
- Allow exporting device serial number. #5928
debuglink: Add new optional enum DebugTouchEventType to DebugLinkDecision message. #5328debuglink: Add screen buttons and button actions. #4740debuglink: Add 'navigate_to_menu_item' button action. #5499
Changed
- Changed trezorlib to session-based. Changes also affect trezorctl, python tools, and tests. #4976
- Changed build system to uv.
- Loadable definitions from data.trezor.io query the new path structure.
Deprecated
trezorlib.__version__is deprecated, useimportlib.metadata.version("trezor").
Removed
- Remove BNB Beacon Chain support. #4227
- Dropped support for Python 3.8.
ethereum.network_from_address_nwas removed.
Fixed
0.13.10 (2025-02-12)
Added
- Added support for T3B1. #3728
- Added support for Trezor models not known by the current version of the library. #3993
- Added ability to set Optiga's security event counter to maximum:
trezorctl debug optiga-set-sec-max. #4000 - Enum for valid device rotations. #4041
- Added pretty-printing of protobuf messages in IPython (
_repr_pretty_). #4076 - Added support for benchmarks. #4101
- Added support for entropy check workflow in
device.reset(). #4155 - Added shortcut for loading a debug device with the "academic" SLIP39 seed. #4282
- Added support for lexicographic sorting of pubkeys in multisig. #4351
- Added an
expectargument toTrezorClient.call(), to enforce the returned message type. #4464 - Introduced
device.setup()as a cleaner upgrade todevice.reset(). #4464
Changed
- Most USB level errors are now converted to
TransportException. #4089
Deprecated
@expectdecorator is deprecated -- useTrezorClient.call(expect=...)instead. #4464- String return values are deprecated in functions where the semantic result is a success (specifically those that were returning the message from Trezor's
Successresponse). Type annotations are updated tostr | None, and in a future release those functions will be returningNoneon success, or raise an exception on a failure. #4464 device.reset()is deprecated, migrate todevice.setup(). #4464- Return value of
device.recover()is deprecated. In the future, this function will returnNone. #4464
Removed
Fixed
- It is now possible to interrupt USB communication (via Ctrl+C, or a signal, or any other way). #4089
- Use
frozensetformodels.TREZORSto prevent accidental modification.
Incompatible changes
- Return values in
solanamodule were changed from the wrapping protobuf messages to the raw inner values (strfor address,bytesfor pubkey / signature). #4464 trezorctl devicecommands whose default result is a success will not print anything to stdout anymore, in line with Unix philosophy. #4464
0.13.9 (2024-06-19)
Added
- trezorctl: Automatically go to bootloader when upgrading firmware. #2919
- Support interaction-less upgrade. #2919
- Added user adjustable brightness setting. #3208
- Added Solana support. #3359
- trezorctl: support for human-friendly Trezor Safe device authenticity check (requires separate installation of
cryptographylibrary). #3364 - Added support for T3T1. #3422
- Stellar: add support for StellarClaimClaimableBalanceOp. #3434
- Cardano: Added support for tagged sets in CBOR (tag 258). #3496
- Cardano: Added support for Conway certificates. #3496
- Added ability to request Shamir backups with any number of groups/shares. #3636
- Added flag for setting up device using SLIP39 "single". #3868
- Added
--qualityargument totrezorctl set homescreen. #3893
Changed
- Renamed
trezorctl device self-testcommand totrezorctl device prodtest-t1. #3504 - Increased default JPEG quality for uploaded homescreen. #3893
Incompatible changes
- Renamed flag used for setting up device using BIP39 to
bip39. #3868 - Minimum required Python version is now 3.8.
0.13.8 (2023-10-19)
Added
- Added full support for Trezor Safe 3 (T2B1).
- Added support for STM32F429I-DISC1 board #2989
- Add support for address chunkification in Receive and Sign flow. #3237
- Implement device authenticate command. #3255
- trezorctl: support unlocking bootloader via
trezorctl device unlock-bootloader.
Changed
- Use 'h' character for hardened BIP-32 components in help texts. #3037
- trezorctl: Use 'h' character in generated descriptors. #3037
- ClickUI: notify user in terminal that they should enter PIN or passphrase on Trezor. #3203
- Internal names are used consistently in constants and names. Original model-based names are kept as aliases for backwards compatibility.
- Trezor model detection will try to use the
internal_namefield.
Fixed
- Drop simple-rlp dependency and use internal copy #3045
- Fixed printing Trezor model when validating firmware image #3227
- Corrected vendor header signing keys for Safe 3 (T2B1).
0.13.7 (2023-06-02)
Added
- Recognize signing keys for T2B1.
- Add possibility to call tutorial flow #2795
- Add ability to change homescreen for Model R #2967
- Recognize hw model field in vendor headers. #3048
0.13.6 (2023-04-24)
Added
- Signed Ethereum network and token definitions from host #15
- Support SLIP-25 in get-descriptor. #2541
- trezorctl: Support prompt configuration for
encrypt-keyvalue/decrypt-keyvalue. #2608 - Support for external reward addresses in Cardano CIP-36 registrations #2692
- Auto-convert image to Trezor's homescreen format. #2880
Changed
trezorctl firmware verifychanged order of checks - fingerprint is validated before signatures. #2745
Fixed
- Removed attempt to initialize the device after wipe in bootloader mode #2221
- Limit memory exhaustion in protobuf parser. #2439
trezorctl ethereum sign-tx: renamed--gas-limitshortcut to-Gto avoid collision with-t/--token#2535- Fixed behavior of UDP transport search by path when full path is provided and prefix_search is True #2786
- Fixed behavior of
trezorctl fwwith unsigned Trezor One firmwares. #2801 - Improve typing information when
TrezorClienthas a more intelligent UI object. #2832 - When enabling passphrase force-on-device, do not also prompt to enable passphrase if it is already enabled. #2833
0.13.5 (2022-12-28)
Added
- Add support for model field in firmware image. #2701
- Add support for v3-style Trezor One signatures. #2701
Changed
- More structured information about signing keys for different models. #2701
Incompatible changes
- Instead of accepting a list of public keys,
FirmwareType.verify()accepts a parameter configuring whether to use production or development keys. #2701
0.13.4 (2022-11-04)
Added
- Add UnlockPath message. #2289
- Added new TOI formats - little endian full-color and even-high grayscale #2414
- Add device set-busy command to trezorctl. #2445
- Support SLIP-25 accounts in get-public-node and get-address. #2517
- Add possibility to save emulator screenshots. #2547
- Support for Cardano CIP-36 governance registration format #2561
Removed
- Remove DATA parameter from trezorctl cosi commit.
- Remove firmware dumping capability. #2433
Fixed
- Fixed issue where type declarations were not visible to consumer packages. #2542
Incompatible changes
- Refactored firmware parsing and validation to a more object oriented approach. #2576
0.13.3 (2022-07-13)
Added
- Support for Cardano Babbage era transaction items #2354
Fixed
- Fix Click 7.x compatibility. #2364
0.13.2 (2022-06-30)
Fixed
- Fixed dependency error when running trezorctl without PIL.
- Fixed dependency error when running trezorctl on Python 3.6 without rlp.
- Fix
trezorctl --versioncrash. #1702
0.13.1 (2022-06-29)
Added
- New exception type
DeviceIsBusyindicates that the device is in use by another process. #1026 - Support payment requests and GetNonce command. #1430
- Add press_info() to DebugLink. #1430
- Add support for blind EIP-712 signing for Trezor One #1970
- Add ScriptUI for trezorctl, spawned by --script option #2023
- Support T1 screenshot saving in Debuglink #2093
- Support generating Electrum-compatible message signatures in CLI. #2100
- Support Cardano Alonzo-era transaction items and --include-network-id flag #2114
- trezorctl: Bitcoin commands can detect script type from derivation path. #2159
- Add support for model R #2230
- Add firmware get-hash command. #2239
- Jump and stay in bootloader from firmware through SVC call reverse trampoline. #2284
Changed
- Unify boolean arguments/options in trezorlib commands to on/off #2123
- Rename
normalize_nfctoprepare_message_bytesin tools.py #2126 trezorctl moneronetwork type arguments now accept symbolic names instead of numbers. #2219
Fixed
- trezorctl will correctly report that device is in use. #1026
- Allow passing empty
message_hashfor domain-only EIP-712 hashes for Trezor T1 (i.e. whenprimaryType=EIP712Domain) #2036 - Fixed error when printing protobuf message with a missing required field. #2135
- Add compatibility with Click 8.1 #2199
0.13.0 - 2021-12-09
Added
trezorctl firmware updateshows progress bar (Model T only)- Enabled session management via
EndSession#1227 - Added parameters to enable Cardano derivation when calling
init_device(). #1231 - two new trezorctl commands -
trezorctl firmware downloadandtrezorctl firmware verify#1258 - Support no_script_type option in SignMessage. #1586
- Support for Ethereum EIP1559 transactions #1604
- Debuglink can automatically scroll through paginated views. #1671
- Support for Taproot descriptors #1710
trezorlib.stellar.from_envelopewas added, it includes support for the Stellar TransactionV1 format transaction. #1745- Ethereum: support 64-bit chain IDs #1771
- Support for Cardano multi-sig transactions, token minting, script addresses, multi-sig keys, minting keys and native script verification #1772
- Added parameters to specify kind of Cardano derivation to all functions and
trezorctlcommands. #1783 - Support for EIP-712 in library and
trezorctl ethereum sign-typed-data#1835 - Add script_pubkey field to TxInput message. #1857
- Full type hinting checkable with pyright #1893
Changed
- protobuf is aware of
requiredfields and default values #379 trezorctl firmware-updatecommand changed totrezorctl firmware update#1258btc.sign_tx()accepts keyword arguments for transaction metadata #1266- Raise
ValueErrorwhen the txid for an input is not present inprev_txesduringbtc.sign_tx#1442 trezorlib.mappingswas refactored for easier customization #1449- Refactor protobuf codec for better clarity #1541
UdpTransport.wait_until_readyno longer sets socket to nonblocking #1668- Cardano transaction parameters are now streamed into the device one by one instead of being sent as one large object #1683
trezorlib.stellarwill refuse to process transactions containing MuxedAccount #1838- Use unified descriptors format. #1885
- Introduce Trezor models as an abstraction over USB IDs, vendor strings, and possibly protobuf mappings. #1967
Deprecated
- instantiating protobuf objects with positional arguments is deprecated #379
detailsargument tobtc.sign_tx()is deprecated. Use keyword arguments instead. #379- values of required fields must be supplied at instantiation time. Omitting them is deprecated. #379
Removed
- dropped Python 3.5 support #810
- dropped debug-only
trezorctl debug show-textfunctionality #1531 - Removed support for Lisk #1765
Fixed
- fix operator precedence issue for ethereum sign-tx command #1867
- Updated
tools/build_tx.pyto work with Blockbook's API protections. #1896 - Fix PIN and passphrase entry in certain terminals on Windows #1959
Incompatible changes
client.init_device(derive_cardano=True)must be used before calling Cardano functions. #1231- The type of argument to
ui.button_request(x)is changed from int to ButtonRequest. The original int value can be accessed asx.code#1671 - Due to transaction streaming in Cardano, it isn't possible to return the whole serialized transaction anymore. Instead the transaction hash, transaction witnesses and auxiliary data supplement are returned and the serialized transaction needs to be assembled by the client. #1683
trezorlib.stellarwas reworked to use stellar-sdk instead of providing local implementations #1745- Cardano derivation now defaults to Icarus method. This will result in different keys for users with 24-word seed. #1783
0.12.4 - 2021-09-07
Fixed
- trezorctl: fixed "Invalid value for " when using Click 8 and param is not specified #1798
0.12.3 - 2021-07-29
Added
trezorctl btc get-descriptorsupport #1363trezorctl btc reboot-to-bootloadersupport #1738- distinguishing between temporary and permanent safety checks
- trezorctl accepts PIN entered by letters (useful on laptops)
- support for 50-digit PIN for T1
Changed
- allowed Click 8.x as a requirement
- replaced all references to Trezor Wallet with Trezor Suite, and modified all mentions of Beta Wallet
Fixed
- added missing requirement
attrs - properly parse big numbers in
tools/build_tx.py#1257, #1296 - it is now possible to set safety checks for T1
0.12.2 - 2020-08-27
Added
trezorlib.toifmodule (moved from internal) can encode and decode TOIF image formattrezorctl set homescreenwas improved and extended to support PNG images for Trezor T
Changed
- trezorctl will correctly notify the user if the image decoding library is missing
Fixed
- fix exception in
trezorctl btc get-address#1179 - fix exception in
trezorctl lisk sign-message - fix exception in trezorctl commands that accept filenames #1196
- fix "Invalid homescreen" error when un-setting homescreen
Removed
- removed option
--skip-vendor-headerfromtrezorctl firmware-updatewhich did nothing #1210
0.12.1 - 2020-08-05
Added
trezorctl set safety-checkscontrols the new "safety checks" feature. #1126trezorctl btc get-addresscan create multisig addresses.- the following commands are now equivalent in trezorctl:
firmware-update,firmware-upgrade,update-firmware,upgrade-firmware - support for EXTERNAL input type #38, #1052
- support for ownership proofs
- support for pre-authorized CoinJoin transactions #37
- support for Cardano Shelley #948
Changed
- do not allow setting auto-lock delay unless PIN is configured
Fixed
- correctly calculate hashes for very small firmwares f#1082
- unified file arguments in trezorctl
TrezorClient.ping()does not crash when device is PIN-locked
0.12.0 - 2020-04-01
Incompatible changes
trezorlib.coins,trezorlib.tx_api, and the filecoins.json, were removedTrezorClientargumentuiis now mandatory.stateargument was renamed tosession_id.- UI callback
get_passphrase()has a new argumentavailable_on_device. - API for
cosimodule was changed - other changes may also introduce incompatibilities, please review the full list below
Added
- support for firmwares 1.9.0 and 2.3.0
- Model T now defaults to entering passphrase on device. New trezorctl option
-Penforces entering passphrase on host. - support for "passphrase always on device" mode on model T
- new trezorctl command
get-sessionand option-sallows entering passphrase once for multiple subsequent trezorctl operations - built-in functionality of UdpTransport to wait until an emulator comes up, and the
related command
trezorctl wait-for-emulator trezorctl debug send-bytescan send raw messages to the device f#116- when updating firmware, user is warned that the requested version does not match their device f#823
trezorctl listcan now show name, model and id of device
Changed
trezorlib.tx_api.json_to_txwas reduced to only support Bitcoin fields, and moved totrezorlib.btc.from_json.- API for
cosimodule was streamlined:verify_m_of_nis nowverify, the oldverifyisverify_combined - internals of firmware parsing were reworked to support signing firmware headers
get_default_clientrespectsTREZOR_PATHenvironment variable- UI callback
get_passphrasehas an additional argumentavailable_on_device, indicating that the connected Trezor is capable of on-device entry Transport.writeandreadmethod signatures changed to accept bytes instead of protobuf messages- trezorctl subcommands have a common
@with_clientdecorator that manages exception handling and connecting to device
Fixed
- trezorctl does not print empty line when there is no output
- trezorctl cleanly reports wire exceptions f#226
Removed
trezorlib.tx_apiwas removedtrezorlib.coinsand coin data was removedtrezorlib.ckd_public, which was deprecated in 0.10, was now removed.btc.sign_txwill not preload transaction data fromprev_txes, as usage with TxApi is being removed- PIN protection and passphrase protection for
ping()command was removed - compatibility no-op code from trezorlib 0.9 was removed from
trezorlib.client trezorlib.tools.CallExceptionwas dropped, usetrezorlib.exceptions.TrezorFailureinstead
0.11.6 - 2019-12-30
Added
- support for get-and-increase FIDO counter operation
- support for setting wipe code
trezorctl device recoversupports--u2f-counteroption to set the FIDO counter to a custom value
Changed
trezorctlcommand was reworked for ease of use and maintenance. Seetrezorctl --helpandOPTIONS.rstfor details. f#510- updated EOS transaction parser to match
cleosindelegatebwandundelegatebwactions f#680 f#681 RecoveryDevicedoes not set fields when doing dry-run recovery f#666
Fixed
- fixed "expand words" functionality in
trezorctl device recoverf#778
Removed
- trezorctl no longer interactively signs Bitcoin-like transactions, the only allowed
input format is JSON. See
docs/transaction-format.mdfor details. - support for "load device by xprv" was removed from firmware and trezorlib
0.11.5 - 2019-09-26
Added
- trezorctl can dump raw protobuf bytes in debug output f#117
- trezorctl shows a warning when activating Shamir Backup if the device does not support it f#445
- warnings are emitted when encountering unknown value for a protobuf enum f#363
- debug messages show enum value names instead of raw numbers
- support for packed repeated encoding in the protobuf decoder
- in
trezorctl firmware-update, the new--betaswitch enables downloading beta firmwares. By default, only stable firmware is used. f#411, f#420 - in
trezorctl firmware-update, the new--bitcoin-onlyswitch enables downloading Bitcoin-only firmware - support for FIDO2 resident credential management
- support for SD-protect features
Changed
- package directory structure was changed:
srcsubdirectory contains sources andtestssubdirectory contains tests, so that cwd is not cluttered trezorctlscript was moved into a moduletrezorlib.cli.trezorctland is launched through theentry_pointsmechanism. This makes it usable on Windowspyblake2is no longer required on Python 3.6 and up- input flows can only be used in with-block (only relevant for unit tests)
- if not specified, trezorctl will set label to "SLIP-0014" in SLIP-0014 mode
- in
clear_sessionthe client also forgets the passphrase state for TT f#525
Fixed
- trezorctl will properly check if a firmware is present on a new T1 f#224
Removed
- device test suite was moved out of trezor package
0.11.4 - 2019-07-31
Added
- trezorctl support for SLIP-39 Shamir Backup
- support for Binance Chain
0.11.3 - 2019-05-29
Added
- trezorctl can now send ERC20 tokens
- trezorctl usb-reset will perform USB reset on devices in inconsistent state
- set-display-rotation command added for TT firmware 2.1.1
- EOS support f#87
- Tezos: add voting support f#41
dict_to_protonow allows enum values as strings
Changed
- Minimum firmware versions bumped to 1.8.0 and 2.1.0
- Cleaner errors when UI object is not supplied
- Generated files are now part of the source tarball again. That means that
protocis no longer required.
Fixed
- Ethereum commands in trezorctl now work
- Memory debugging tools now work again
Removed
- Tron and Ontology support removed until implementations exist in Trezor firmware
0.11.2 - 2019-02-27
Added
- full support for bootloader 1.8.0 and relevant firmware upgrade functionality
- trezorctl: support fully offline signing JSON-encoded transaction data
- trezorctl: dry-run for firmware upgrade command
- client: new convenience function
get_default_clientfor simple script usage - Dash: support DIP-2 special inputs #351
- Ethereum: add get_public_key methods
Changed
- coins with BIP-143 fork id (BCH, BTG) won't require prev_tx #352
- device recovery will restore U2F counter
- Cardano: change
networktoprotocol_magic - tests can run interactively when
INTERACT=1environment variable is set - protobuf: improved
to_dictfunction
Deprecated
- trezorctl: interactive signing with
sign-txis considered deprecated
0.11.1 - 2018-12-28
Fixed
- crash when entering passphrase on device with Trezor T
- Qt widgets should only import QtCore #349
0.11.0 - 2018-12-06
Incompatible changes
- removed support for Python 3.3 and 3.4
- major refactor of
TrezorClientand UI handling. Implementers must now provide a "UI" object instead of overriding callbacks #307, #314 - protobuf classes now use a
get_fields()method instead ofFIELDSfield #312 - all methods on
TrezorClientclass are now in separate modules and take aTrezorClientinstance as argument #276 - mixin classes are also removed, you are not supposed to extend
TrezorClientanymore TrezorClientDebugLinkwas moved todebuglinkmodule- changed signature of
trezorlib.btc.sign_tx @fielddecorator was replaced by an argument to@expect
Added
- trezorlib now has a hardcoded check preventing use of outdated firmware versions #283
- Ripple support #286
- Zencash support #287
- Cardano support #300
- Ontology support #301
- Tezos support #302
- Capricoin support #325
- limited Monero support (can only get address/watch key, monerowallet is required for signing)
- support for input flow in tests makes it easier to control complex UI workflows #314
protobuf.dict_to_protocan create a protobuf instance from a plain dict- support for smarter methods in trezord 2.0.25 and up
- support for seedless setup
- trezorctl: firmware handling is greatly improved #304, #308
- trezorctl: Bitcoin-like signing flow is more user-friendly
tx_apinow supports Blockbook backend servers
Changed
- better reporting for debuglink expected messages
- replaced Ed25519 module with a cleaner, optimized version
- further reorganization of transports makes them more robust when dependencies are missing
- codebase now follows Black code style
- in Qt modules, Qt5 is imported first #315
TxApiInsightis justTxApidevice.resetanddevice.recovernow have reasonable defaults for all arguments- protobuf classes are no longer part of the source distribution and must be compiled locally #284
- Stellar: addresses are always strings
Removed
set_tx_apimethod onTrezorClientis replaced by an argument forsign_tx- caching functionality of
TxApiwas moved to a separate test-support class - Stellar: public key methods removed
EncryptMessageandDecryptMessageactions are gone
Fixed:
TrezorClientcan now detect when a HID device is removed and a different one is plugged in on the same path- trezorctl now works with Click 7.0 and considers "
_" and "-" as same in command names #314 - bash completion fixed
- Stellar: several bugs in the XDR parser were fixed
0.10.2 - 2018-06-21
Added
stellar_get_addressand_public_keyfunctions supportshow_displayparameter- trezorctl:
stellar_get_addressand_public_keycommands for the respective functionality
Removed
- trezorctl:
list_coinsis removed because we no longer parse the relevant protobuf field (and newer Trezor firmwares don't send it) #277
Fixed
- test support module was not included in the release, so code relying on the deprecated
ckd_publicmodule would fail #280
0.10.1 - 2018-06-11
Fixed
- previous release fails to build on Windows #274
0.10.0 - 2018-06-08
Added
- Lisk support #197
- Stellar support #167, #268
- Wanchain support #230
- support for "auto lock delay" feature
TrezorClienttakes an additional argumentstatethat allows reusing the previously entered passphrase #241- USB transports mention udev rules in exception messages #245
log.enable_debug_outputfunction turns on wire logging, instead of having to useTrezorClientVerbose- BIP32 paths now support
123hin addition to123'to indicate hardening - trezorctl:
-pnow supports prefix search for device path #226 - trezorctl: smarter handling of firmware updates #242, #269
Changed
- reorganized transports and moved into their own
transportsubmodule - protobuf messages and coins info is now regenerated at build time from the
trezor-commonrepository #248 - renamed
ed25519rawto_ed25519to indicate its privateness - renamed
ed25519cositocosiand expanded its API - protobuf messages are now logged through Python's
loggingfacility instead of custom printing throughVerboseWireMixin client.format_protobufis moved toprotobuf.format_messagetools.Hashis renamed totools.btc_hashcoinsmodulecoins_txapiis renamed totx_api.coins_slip44is renamed toslip44.- build: stricter flake8 checks
- build: split requirements to separate files
- tests: unified finding test device, while respecting
TREZOR_PATHenv variable. - tests: auto-skip appropriately marked tests based on Trezor device version
- tests: only show wire output when run with
-v - tests: allow running
xfailed tests selectively based onpytest.ini - docs: updated README with clearer install instructions #185
- docs: switched changelog to Keep a Changelog format #94
Deprecated
ckd_publicis only maintained intests.supportsubmodule and considered privateTrezorClient.expand_pathis moved to plain functiontools.parse_pathTrezorDeviceis deprecated in favor oftransport.enumerate_devicesandtransport.get_transport- XPUB-related handling in
toolsis slated for removal
Removed
- most Python 2 compatibility constructs are gone #229
TrezorClientVerboseandVerboseWireMixinis removed- specific
tx_api.TxApi*classes removed in favor ofcoins.tx_api client.PRIME_DERIVATION_FLAGis removed in favor oftools.HARDENED_FLAGandtools.H_()- hard dependency on Ethereum libraries and HIDAPI is changed into extras that need to be
specified explicitly. Require
trezor[hidapi]ortrezor[ethereum]to get them.
Fixed
- WebUSB enumeration returning bad devices on Windows 10 #223
sign_txoperation sending empty address string #237- Wrongly formatted Ethereum signatures #236
- protobuf layer would wrongly encode signed integers #249, #250
- protobuf pretty-printing broken on Python 3.4 #256
- trezorctl: Matrix recovery on Windows wouldn't allow backspace #207
- aes_encfs_getpass.py: fixed Python 3 bug #169
0.9.1 - 2018-03-05
Added
- proper support for Trezor model T
- support for Monacoin
- improvements to
trezorctl:- add pretty-printing of features and protobuf debug dumps (fixes #199)
- support
TREZOR_PATHenvironment variable to preselect a Trezor device.
Removed
- gradually dropping Python 2 compatibility (pypi package will now be marked as Python 3 only)