@trezor/connect 9.5.4 → 9.5.5-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. package/CHANGELOG.md +794 -775
  2. package/README.md +5 -5
  3. package/lib/api/bitcoin/TransactionComposer.d.ts +3 -1
  4. package/lib/api/bitcoin/TransactionComposer.js +6 -3
  5. package/lib/api/bitcoin/index.d.ts +0 -1
  6. package/lib/api/bitcoin/index.js +0 -1
  7. package/lib/api/bitcoin/transactionBytes.d.ts +5 -0
  8. package/lib/api/bitcoin/transactionBytes.js +74 -0
  9. package/lib/api/bleUnpair.d.ts +9 -0
  10. package/lib/api/bleUnpair.js +36 -0
  11. package/lib/api/blockchainEstimateFee.js +4 -16
  12. package/lib/api/common/Discovery.d.ts +12 -10
  13. package/lib/api/common/Discovery.js +2 -4
  14. package/lib/api/composeTransaction.js +1 -1
  15. package/lib/api/ethereum/api/ethereumSignMessage.d.ts +6 -0
  16. package/lib/api/ethereum/api/ethereumSignMessage.js +10 -0
  17. package/lib/api/ethereum/api/ethereumSignTransaction.d.ts +21 -1
  18. package/lib/api/ethereum/api/ethereumSignTransaction.js +66 -0
  19. package/lib/api/ethereum/api/ethereumSignTypedData.d.ts +6 -0
  20. package/lib/api/ethereum/api/ethereumSignTypedData.js +10 -0
  21. package/lib/api/getFeatures.js +1 -0
  22. package/lib/api/index.d.ts +1 -0
  23. package/lib/api/index.js +3 -1
  24. package/lib/api/signMessage.d.ts +8 -0
  25. package/lib/api/signMessage.js +16 -6
  26. package/lib/api/signTransaction.d.ts +205 -0
  27. package/lib/api/signTransaction.js +43 -0
  28. package/lib/api/solana/api/solanaSignTransaction.d.ts +20 -0
  29. package/lib/api/solana/api/solanaSignTransaction.js +132 -0
  30. package/lib/api/solana/solanaUtils.d.ts +1 -0
  31. package/lib/api/solana/solanaUtils.js +2 -1
  32. package/lib/backend/BackendManager.js +1 -1
  33. package/lib/backend/Blockchain.d.ts +1 -3
  34. package/lib/backend/Blockchain.js +1 -21
  35. package/lib/{api/bitcoin/BitcoinFees.d.ts → backend/fees/BitcoinFeeLevels.d.ts} +5 -6
  36. package/lib/{api/bitcoin/BitcoinFees.js → backend/fees/BitcoinFeeLevels.js} +5 -4
  37. package/lib/{api/ethereum/EthereumFees.d.ts → backend/fees/EthereumFeeLevels.d.ts} +4 -5
  38. package/lib/{api/ethereum/EthereumFees.js → backend/fees/EthereumFeeLevels.js} +4 -5
  39. package/lib/{api/common/MiscFees.d.ts → backend/fees/MiscFeeLevels.d.ts} +3 -3
  40. package/lib/{api/common/MiscFees.js → backend/fees/MiscFeeLevels.js} +3 -2
  41. package/lib/backend/fees/index.d.ts +6 -0
  42. package/lib/backend/fees/index.js +33 -0
  43. package/lib/constants/firmware.d.ts +0 -1
  44. package/lib/constants/firmware.js +1 -2
  45. package/lib/core/AbstractMethod.d.ts +7 -4
  46. package/lib/core/AbstractMethod.js +8 -1
  47. package/lib/core/index.d.ts +0 -1
  48. package/lib/core/index.js +22 -27
  49. package/lib/core/onCallFirmwareUpdate.js +1 -1
  50. package/lib/data/DataManager.d.ts +4 -1
  51. package/lib/data/DataManager.js +7 -0
  52. package/lib/data/config.d.ts +0 -14
  53. package/lib/data/config.js +3 -11
  54. package/lib/data/connectSettings.d.ts +5 -1
  55. package/lib/data/connectSettings.js +26 -2
  56. package/lib/data/defaultFeeLevels.js +3 -3
  57. package/lib/data/deviceAuthenticityConfig.js +22 -7
  58. package/lib/data/thpSettings.d.ts +3 -0
  59. package/lib/data/thpSettings.js +37 -0
  60. package/lib/data/version.d.ts +1 -1
  61. package/lib/data/version.js +1 -1
  62. package/lib/device/Device.d.ts +8 -11
  63. package/lib/device/Device.js +40 -80
  64. package/lib/device/DeviceCurrentSession.d.ts +9 -1
  65. package/lib/device/DeviceList.js +1 -1
  66. package/lib/events/index.d.ts +2 -0
  67. package/lib/events/ui-request.d.ts +18 -4
  68. package/lib/events/ui-request.js +1 -0
  69. package/lib/events/ui-response.d.ts +7 -1
  70. package/lib/events/ui-response.js +1 -0
  71. package/lib/factory.js +1 -0
  72. package/lib/tsconfig.lib.tsbuildinfo +1 -1
  73. package/lib/types/api/bleUnpair.d.ts +4 -0
  74. package/lib/types/api/bleUnpair.js +3 -0
  75. package/lib/types/api/index.d.ts +2 -0
  76. package/lib/types/api/solana/index.d.ts +4 -0
  77. package/lib/types/api/solana/index.js +1 -0
  78. package/lib/types/device.d.ts +4 -0
  79. package/lib/types/fees.d.ts +2 -0
  80. package/lib/types/fees.js +2 -0
  81. package/lib/types/firmware.d.ts +5 -0
  82. package/lib/types/settings.d.ts +20 -2
  83. package/lib/utils/firmwareUtils.d.ts +3 -1
  84. package/lib/utils/firmwareUtils.js +7 -1
  85. package/lib/utils/uiPromiseManager.d.ts +2 -0
  86. package/lib/utils/versionCheck.js +1 -1
  87. package/package.json +16 -16
package/CHANGELOG.md CHANGED
@@ -1,96 +1,115 @@
1
1
  | Package | Stable | Canary |
2
2
  | :------------------------------: | :----: | :----------: |
3
- | npm @trezor/connect | 9.5.4 | - |
4
- | npm @trezor/connect-web | 9.5.4 | - |
5
- | npm @trezor/connect-webextension | 9.5.4 | - |
3
+ | npm @trezor/connect | 9.5.4 | 9.5.5-beta.1 |
4
+ | npm @trezor/connect-web | 9.5.4 | 9.5.5-beta.1 |
5
+ | npm @trezor/connect-webextension | 9.5.4 | 9.5.5-beta.1 |
6
6
  | npm @trezor/connect-mobile | - | 0.0.1-beta.1 |
7
7
 
8
- | Deployment | Stable | Canary |
9
- | :----------------: | :----: | :----: |
10
- | connect.trezor.io/ | 9.5.4 | - |
8
+ | Deployment | Stable | Canary |
9
+ | :----------------: | :----: | :----------: |
10
+ | connect.trezor.io/ | 9.5.4 | 9.5.5-beta.1 |
11
11
 
12
12
  Use the persistent link [connect.trezor.io/9](https://connect.trezor.io/9/) to access the latest stable version of Connect Explorer.
13
13
 
14
+ # 9.5.5-beta.1
15
+
16
+ This release is mostly about refactoring and preparatory work for the new way of using TrezorConnect together with Trezor Suite as its UI.
17
+
18
+ ## Features
19
+
20
+ - Improvements in fees estimation (feebc12, 0eebb7f, df8656b)
21
+ - 'Seedless' devices now do not prompt for firmware update. (cac7eb4)
22
+
23
+ ## Fixes
24
+
25
+ - catch requestDevice error (df1134c)
26
+ - Failure typing fixed (54da299)
27
+
28
+ ## Chores
29
+
30
+ - update device authenticity config (7bc4717)
31
+ - tighten validation of manifest.appIcon and manifest.appName (23d9c55)
32
+
14
33
  # 9.5.4
15
34
 
16
35
  If you are using @trezor/connect-web you must be using at least 9.1.5 starting from this release.
17
36
 
18
37
  ## Features
19
38
 
20
- - add descriptor to getPublicKey response (cbfec9b)
21
- - implement EVM EIP-1559 fees for ethereum in blockchainEstimateFee method (0475047)
22
- - improvements in @trezor/connect-web package regarding support of calling @trezor/connect inside suite-desktop application. always attempt reconnection for core in desktop (21da232); implement @trezor/websocket client in core-in-suite-desktop (9744c5b); error fallback for core in desktop (64cbd47)
39
+ - add descriptor to getPublicKey response (cbfec9b)
40
+ - implement EVM EIP-1559 fees for ethereum in blockchainEstimateFee method (0475047)
41
+ - improvements in @trezor/connect-web package regarding support of calling @trezor/connect inside suite-desktop application. always attempt reconnection for core in desktop (21da232); implement @trezor/websocket client in core-in-suite-desktop (9744c5b); error fallback for core in desktop (64cbd47)
23
42
 
24
43
  ## Fixes
25
44
 
26
- - fixing session releasing on page unload (6d01d78)
27
- - fixing missing session owner in device object (e2116c1)
28
- - turn off language update during fw update for T3T1 since it does not fit device memory (283d829)
45
+ - fixing session releasing on page unload (6d01d78)
46
+ - fixing missing session owner in device object (e2116c1)
47
+ - turn off language update during fw update for T3T1 since it does not fit device memory (283d829)
29
48
 
30
49
  ## Chores
31
50
 
32
- - migrate ripple-lib to xrpl.js (422c175)
33
- - reuse PublicKey type in HDNodeResponse type definition (6c841d9)
34
- - update device authenticity config (bf82b92)
35
- - connect core refactoring (1d62c9b 19b6e5e 0dd2933 f9998f3 7dc1290 b685518 fb14734)
36
- - pass full request object parameter in blockchainEstimateFee method down to @trezor/blockchain-link to allow more fine-grained backend calls (19c5952)
37
- - refactoring in visual components (00e7df5, b3a4791)
51
+ - migrate ripple-lib to xrpl.js (422c175)
52
+ - reuse PublicKey type in HDNodeResponse type definition (6c841d9)
53
+ - update device authenticity config (bf82b92)
54
+ - connect core refactoring (1d62c9b 19b6e5e 0dd2933 f9998f3 7dc1290 b685518 fb14734)
55
+ - pass full request object parameter in blockchainEstimateFee method down to @trezor/blockchain-link to allow more fine-grained backend calls (19c5952)
56
+ - refactoring in visual components (00e7df5, b3a4791)
38
57
 
39
58
  ## Deps
40
59
 
41
- - update next-seo from 6.0.0 to 6.6.0 (b5a818e)
42
- - update swr from 2.2.5 to 2.3.3 (6d98da6)
43
- - update remark-gfm from 4.0.0 to 4.0.1 (21a8f89)
44
- - update zod from 3.23.8 to 3.24.2 (afc3d9b)
45
- - update ua-parser-js@2.0.3 (840d5c6)
46
- - upgrade next js for connect explorer theme (951e047)
60
+ - update next-seo from 6.0.0 to 6.6.0 (b5a818e)
61
+ - update swr from 2.2.5 to 2.3.3 (6d98da6)
62
+ - update remark-gfm from 4.0.0 to 4.0.1 (21a8f89)
63
+ - update zod from 3.23.8 to 3.24.2 (afc3d9b)
64
+ - update ua-parser-js@2.0.3 (840d5c6)
65
+ - upgrade next js for connect explorer theme (951e047)
47
66
 
48
67
  # 9.5.3
49
68
 
50
69
  ## Fixes
51
70
 
52
- - fix(connect-popup): clear timeout on failure to prevent changing of error screen after 90 seconds (08fe031)
53
- - fix(connect-popup): add missing margin after components update (0e5ea26)
71
+ - fix(connect-popup): clear timeout on failure to prevent changing of error screen after 90 seconds (08fe031)
72
+ - fix(connect-popup): add missing margin after components update (0e5ea26)
54
73
 
55
74
  ## Chores
56
75
 
57
- - chore(connect): in decode eth definitions move common proto messages related logic outside of foreach (5da7ec8)
58
- - fix(connect-popup): use local path to core (1f9e248, 241115c)
59
- - chore(connect-popup): refactor old templates (dfef1db)
76
+ - chore(connect): in decode eth definitions move common proto messages related logic outside of foreach (5da7ec8)
77
+ - fix(connect-popup): use local path to core (1f9e248, 241115c)
78
+ - chore(connect-popup): refactor old templates (dfef1db)
60
79
 
61
80
  # 9.5.2
62
81
 
63
82
  ## Feature
64
83
 
65
- - feat(connect-web): forward device events in popup mode (8589d27). From now on you may listen for device events even if you are using core logic loaded into connect.trezor.io/9/popup.html. This feature was previously available only in @trezor/connect or in @trezor/connect-web using iframe.
66
- - feat(connect-web): enable coreMode auto by default (061b28a). From now on (applies for @trezor/connect-web) if you don't pass `coreMode` in TrezorConnect.init, TrezorConnect would automatically fallback to loading connect-core into popup.html instead loading it into the injected iframe. This fallback happens in cases when iframe can't be injected or trezor-bridge is not running.
84
+ - feat(connect-web): forward device events in popup mode (8589d27). From now on you may listen for device events even if you are using core logic loaded into connect.trezor.io/9/popup.html. This feature was previously available only in @trezor/connect or in @trezor/connect-web using iframe.
85
+ - feat(connect-web): enable coreMode auto by default (061b28a). From now on (applies for @trezor/connect-web) if you don't pass `coreMode` in TrezorConnect.init, TrezorConnect would automatically fallback to loading connect-core into popup.html instead loading it into the injected iframe. This fallback happens in cases when iframe can't be injected or trezor-bridge is not running.
67
86
 
68
87
  ## Chores
69
88
 
70
- - chore(connect): Replace @solana/web3.js with @solana/kit
71
- - chore(connect): update device authenticity config (ecc04a4)
72
- - chore(connect-common): add fw binaries for 2.8.9 (63a69af)
73
- - stop exporting DeviceModelInternal enum (0ad5a37, 0bcf666, 465f40a). We believe that this was only used internally.
74
- - chore(connect-popup): bump deprecation warning to 9.4.0 (2d8d78d)
89
+ - chore(connect): Replace @solana/web3.js with @solana/kit
90
+ - chore(connect): update device authenticity config (ecc04a4)
91
+ - chore(connect-common): add fw binaries for 2.8.9 (63a69af)
92
+ - stop exporting DeviceModelInternal enum (0ad5a37, 0bcf666, 465f40a). We believe that this was only used internally.
93
+ - chore(connect-popup): bump deprecation warning to 9.4.0 (2d8d78d)
75
94
 
76
95
  ## Fixes
77
96
 
78
- - feat(connect): add errorPayload to FW revision check other-error (afe36df)
79
- - fix(connect): assign object instead of mutating (a09a669)
97
+ - feat(connect): add errorPayload to FW revision check other-error (afe36df)
98
+ - fix(connect): assign object instead of mutating (a09a669)
80
99
 
81
100
  # 9.5.1
82
101
 
83
102
  ## Feature
84
103
 
85
- - added backends so that each EVM has 4 endpoints (f5c057c)
86
- - logic for rent fee calculation (2650f6b)
104
+ - added backends so that each EVM has 4 endpoints (f5c057c)
105
+ - logic for rent fee calculation (2650f6b)
87
106
 
88
107
  ## Fixes
89
108
 
90
- - solana creating account parameter in e2e (356edd4)
91
- - reacquire when cancel timeouts (141a29c)
92
- - don't cancel preventively on T1 in certain cases (bf6d9ff)
93
- - FW revision check for unknown models (522880d)
109
+ - solana creating account parameter in e2e (356edd4)
110
+ - reacquire when cancel timeouts (141a29c)
111
+ - don't cancel preventively on T1 in certain cases (bf6d9ff)
112
+ - FW revision check for unknown models (522880d)
94
113
 
95
114
  # 9.5.0
96
115
 
@@ -101,59 +120,59 @@ This should help potential inconsistent states of device communication.
101
120
 
102
121
  ## Feature
103
122
 
104
- - trust \*.localhost subdomains (c148eeb)
105
- - solanaComposeTransaction method (e653ae9)
106
- - increase popup interaction timeout from 10 to 20 minutes (f800602)
107
- - blockchain methods now have support for various L2 ETH networks (26ff8ea, 38614db)
108
- - solana and Token-2022 tokens (9abc7d9)
109
- - show h instead of apostrophe in taproot xpub to be consistent with firmware (82e7d84)
110
- - remove Hash-Check from FW upgrade (it is performed on-device-connect anyway) (7413e2c)
111
- - enable taproot in connect discovery in popup (b1ea07e)
112
- - add fw binaries for 2.8.8 and 1.13.0 (6ef1768), firmware update will be offered
113
- - feat(connect): upgrade to bridge when it starts (013f14a)
123
+ - trust \*.localhost subdomains (c148eeb)
124
+ - solanaComposeTransaction method (e653ae9)
125
+ - increase popup interaction timeout from 10 to 20 minutes (f800602)
126
+ - blockchain methods now have support for various L2 ETH networks (26ff8ea, 38614db)
127
+ - solana and Token-2022 tokens (9abc7d9)
128
+ - show h instead of apostrophe in taproot xpub to be consistent with firmware (82e7d84)
129
+ - remove Hash-Check from FW upgrade (it is performed on-device-connect anyway) (7413e2c)
130
+ - enable taproot in connect discovery in popup (b1ea07e)
131
+ - add fw binaries for 2.8.8 and 1.13.0 (6ef1768), firmware update will be offered
132
+ - feat(connect): upgrade to bridge when it starts (013f14a)
114
133
 
115
134
  ## Fixes
116
135
 
117
- - edgecase where device is not detected during fw update using the old bridge (5fa3d45)
118
- - use serializeError on FW hash check errors (0aadfb0)
119
- - handle rejection in acquire/release (e47bf08)
120
- - allow firmwareUpdate from binary without known device.firmwareRelease (7517a71)
121
- - filterSafeListByBootloader: current bootloader version > recent release version (53d6e22)
122
- - fix potential device hang after received message assertion error (59d6e69)
123
- - fix device hanged after initial getFeatures timeout (bc385c2)
124
- - solana transaction decode (5cb1895)
125
- - resetDevice typed error (8795800)
126
- - clear initial GetFeatures timeout (c0a9ecc)
127
- - ethereum decimal places (c40929b)
128
- - fix(connect): gracefully handle offline FW revision check in react native (a969076)
129
- - fix(connect-explorer): pass description for nested parameters (fc44b51)
130
- - fix(connect): allow to: null in ethereumSignTransaction for contract deployment (1aa34bf)
136
+ - edgecase where device is not detected during fw update using the old bridge (5fa3d45)
137
+ - use serializeError on FW hash check errors (0aadfb0)
138
+ - handle rejection in acquire/release (e47bf08)
139
+ - allow firmwareUpdate from binary without known device.firmwareRelease (7517a71)
140
+ - filterSafeListByBootloader: current bootloader version > recent release version (53d6e22)
141
+ - fix potential device hang after received message assertion error (59d6e69)
142
+ - fix device hanged after initial getFeatures timeout (bc385c2)
143
+ - solana transaction decode (5cb1895)
144
+ - resetDevice typed error (8795800)
145
+ - clear initial GetFeatures timeout (c0a9ecc)
146
+ - ethereum decimal places (c40929b)
147
+ - fix(connect): gracefully handle offline FW revision check in react native (a969076)
148
+ - fix(connect-explorer): pass description for nested parameters (fc44b51)
149
+ - fix(connect): allow to: null in ethereumSignTransaction for contract deployment (1aa34bf)
131
150
 
132
151
  ## Chores
133
152
 
134
- - use target ES2022 from root tsconfig.lib (2b75843, 83b4e69, a0395a2, d52b30b)
135
- - docs(connect-mobile): improve description of deeplinking protocol (aa1436e)
136
- - chore(connect-common): update authenticity config (6ba9ead)
137
- - unify timeout utils (fd9f509, dedff02, 4b57c17)
138
- - chore: update solana and everstake deps (cf806ff)
139
- - chore(connect-plugin-ethereum): update dep (91da7e7)
140
- - chore(connect-plugin-stellar): update dep (daffb20)
141
- - chore(suite): bump webpack (eab0cc7)
142
- - chore(suite-desktop): bump electron-builder (306a3cf)
143
- - chore(suite-desktop): bump electron (4641b02)
144
- - define TrezorError.toString with pertinent info (ad09f50)
145
- - emit FIRMWARE_VERSION_CHANGED event (d6de99a)
146
- - return firmwareUpdate installed version details (4b6efed)
147
- - add validation schema to cardanoComposeTransaction (05e52d8)
148
- - solanaSignTransaction serialize (bb73ba6)
149
- - multitransport (ff74c08, 1c89c28, 4424d07)
150
- - add setTransports method (4880cd3)
151
- - resetDevice with entropy check (c750a73)
152
- - introduce internal_model UNKNOWN for non-standard models (289ebe9, e6c74f1)
153
- - rename bnb to bsc (cc18737)
154
- - make types strict to prevent accidental deletion via unused types, the optionality is a trap, they are required (184ebbb)
155
- - remove account.addresses from cardanoComposeTransaction (1946d9f)
156
- - clone udev/bridge info (a6d61a2)
153
+ - use target ES2022 from root tsconfig.lib (2b75843, 83b4e69, a0395a2, d52b30b)
154
+ - docs(connect-mobile): improve description of deeplinking protocol (aa1436e)
155
+ - chore(connect-common): update authenticity config (6ba9ead)
156
+ - unify timeout utils (fd9f509, dedff02, 4b57c17)
157
+ - chore: update solana and everstake deps (cf806ff)
158
+ - chore(connect-plugin-ethereum): update dep (91da7e7)
159
+ - chore(connect-plugin-stellar): update dep (daffb20)
160
+ - chore(suite): bump webpack (eab0cc7)
161
+ - chore(suite-desktop): bump electron-builder (306a3cf)
162
+ - chore(suite-desktop): bump electron (4641b02)
163
+ - define TrezorError.toString with pertinent info (ad09f50)
164
+ - emit FIRMWARE_VERSION_CHANGED event (d6de99a)
165
+ - return firmwareUpdate installed version details (4b6efed)
166
+ - add validation schema to cardanoComposeTransaction (05e52d8)
167
+ - solanaSignTransaction serialize (bb73ba6)
168
+ - multitransport (ff74c08, 1c89c28, 4424d07)
169
+ - add setTransports method (4880cd3)
170
+ - resetDevice with entropy check (c750a73)
171
+ - introduce internal_model UNKNOWN for non-standard models (289ebe9, e6c74f1)
172
+ - rename bnb to bsc (cc18737)
173
+ - make types strict to prevent accidental deletion via unused types, the optionality is a trap, they are required (184ebbb)
174
+ - remove account.addresses from cardanoComposeTransaction (1946d9f)
175
+ - clone udev/bridge info (a6d61a2)
157
176
 
158
177
  # 9.4.7
159
178
 
@@ -163,13 +182,13 @@ The serialization handling has been refactored with improved type checking to en
163
182
 
164
183
  ## Fixes
165
184
 
166
- - test(connect): improve serializeEthereumTx unit test (386dc36)
167
- - feat(connect): improve serializeEthereumTx (12fad78)
168
- - feat(connect): typed deepHexPrefix transform (1edbbc0)
169
- - fix(connect): eip1559 correct maxFeePerGas (4f5d6f3)
170
- - fix(connect): better mobile fetch errors (ad061ad)
171
- - feat(tests): allow for running e2e tests with emulator from URL or from specific firmware branch (6d157a0)
172
- - fix(connect-explorer): bundle adding problem (58e00b4)
185
+ - test(connect): improve serializeEthereumTx unit test (386dc36)
186
+ - feat(connect): improve serializeEthereumTx (12fad78)
187
+ - feat(connect): typed deepHexPrefix transform (1edbbc0)
188
+ - fix(connect): eip1559 correct maxFeePerGas (4f5d6f3)
189
+ - fix(connect): better mobile fetch errors (ad061ad)
190
+ - feat(tests): allow for running e2e tests with emulator from URL or from specific firmware branch (6d157a0)
191
+ - fix(connect-explorer): bundle adding problem (58e00b4)
173
192
 
174
193
  # 9.4.6
175
194
 
@@ -177,16 +196,16 @@ This release brings improvements and optimizations in Solana `getAccountInfo`. I
177
196
 
178
197
  ## Feature
179
198
 
180
- - add apiType to transports (f057f33)
181
- - add blocks to blockchainUnsubscribe (de01c1f)
199
+ - add apiType to transports (f057f33)
200
+ - add blocks to blockchainUnsubscribe (de01c1f)
182
201
 
183
202
  ## Fixes
184
203
 
185
- - move security checks outside getFeatures (e67810d)
186
- - use new improved cloneObject function (ee85d6d)
187
- - update device authenticity config (3689022)
188
- - add missing transport names (ef9f731)
189
- - solana optimized getAccountInfo (88b9c6d)
204
+ - move security checks outside getFeatures (e67810d)
205
+ - use new improved cloneObject function (ee85d6d)
206
+ - update device authenticity config (3689022)
207
+ - add missing transport names (ef9f731)
208
+ - solana optimized getAccountInfo (88b9c6d)
190
209
 
191
210
  # 9.4.5
192
211
 
@@ -194,25 +213,25 @@ We’ve reverted the default setting for nVersion in Connect back to nVersion=1.
194
213
 
195
214
  ## Feature
196
215
 
197
- - add blockchainGetInfo method (0bd3068)
198
- - types - export DisplayRotation type (6744666)
199
- - new way of using connect as a module in web (without iframe). This is meant for internal use for suite.trezor.io application.
216
+ - add blockchainGetInfo method (0bd3068)
217
+ - types - export DisplayRotation type (6744666)
218
+ - new way of using connect as a module in web (without iframe). This is meant for internal use for suite.trezor.io application.
200
219
 
201
220
  ## Fixes
202
221
 
203
- - add typesafe map types to models config for device names and variants (4d24e2b)
204
- chore(connect): default to nversion=1 again
222
+ - add typesafe map types to models config for device names and variants (4d24e2b)
223
+ chore(connect): default to nversion=1 again
205
224
 
206
225
  ## Dependencies updated
207
226
 
208
- - npm-release: @trezor/blockchain-link 2.3.4
209
- - npm-release: @trezor/blockchain-link-utils 1.2.4
210
- - npm-release: @trezor/analytics 1.2.4
211
- - npm-release: @trezor/connect-common 0.2.5
212
- - npm-release: @trezor/transport 1.3.5
213
- - npm-release: @trezor/protobuf 1.2.5
214
- - npm-release: @trezor/utxo-lib 2.2.4
215
- - npm-release: @trezor/utils 9.2.4
227
+ - npm-release: @trezor/blockchain-link 2.3.4
228
+ - npm-release: @trezor/blockchain-link-utils 1.2.4
229
+ - npm-release: @trezor/analytics 1.2.4
230
+ - npm-release: @trezor/connect-common 0.2.5
231
+ - npm-release: @trezor/transport 1.3.5
232
+ - npm-release: @trezor/protobuf 1.2.5
233
+ - npm-release: @trezor/utxo-lib 2.2.4
234
+ - npm-release: @trezor/utils 9.2.4
216
235
 
217
236
  # 9.4.4
218
237
 
@@ -220,30 +239,30 @@ This release among other improvements fixes a bug in ethereum serialization of e
220
239
 
221
240
  ## Feature
222
241
 
223
- - Show bundleprogress in popup. This is helpful when a 3rd party requests a big bundle of addresses which might take long to process (5cf9963)
242
+ - Show bundleprogress in popup. This is helpful when a 3rd party requests a big bundle of addresses which might take long to process (5cf9963)
224
243
 
225
244
  ## Fixes
226
245
 
227
- - preferred device handling based on (passphrase) state instead of path (58b854c)
228
- - fix "BetaOnly" component that is supposed to hide selected parts of content in beta environments (fdb433a)
229
- - blockchainEvmRpcCall postMessage instance not propagated correctly (c98a08e)
246
+ - preferred device handling based on (passphrase) state instead of path (58b854c)
247
+ - fix "BetaOnly" component that is supposed to hide selected parts of content in beta environments (fdb433a)
248
+ - blockchainEvmRpcCall postMessage instance not propagated correctly (c98a08e)
230
249
 
231
250
  ## Dependencies update
232
251
 
233
- - npm-release: @trezor/blockchain-link 2.3.3
234
- - npm-release: @trezor/blockchain-link-utils 1.2.3
235
- - npm-release: @trezor/blockchain-link-types 1.2.3
236
- - npm-release: @trezor/type-utils 1.1.2
237
- - npm-release: @trezor/connect-analytics 1.2.3
238
- - npm-release: @trezor/analytics 1.2.3
239
- - npm-release: @trezor/connect-common 0.2.4
240
- - npm-release: @trezor/env-utils 1.2.1
241
- - npm-release: @trezor/transport 1.3.4
242
- - npm-release: @trezor/protobuf 1.2.4
243
- - npm-release: @trezor/schema-utils 1.2.3
244
- - npm-release: @trezor/protocol 1.2.2
245
- - npm-release: @trezor/utxo-lib 2.2.3
246
- - npm-release: @trezor/utils 9.2.3
252
+ - npm-release: @trezor/blockchain-link 2.3.3
253
+ - npm-release: @trezor/blockchain-link-utils 1.2.3
254
+ - npm-release: @trezor/blockchain-link-types 1.2.3
255
+ - npm-release: @trezor/type-utils 1.1.2
256
+ - npm-release: @trezor/connect-analytics 1.2.3
257
+ - npm-release: @trezor/analytics 1.2.3
258
+ - npm-release: @trezor/connect-common 0.2.4
259
+ - npm-release: @trezor/env-utils 1.2.1
260
+ - npm-release: @trezor/transport 1.3.4
261
+ - npm-release: @trezor/protobuf 1.2.4
262
+ - npm-release: @trezor/schema-utils 1.2.3
263
+ - npm-release: @trezor/protocol 1.2.2
264
+ - npm-release: @trezor/utxo-lib 2.2.3
265
+ - npm-release: @trezor/utils 9.2.3
247
266
 
248
267
  # 9.4.3
249
268
 
@@ -251,72 +270,72 @@ This release introduces `@trezor/connect-mobile`, which allows mobile apps to in
251
270
 
252
271
  ## Feature
253
272
 
254
- - new (non public) method TrezorConnect.loadDevice (14aec5d5b6, f8a47401ec, 0d5b592ae7, e46c95ef9d, 18b5cbc9d3, 580f3a9325)
255
- - make TrezorConnect.init transportReconnect implicitly true (19aeb1a0f7)
256
- - in connect popup improve error handling screen for missing capabilities in FW (d2c8870944)
257
- - Support for t3w1 support in types (f98990dfa0, 01cdee48f1, e9827eeaa8)
258
- - remove auto-acquire after device was released elsewhere (dfa070fa2d, cdd2ac1ec7)
259
- - implement random strategy for utxo sorting (6c3137fdf8)
260
- - new public method TrezorConnect.blockchainEvmRpcCall (a507d1322a)
261
- - make `manifest.appUrl` available as part of `Device.transportSessionOwner` (c98f7f8bf4)
262
- - connect-mobile and deeplink (9f8f1c1bd2, d1c2bd7464, 40f3b53a34, fe8499ec1c, 1ff479c545, 1b88b3b72b)
273
+ - new (non public) method TrezorConnect.loadDevice (14aec5d5b6, f8a47401ec, 0d5b592ae7, e46c95ef9d, 18b5cbc9d3, 580f3a9325)
274
+ - make TrezorConnect.init transportReconnect implicitly true (19aeb1a0f7)
275
+ - in connect popup improve error handling screen for missing capabilities in FW (d2c8870944)
276
+ - Support for t3w1 support in types (f98990dfa0, 01cdee48f1, e9827eeaa8)
277
+ - remove auto-acquire after device was released elsewhere (dfa070fa2d, cdd2ac1ec7)
278
+ - implement random strategy for utxo sorting (6c3137fdf8)
279
+ - new public method TrezorConnect.blockchainEvmRpcCall (a507d1322a)
280
+ - make `manifest.appUrl` available as part of `Device.transportSessionOwner` (c98f7f8bf4)
281
+ - connect-mobile and deeplink (9f8f1c1bd2, d1c2bd7464, 40f3b53a34, fe8499ec1c, 1ff479c545, 1b88b3b72b)
263
282
 
264
283
  ## Fixes
265
284
 
266
- - local url in mobile example (e4365278aa)
267
- - emit changed event with state change in keepSession (f8bcaf7203)
268
- - don't trump Cancel with DeviceCommand disposed (d2f876e47c)
269
- - WebUSB sessions sync in all deployments (13ec59a53d)
270
- - skip fw hash check when binary too tiny (DX) (584d742ccc)
271
- - usedElsewhere only for localSession (8fc98762ec)
272
- - device.unreadableError is always string (aeab689d34)
273
- - api.dispose on transport.stop (e79130e88e)
274
- - analytics for core in popup (f08deff345)
275
- - deeplink core mode from options (3eb7512b89)
285
+ - local url in mobile example (e4365278aa)
286
+ - emit changed event with state change in keepSession (f8bcaf7203)
287
+ - don't trump Cancel with DeviceCommand disposed (d2f876e47c)
288
+ - WebUSB sessions sync in all deployments (13ec59a53d)
289
+ - skip fw hash check when binary too tiny (DX) (584d742ccc)
290
+ - usedElsewhere only for localSession (8fc98762ec)
291
+ - device.unreadableError is always string (aeab689d34)
292
+ - api.dispose on transport.stop (e79130e88e)
293
+ - analytics for core in popup (f08deff345)
294
+ - deeplink core mode from options (3eb7512b89)
276
295
 
277
296
  ## Chores and improvements
278
297
 
279
- - add dynamic connect that allows us to use different connect implementation (96e81fe5bf, 887889288f)
280
- - try to reuse initialized (passphrase) session (422476c9c0)
281
- - uncouple enableFirmwareHashCheck setting from binFilesBaseUrl (768596bbe5)
282
- - add sortingStrategy param to connect, deprecate skipPermutation param in composeTransaction (283d3f1eae)
283
- - Eslint improvements (1ad7b6f9b1, 12b6fb18b9, f1bdc399e5, e22b683733, 5d1104bfeb, 4a3cdc7893, 5e33e3abb5)
284
- - add recommended checks from eslint-plugin-jest
285
- - make getBinaryOptional async (e583e84c32)
286
- - fw hash check automatically for T1B1 (0fd023dbe8)
287
- - cleanup some duplicities in fw download util (53456df94d)
288
- - a cosmetic change in Device types (b718af4a2b)
289
- - use import from @trezor/connect-analytics (1ee270b1cd)
290
- - fix log going to (9dee606f43)
291
- - Support matrix (44ed16a45d)
292
- - update backends for bsc and op (458f0fe3d9)
293
- - mention address can be used in getAccountInfo (722a2b2b7f)
294
- - update messages.json (71bbde850b)
295
- - add Optimism (c2fb244649)
296
- - rename 'getAssetByUrl' to a more apt fn name 'tryLocalAssetRequire' (f5e8f256ae)
297
- - background sessions improved (7644107353)
298
- - connect error codes typing (57815188d1)
299
- - update device authenticity config (063d68379f)
300
- - fix header level in connect changelog (ac53d354cc)
301
- - add other-error to FirmwareRevisionCheckResult errors (4361aba5b7)
298
+ - add dynamic connect that allows us to use different connect implementation (96e81fe5bf, 887889288f)
299
+ - try to reuse initialized (passphrase) session (422476c9c0)
300
+ - uncouple enableFirmwareHashCheck setting from binFilesBaseUrl (768596bbe5)
301
+ - add sortingStrategy param to connect, deprecate skipPermutation param in composeTransaction (283d3f1eae)
302
+ - Eslint improvements (1ad7b6f9b1, 12b6fb18b9, f1bdc399e5, e22b683733, 5d1104bfeb, 4a3cdc7893, 5e33e3abb5)
303
+ - add recommended checks from eslint-plugin-jest
304
+ - make getBinaryOptional async (e583e84c32)
305
+ - fw hash check automatically for T1B1 (0fd023dbe8)
306
+ - cleanup some duplicities in fw download util (53456df94d)
307
+ - a cosmetic change in Device types (b718af4a2b)
308
+ - use import from @trezor/connect-analytics (1ee270b1cd)
309
+ - fix log going to (9dee606f43)
310
+ - Support matrix (44ed16a45d)
311
+ - update backends for bsc and op (458f0fe3d9)
312
+ - mention address can be used in getAccountInfo (722a2b2b7f)
313
+ - update messages.json (71bbde850b)
314
+ - add Optimism (c2fb244649)
315
+ - rename 'getAssetByUrl' to a more apt fn name 'tryLocalAssetRequire' (f5e8f256ae)
316
+ - background sessions improved (7644107353)
317
+ - connect error codes typing (57815188d1)
318
+ - update device authenticity config (063d68379f)
319
+ - fix header level in connect changelog (ac53d354cc)
320
+ - add other-error to FirmwareRevisionCheckResult errors (4361aba5b7)
302
321
 
303
322
  ### Dependencies update
304
323
 
305
- - @ethereumjs libs (2d6465f, d6bc8c5020)
306
- - electron, electron-builder and webpack (2b80c45c5f, e7a980bcf3, fc04fea1de)
307
-
308
- - npm-release: @trezor/blockchain-link 2.3.2
309
- - npm-release: @trezor/blockchain-link-utils 1.2.2
310
- - npm-release: @trezor/blockchain-link-types 1.2.2
311
- - npm-release: @trezor/type-utils 1.1.1
312
- - npm-release: @trezor/connect-analytics 1.2.2
313
- - npm-release: @trezor/analytics 1.2.2
314
- - npm-release: @trezor/connect-common 0.2.3
315
- - npm-release: @trezor/transport 1.3.3
316
- - npm-release: @trezor/protobuf 1.2.3
317
- - npm-release: @trezor/schema-utils 1.2.2
318
- - npm-release: @trezor/utxo-lib 2.2.2
319
- - npm-release: @trezor/utils 9.2.2
324
+ - @ethereumjs libs (2d6465f, d6bc8c5020)
325
+ - electron, electron-builder and webpack (2b80c45c5f, e7a980bcf3, fc04fea1de)
326
+
327
+ - npm-release: @trezor/blockchain-link 2.3.2
328
+ - npm-release: @trezor/blockchain-link-utils 1.2.2
329
+ - npm-release: @trezor/blockchain-link-types 1.2.2
330
+ - npm-release: @trezor/type-utils 1.1.1
331
+ - npm-release: @trezor/connect-analytics 1.2.2
332
+ - npm-release: @trezor/analytics 1.2.2
333
+ - npm-release: @trezor/connect-common 0.2.3
334
+ - npm-release: @trezor/transport 1.3.3
335
+ - npm-release: @trezor/protobuf 1.2.3
336
+ - npm-release: @trezor/schema-utils 1.2.2
337
+ - npm-release: @trezor/utxo-lib 2.2.2
338
+ - npm-release: @trezor/utils 9.2.2
320
339
 
321
340
  # 9.4.2
322
341
 
@@ -325,33 +344,33 @@ If you are still seeing issues with USB types, please add `w3c-web-usb` to your
325
344
 
326
345
  ### Features
327
346
 
328
- - feat(connect): return device info with method response (a378def)
329
- - docs(connect-explorer): flowchart for auto core mode (9501d3d)
330
- - docs(connect-explorer): diagram and explanation for core in popup (3bbb032)
347
+ - feat(connect): return device info with method response (a378def)
348
+ - docs(connect-explorer): flowchart for auto core mode (9501d3d)
349
+ - docs(connect-explorer): diagram and explanation for core in popup (3bbb032)
331
350
 
332
351
  ### Fixes
333
352
 
334
- - Fixing an issue with typescript not being able to resolve @sinclair/typebox and USB types correctly (98d6437)
335
- - Fixing regression that made it impossible to acquire (steal) device session over webusb (5cf83b4)
336
- - Couple of other fixes and improvements of device handling:
353
+ - Fixing an issue with typescript not being able to resolve @sinclair/typebox and USB types correctly (98d6437)
354
+ - Fixing regression that made it impossible to acquire (steal) device session over webusb (5cf83b4)
355
+ - Couple of other fixes and improvements of device handling:
337
356
 
338
- - fix(connect): pending transport event fix (231899f)
339
- - fix(connect): DeviceList create devices sequentially (b4a915b)
340
- - chore(connect): use cancelableAction instead of \_cancelableRequestBySend (66c9beb)
341
- - fix(connect): Device prompts cancel action (pin, word, passphrase) (e8257f4)
357
+ - fix(connect): pending transport event fix (231899f)
358
+ - fix(connect): DeviceList create devices sequentially (b4a915b)
359
+ - chore(connect): use cancelableAction instead of \_cancelableRequestBySend (66c9beb)
360
+ - fix(connect): Device prompts cancel action (pin, word, passphrase) (e8257f4)
342
361
 
343
- - Connect Explorer fixes:
362
+ - Connect Explorer fixes:
344
363
 
345
- - fix(connect-explorer): icons on index page (fef3791)
346
- - fix(connect-explorer): Button as Link not working (d788a06)
347
- - chore(connect-explorer): improve fallback schema illustration (d0619b7)
348
- - chore(connect-explorer): improve typography (f730904)
364
+ - fix(connect-explorer): icons on index page (fef3791)
365
+ - fix(connect-explorer): Button as Link not working (d788a06)
366
+ - chore(connect-explorer): improve fallback schema illustration (d0619b7)
367
+ - chore(connect-explorer): improve typography (f730904)
349
368
 
350
369
  ### Dependencies update
351
370
 
352
- - npm-release: @trezor/connect-common 0.2.2
353
- - npm-release: @trezor/transport 1.3.2
354
- - npm-release: @trezor/protobuf 1.2.2
371
+ - npm-release: @trezor/connect-common 0.2.2
372
+ - npm-release: @trezor/transport 1.3.2
373
+ - npm-release: @trezor/protobuf 1.2.2
355
374
 
356
375
  # 9.4.1
357
376
 
@@ -363,83 +382,83 @@ NodeBridge new version compatibility fix: Resolved an issue where NodeBridge ver
363
382
 
364
383
  ### Features
365
384
 
366
- - When method param has a side-effect (push transaction) user is prompted for permission in connect-popup (d05fb24)
367
- - User is now able to finish flow in popup even if transport (bridge) is not available when it started. (8874eb6)
368
- - Connect-popup now remembers device for either 15 minutes or value of device auto_lock depending on which is higher (e6a68e0)
369
- - connect-common: add FW 2.8.3 binaries for T3B1 (c32984c)
370
- - connect-common: add FW 2.8.3 binaries for T3T1 (b57198a)
371
- - docs(connect-explorer): step by step tutorial to build connect webextension (9d5ba70)
372
- - docs(connect-explorer): add more ways to test getAccountInfo (62101d6)
385
+ - When method param has a side-effect (push transaction) user is prompted for permission in connect-popup (d05fb24)
386
+ - User is now able to finish flow in popup even if transport (bridge) is not available when it started. (8874eb6)
387
+ - Connect-popup now remembers device for either 15 minutes or value of device auto_lock depending on which is higher (e6a68e0)
388
+ - connect-common: add FW 2.8.3 binaries for T3B1 (c32984c)
389
+ - connect-common: add FW 2.8.3 binaries for T3T1 (b57198a)
390
+ - docs(connect-explorer): step by step tutorial to build connect webextension (9d5ba70)
391
+ - docs(connect-explorer): add more ways to test getAccountInfo (62101d6)
373
392
 
374
393
  ### Fixes
375
394
 
376
- - New NodeBridge version not parsed correctly - ignore semver labels in version utils (6501704)
377
- - fw releases value for custom device model (265028d)
378
- - keepSession with changing useCardanoDerivation (8c654a1)
379
- - fw update: when device is disconnected during fw update as a result of RebootToBootloader call do not release it on transport layer (93da8b5)
380
- - fw update: temporarily disable automatic language update for TT due to memory constraints (5d7f578)
381
- - connect-explorer: doc repository base so edit page works (203a83d)
382
- - connect-examples: add asterisk to match popup urls for content script (9da8b0b)
383
- - connect-explorer: diagrams dark mode regression (09a5f9f)
395
+ - New NodeBridge version not parsed correctly - ignore semver labels in version utils (6501704)
396
+ - fw releases value for custom device model (265028d)
397
+ - keepSession with changing useCardanoDerivation (8c654a1)
398
+ - fw update: when device is disconnected during fw update as a result of RebootToBootloader call do not release it on transport layer (93da8b5)
399
+ - fw update: temporarily disable automatic language update for TT due to memory constraints (5d7f578)
400
+ - connect-explorer: doc repository base so edit page works (203a83d)
401
+ - connect-examples: add asterisk to match popup urls for content script (9da8b0b)
402
+ - connect-explorer: diagrams dark mode regression (09a5f9f)
384
403
 
385
404
  ### Chores
386
405
 
387
- - update device authenticity config (31ec9a2, 68254a3)
388
- - remove useless setTransports (a8bd51d)
389
- - gen-reftx add decred fields (f57ef60)
390
- - rework gen-reftx util to ts (15e64e8)
391
- - device state saving refactor (e6a68e0)
392
- - remove useless null fallback (7cc0b00)
393
- - StaticSessionId template literal type (a97dfae)
394
- - allow preminor releases in connect (38ba9e1)
395
- - unify names of Device fields (483d370)
396
- - grooming in Device.state (0bfbe1c)
397
- - remove TypedPayload import (DeviceCommands) from eosSignTx.ts (609f6a6)
398
- - rename types in deviceCommands (a17c695)
399
- - add T3B1 and T3T1 to methods config (744ede5)
400
- - auto retry cycle instead of recursion (7f73cae)
401
- - descriptor diff improvement (afa479e)
402
- - device descriptor update (7db4bb5)
403
- - test: adjust decred to 2.8.2 (f4798ef)
404
- - test: e2e semver filtering fix (16cc575)
405
- - test: rewrite common.setup.js to ts (62a3962)
406
- - test: Extend checkFirmwareRevision test to all devices (e706d74)
407
- - test: remove ADDRESS_N utility from tests (40cd370)
408
- - connect-common: update coins.json via yarn update-coins (f7c16e1)
409
- - connect-common: add t3b1 to coins.json (6a8b460)
410
- - connect-common: change lng blob in release.json (c8a0c46)
411
- - connect-explorer: make device support documentation more future-proof (ea03610)
412
- - connect-explorer: remove old conversion script (11c534e)
413
- - transport: don't pass signal to transports (0cb09ab)
414
- - transport: sessions background without abort signal (4f6e8cf)
415
- - transport: better abortable methods (583f4aa)
406
+ - update device authenticity config (31ec9a2, 68254a3)
407
+ - remove useless setTransports (a8bd51d)
408
+ - gen-reftx add decred fields (f57ef60)
409
+ - rework gen-reftx util to ts (15e64e8)
410
+ - device state saving refactor (e6a68e0)
411
+ - remove useless null fallback (7cc0b00)
412
+ - StaticSessionId template literal type (a97dfae)
413
+ - allow preminor releases in connect (38ba9e1)
414
+ - unify names of Device fields (483d370)
415
+ - grooming in Device.state (0bfbe1c)
416
+ - remove TypedPayload import (DeviceCommands) from eosSignTx.ts (609f6a6)
417
+ - rename types in deviceCommands (a17c695)
418
+ - add T3B1 and T3T1 to methods config (744ede5)
419
+ - auto retry cycle instead of recursion (7f73cae)
420
+ - descriptor diff improvement (afa479e)
421
+ - device descriptor update (7db4bb5)
422
+ - test: adjust decred to 2.8.2 (f4798ef)
423
+ - test: e2e semver filtering fix (16cc575)
424
+ - test: rewrite common.setup.js to ts (62a3962)
425
+ - test: Extend checkFirmwareRevision test to all devices (e706d74)
426
+ - test: remove ADDRESS_N utility from tests (40cd370)
427
+ - connect-common: update coins.json via yarn update-coins (f7c16e1)
428
+ - connect-common: add t3b1 to coins.json (6a8b460)
429
+ - connect-common: change lng blob in release.json (c8a0c46)
430
+ - connect-explorer: make device support documentation more future-proof (ea03610)
431
+ - connect-explorer: remove old conversion script (11c534e)
432
+ - transport: don't pass signal to transports (0cb09ab)
433
+ - transport: sessions background without abort signal (4f6e8cf)
434
+ - transport: better abortable methods (583f4aa)
416
435
 
417
436
  ### Dependencies update
418
437
 
419
- - @sinclair/typebox 0.31.28=>0.33.7 (43ae297)
420
- - webpack from 5.93.0 to 5.94.0 (358b96d)
421
- - crypto libs (a304dd5)
422
- - next-theme 0.2.1=>0.3.0 (f8f5351)
423
- - next 14.1.3=>14.2.6 (b364e97)
424
- - @uiw/react-codemirror 4.21.25=>4.23.0 (8bcc314)
425
- - codemiror-json-schema 0.7.0=>0.7.8 (d38b9a0)
426
- - @playwright\* 1.45.3=>1.46.1 (492ff5f)
427
- - @types/chrome; @types/web; @types/sharedworker (8e73aeb)
428
- - various patch versions deps (ed3e9bf)
429
- - TS 5.5 (198c91f)
430
-
431
- - npm-release: @trezor/blockchain-link 2.3.1
432
- - npm-release: @trezor/blockchain-link-utils 1.2.1
433
- - npm-release: @trezor/blockchain-link-types 1.2.1
434
- - npm-release: @trezor/connect-analytics 1.2.1
435
- - npm-release: @trezor/analytics 1.2.1
436
- - npm-release: @trezor/connect-common 0.2.1
437
- - npm-release: @trezor/transport 1.3.1
438
- - npm-release: @trezor/protobuf 1.2.1
439
- - npm-release: @trezor/schema-utils 1.2.1
440
- - npm-release: @trezor/protocol 1.2.1
441
- - npm-release: @trezor/utxo-lib 2.2.1
442
- - npm-release: @trezor/utils 9.2.1
438
+ - @sinclair/typebox 0.31.28=>0.33.7 (43ae297)
439
+ - webpack from 5.93.0 to 5.94.0 (358b96d)
440
+ - crypto libs (a304dd5)
441
+ - next-theme 0.2.1=>0.3.0 (f8f5351)
442
+ - next 14.1.3=>14.2.6 (b364e97)
443
+ - @uiw/react-codemirror 4.21.25=>4.23.0 (8bcc314)
444
+ - codemiror-json-schema 0.7.0=>0.7.8 (d38b9a0)
445
+ - @playwright\* 1.45.3=>1.46.1 (492ff5f)
446
+ - @types/chrome; @types/web; @types/sharedworker (8e73aeb)
447
+ - various patch versions deps (ed3e9bf)
448
+ - TS 5.5 (198c91f)
449
+
450
+ - npm-release: @trezor/blockchain-link 2.3.1
451
+ - npm-release: @trezor/blockchain-link-utils 1.2.1
452
+ - npm-release: @trezor/blockchain-link-types 1.2.1
453
+ - npm-release: @trezor/connect-analytics 1.2.1
454
+ - npm-release: @trezor/analytics 1.2.1
455
+ - npm-release: @trezor/connect-common 0.2.1
456
+ - npm-release: @trezor/transport 1.3.1
457
+ - npm-release: @trezor/protobuf 1.2.1
458
+ - npm-release: @trezor/schema-utils 1.2.1
459
+ - npm-release: @trezor/protocol 1.2.1
460
+ - npm-release: @trezor/utxo-lib 2.2.1
461
+ - npm-release: @trezor/utils 9.2.1
443
462
 
444
463
  # 9.4.0
445
464
 
@@ -471,102 +490,102 @@ The AuthenticateDevice method now verifies CA certificate extensions.
471
490
 
472
491
  Added support for T3B1.
473
492
 
474
- - chore(connect): Add Ambire Browser Extension to knownHosts (cbe81ab)
475
- - chore(connect): remove ethereum-cryptography npm package (18851d1)
476
- - chore(connect): split public and internal settings type (3aab4ea)
477
- - chore(connect): add new CA pubkeys and update timestamp (48ec951)
478
- - chore(connect): refactoring of the CheckFirmwareAuthenticity to support local binary (and wont download it from web, when its available in the suite) (82ab513)
479
- - fix(connect): disallow interaction-less fw update when switching fw type (4936939)
480
- - fix(connect): validate x509 asn1 component (bc13fe2)
481
- - fix(connect): handle missing language binary (954dbb9)
482
- - fix(connect): proceed with fw install even when language data fails to download (b40d1b7)
483
- - test(connect): x509 extensions parser (163c82c)
484
- - test(connect): update to min version fw 1.0.9 and 2.3.0 (544c311)
485
- - add fw 2.8.1 (847cfd6)
486
- - feat: Implement firmware hash check into device (905e656, 10a1c86, 95d3d90, 655b9d3)
487
- - chore: rename bsc to bnb as it is declared in fw repo (0174dc2)
488
- - fix: report devices without GetFeatures support as fw required (f6b7826)
489
- - refactor: core and deviceList global state (6149ef1, d1e92f9, cbb4c5c, 167cacf, 0057aeb, 76ab7a0, 8e65374, 418b7cc)
490
- - refactor(connect): removed initDeviceList, move transportReconnect inside DeviceList, make DeviceList reusable, device list constructor not throwing, singleton-like DeviceList, separate onTransportUpdate, pendingTransportEvent improved, improve DeviceList init flow (f4b3694, 02215de, b53259b, e8c6c25, e395dc8, 6509e5c, 3e30d64, d173966, 50cbbea, 1a81d89, 4780c51, 75bfe75, 83c0cb3, 73261c8, f2167bf, bb7dfee)
491
- - fix(connect): correctly wait for device selection in case of overriding (0c7a3bd)
492
- - fix(connect): Fork old PassphraseTypeCard to connect (155afda)
493
- - fix(connect): longer timeout for getFeatures due to suite-native performance issue (0910ab7)
494
- - fix(connect): handle malformed EIP-712 data (d111006)
495
- - fix(connect): remove superfluous space from error message (81be584)
496
- - fix(connect): correctly await transport.receive (31c8519)
497
- - fix(connect): proper pendingTransportEvent waiting (baa4144)
498
- - chore(connect): add a comment to legacy code (a23a365)
493
+ - chore(connect): Add Ambire Browser Extension to knownHosts (cbe81ab)
494
+ - chore(connect): remove ethereum-cryptography npm package (18851d1)
495
+ - chore(connect): split public and internal settings type (3aab4ea)
496
+ - chore(connect): add new CA pubkeys and update timestamp (48ec951)
497
+ - chore(connect): refactoring of the CheckFirmwareAuthenticity to support local binary (and wont download it from web, when its available in the suite) (82ab513)
498
+ - fix(connect): disallow interaction-less fw update when switching fw type (4936939)
499
+ - fix(connect): validate x509 asn1 component (bc13fe2)
500
+ - fix(connect): handle missing language binary (954dbb9)
501
+ - fix(connect): proceed with fw install even when language data fails to download (b40d1b7)
502
+ - test(connect): x509 extensions parser (163c82c)
503
+ - test(connect): update to min version fw 1.0.9 and 2.3.0 (544c311)
504
+ - add fw 2.8.1 (847cfd6)
505
+ - feat: Implement firmware hash check into device (905e656, 10a1c86, 95d3d90, 655b9d3)
506
+ - chore: rename bsc to bnb as it is declared in fw repo (0174dc2)
507
+ - fix: report devices without GetFeatures support as fw required (f6b7826)
508
+ - refactor: core and deviceList global state (6149ef1, d1e92f9, cbb4c5c, 167cacf, 0057aeb, 76ab7a0, 8e65374, 418b7cc)
509
+ - refactor(connect): removed initDeviceList, move transportReconnect inside DeviceList, make DeviceList reusable, device list constructor not throwing, singleton-like DeviceList, separate onTransportUpdate, pendingTransportEvent improved, improve DeviceList init flow (f4b3694, 02215de, b53259b, e8c6c25, e395dc8, 6509e5c, 3e30d64, d173966, 50cbbea, 1a81d89, 4780c51, 75bfe75, 83c0cb3, 73261c8, f2167bf, bb7dfee)
510
+ - fix(connect): correctly wait for device selection in case of overriding (0c7a3bd)
511
+ - fix(connect): Fork old PassphraseTypeCard to connect (155afda)
512
+ - fix(connect): longer timeout for getFeatures due to suite-native performance issue (0910ab7)
513
+ - fix(connect): handle malformed EIP-712 data (d111006)
514
+ - fix(connect): remove superfluous space from error message (81be584)
515
+ - fix(connect): correctly await transport.receive (31c8519)
516
+ - fix(connect): proper pendingTransportEvent waiting (baa4144)
517
+ - chore(connect): add a comment to legacy code (a23a365)
499
518
 
500
519
  ## connect-web
501
520
 
502
- - clean up in popupmanager when useUi=false (9bc2ea9)
503
- - default coreMode to auto (e45d47e)
504
- - automatic fallback to core in popup (e4e1fcc, 7120e83)
521
+ - clean up in popupmanager when useUi=false (9bc2ea9)
522
+ - default coreMode to auto (e45d47e)
523
+ - automatic fallback to core in popup (e4e1fcc, 7120e83)
505
524
 
506
525
  ## connect-popup
507
526
 
508
- - add missing device icons (9fdd1d7)
509
- - Opera is now not marked as unsupported browser (8e34af7)
510
- - fix typo in loader message (9adeb0b)
511
- - allow on mobile (9a6ba2e, 462e45e)
512
- - update no transport description message (10a79da)
513
- - remove bridge references, deeplink to suite desktop (98e98a4)
527
+ - add missing device icons (9fdd1d7)
528
+ - Opera is now not marked as unsupported browser (8e34af7)
529
+ - fix typo in loader message (9adeb0b)
530
+ - allow on mobile (9a6ba2e, 462e45e)
531
+ - update no transport description message (10a79da)
532
+ - remove bridge references, deeplink to suite desktop (98e98a4)
514
533
 
515
534
  ## connect-explorer
516
535
 
517
- - don't validate connectSrc in webextension (8737d47)
518
- - add link to new webextension example (86a13b1)
519
- - add extra meta tags & preview image (c4e1c2d)
520
- - add loading indicator to method submit button (14e1248)
521
- - clean up coins select - remove namecoin, vertcoin, capricoin and komodo (9cef961)
522
- - applySettings optional values (0bcd83a)
523
- - hide extra headings from toc in homepage (14f89c4)
524
- - show success message in settings (0ca7c0c)
525
- - remove MTT for firmwareUpdate (ebbe96c)
526
- - bad styled-components prop (e2b7fc7)
536
+ - don't validate connectSrc in webextension (8737d47)
537
+ - add link to new webextension example (86a13b1)
538
+ - add extra meta tags & preview image (c4e1c2d)
539
+ - add loading indicator to method submit button (14e1248)
540
+ - clean up coins select - remove namecoin, vertcoin, capricoin and komodo (9cef961)
541
+ - applySettings optional values (0bcd83a)
542
+ - hide extra headings from toc in homepage (14f89c4)
543
+ - show success message in settings (0ca7c0c)
544
+ - remove MTT for firmwareUpdate (ebbe96c)
545
+ - bad styled-components prop (e2b7fc7)
527
546
 
528
547
  ## connect-webextension
529
548
 
530
- - Prevent multiple content script extension conflicts (348b32a)
531
- - link changelog to the one in connect (a02ec72)
549
+ - Prevent multiple content script extension conflicts (348b32a)
550
+ - link changelog to the one in connect (a02ec72)
532
551
 
533
552
  ## connect-common
534
553
 
535
- - add new fw 2.8.0 (314052b)
536
- - fw version 1.9.0 and 2.3.0 required (ee623e4)
554
+ - add new fw 2.8.0 (314052b)
555
+ - fw version 1.9.0 and 2.3.0 required (ee623e4)
537
556
 
538
557
  ## connect-plugin-stellar
539
558
 
540
- - update stellar sdk (89cf20e)
541
- - update trends libs (70b9c11)
559
+ - update stellar sdk (89cf20e)
560
+ - update trends libs (70b9c11)
542
561
 
543
562
  ## Dependencies update
544
563
 
545
- - bump react-intl from 6.6.2 to 6.6.8
546
- - bump @types/chrome from 0.0.260 to 0.0.269
547
- - bump playwright from 1.41.2 to 1.45.3
548
- - bump webpack-merge from 5.10.0 to 6.0.1
549
- - bump webpack-dev-server from 4.15.1 to 5.0.4
550
- - bump @babel/preset-typescript from 7.23.3 to 7.24.7
551
- - bump @babel/preset-react from 7.23.3 to 7.24.7
552
- - bump webpack from 5.90.1 to 5.93.0
553
- - bump rimraf from 5.0.5 to 6.0.1
554
- - bump txs from 4.7.0 to 4.16.2
555
-
556
- - npm-release: @trezor/blockchain-link 2.3.0
557
- - npm-release: @trezor/blockchain-link-utils 1.2.0
558
- - npm-release: @trezor/blockchain-link-types 1.2.0
559
- - npm-release: @trezor/connect-analytics 1.2.0
560
- - npm-release: @trezor/analytics 1.2.0
561
- - npm-release: @trezor/connect-common 0.2.0
562
- - npm-release: @trezor/env-utils 1.2.0
563
- - npm-release: @trezor/transport 1.3.0
564
- - npm-release: @trezor/protobuf 1.2.0
565
- - npm-release: @trezor/schema-utils 1.2.0
566
- - npm-release: @trezor/protocol 1.2.0
567
- - npm-release: @trezor/utxo-lib 2.2.0
568
- - npm-release: @trezor/utils 9.2.0
569
- - npm-release: @trezor/connect 9.4.0
564
+ - bump react-intl from 6.6.2 to 6.6.8
565
+ - bump @types/chrome from 0.0.260 to 0.0.269
566
+ - bump playwright from 1.41.2 to 1.45.3
567
+ - bump webpack-merge from 5.10.0 to 6.0.1
568
+ - bump webpack-dev-server from 4.15.1 to 5.0.4
569
+ - bump @babel/preset-typescript from 7.23.3 to 7.24.7
570
+ - bump @babel/preset-react from 7.23.3 to 7.24.7
571
+ - bump webpack from 5.90.1 to 5.93.0
572
+ - bump rimraf from 5.0.5 to 6.0.1
573
+ - bump txs from 4.7.0 to 4.16.2
574
+
575
+ - npm-release: @trezor/blockchain-link 2.3.0
576
+ - npm-release: @trezor/blockchain-link-utils 1.2.0
577
+ - npm-release: @trezor/blockchain-link-types 1.2.0
578
+ - npm-release: @trezor/connect-analytics 1.2.0
579
+ - npm-release: @trezor/analytics 1.2.0
580
+ - npm-release: @trezor/connect-common 0.2.0
581
+ - npm-release: @trezor/env-utils 1.2.0
582
+ - npm-release: @trezor/transport 1.3.0
583
+ - npm-release: @trezor/protobuf 1.2.0
584
+ - npm-release: @trezor/schema-utils 1.2.0
585
+ - npm-release: @trezor/protocol 1.2.0
586
+ - npm-release: @trezor/utxo-lib 2.2.0
587
+ - npm-release: @trezor/utils 9.2.0
588
+ - npm-release: @trezor/connect 9.4.0
570
589
 
571
590
  # 9.3.0
572
591
 
@@ -575,266 +594,266 @@ Improved compatibility with webextensions using TrezorConnect inside offscreen (
575
594
  Cardano: support Conway certificates, increase minimum supported FW to 2.6.0 to clean up legacy code.
576
595
  Minor fixes in Connect Explorer and documentation.
577
596
 
578
- - feat(connect): Add tag 258 support (90bf3a7)
579
- - feat(connect): Conway certificates (ab003ce)
580
- - feat(connect): applySettings - accept all validated params (65809d8)
581
- - fix(connect): immediate switch from custom to default backend (b8348ca)
582
- - fix(connect): remove getPublicKey coinInfo fallback (fb446f2)
583
- - chore(connect): add new TS3 CA pubkeys and update timestamp (35486ba)
584
- - chore(connect): update fw version number for cardano (d737d3c)
585
- - chore(connect): center changelog version table (93fab15)
586
- - chore(connect): change name in changelog table (bbc5499)
587
- - chore(connect): remove canary from changelog
588
- - fix(connect): race condition when closing and opening popup subsequently (e0e51c7)
589
- - chore(connect): implement required descriptor.type (9ef657f)
590
- - docs(connect): Explorer landing page update (7db29e9)
591
- - fix(connect): deviceList may become undefined after init transport (firefox) (322651b)
592
- - fix(connect): Core with pending initialization (3f8e405)
593
- - fix(connect): preserve DEVICE.ACQUIRED listeners after unsuccessful workflow (4cede4e)
594
- - fix(connect): don't save state with legacy passphrase (af90317)
595
- - feat(connect): new T3T1 colors (0797090)
596
- - chores: 583fbd0, a27a385, 6c789d2
597
+ - feat(connect): Add tag 258 support (90bf3a7)
598
+ - feat(connect): Conway certificates (ab003ce)
599
+ - feat(connect): applySettings - accept all validated params (65809d8)
600
+ - fix(connect): immediate switch from custom to default backend (b8348ca)
601
+ - fix(connect): remove getPublicKey coinInfo fallback (fb446f2)
602
+ - chore(connect): add new TS3 CA pubkeys and update timestamp (35486ba)
603
+ - chore(connect): update fw version number for cardano (d737d3c)
604
+ - chore(connect): center changelog version table (93fab15)
605
+ - chore(connect): change name in changelog table (bbc5499)
606
+ - chore(connect): remove canary from changelog
607
+ - fix(connect): race condition when closing and opening popup subsequently (e0e51c7)
608
+ - chore(connect): implement required descriptor.type (9ef657f)
609
+ - docs(connect): Explorer landing page update (7db29e9)
610
+ - fix(connect): deviceList may become undefined after init transport (firefox) (322651b)
611
+ - fix(connect): Core with pending initialization (3f8e405)
612
+ - fix(connect): preserve DEVICE.ACQUIRED listeners after unsuccessful workflow (4cede4e)
613
+ - fix(connect): don't save state with legacy passphrase (af90317)
614
+ - feat(connect): new T3T1 colors (0797090)
615
+ - chores: 583fbd0, a27a385, 6c789d2
597
616
 
598
617
  ## connect-explorer
599
618
 
600
- - readme pages (be0f933)
601
- - getFeatures (0f9d057)
602
- - don't change affected fields in manual mode (2c7143e)
603
- - canary release explanation in changelog (6cf1eae)
604
- - theme: steps colors (1f7a9e4)
605
- - delete deprecated webusb parameter from init docs (a92429e)
606
- - zoomable and dark mode illustrations (8d55ed1)
607
- - some attributes were not passed trough the proxy (5cb6a26)
608
- - MTT content max height (c8796b4)
609
- - add links in changelog page (8dabb30)
610
- - remove nextra reference from webextension, show amountUnit in signTransaction and fix favicon path
619
+ - readme pages (be0f933)
620
+ - getFeatures (0f9d057)
621
+ - don't change affected fields in manual mode (2c7143e)
622
+ - canary release explanation in changelog (6cf1eae)
623
+ - theme: steps colors (1f7a9e4)
624
+ - delete deprecated webusb parameter from init docs (a92429e)
625
+ - zoomable and dark mode illustrations (8d55ed1)
626
+ - some attributes were not passed trough the proxy (5cb6a26)
627
+ - MTT content max height (c8796b4)
628
+ - add links in changelog page (8dabb30)
629
+ - remove nextra reference from webextension, show amountUnit in signTransaction and fix favicon path
611
630
 
612
631
  ## connect-web
613
632
 
614
- - publish trezor-usb-permissions.html in NPM (c8628ea)
615
- - refactor into classes (fc7a45b)
616
- - core-in-popup mode (52891f3)
617
- - passphrase missmatch resets the flow now (d55ff1c)
618
- - close on popup cancellation, legacy mode for handshake
619
- - check if chrome.tabs really available in webextension env
633
+ - publish trezor-usb-permissions.html in NPM (c8628ea)
634
+ - refactor into classes (fc7a45b)
635
+ - core-in-popup mode (52891f3)
636
+ - passphrase missmatch resets the flow now (d55ff1c)
637
+ - close on popup cancellation, legacy mode for handshake
638
+ - check if chrome.tabs really available in webextension env
620
639
 
621
640
  ## connect-iframe
622
641
 
623
- - handshake handling issues
642
+ - handshake handling issues
624
643
 
625
644
  ## connect-webextension
626
645
 
627
- - stop publishing Trezor connect webextension proxy (5df3ae0)
628
- - bundle content script to work properly with ES6 modules (fff7eaf)
646
+ - stop publishing Trezor connect webextension proxy (5df3ae0)
647
+ - bundle content script to work properly with ES6 modules (fff7eaf)
629
648
 
630
649
  ## connect-examples
631
650
 
632
- - Improve the mv3 sw example to be make it easier for 3rd parties to understand how to integrate connect-webextension (884ec96, a0c0706)
651
+ - Improve the mv3 sw example to be make it easier for 3rd parties to understand how to integrate connect-webextension (884ec96, a0c0706)
633
652
 
634
653
  ## connect-common
635
654
 
636
- - edit firmware changelogs (3637a56)
637
- - firmware release url (0166df5)
638
- - update firmware binaries to 2.7.2 (6392328)
639
- - T3T1 support (9d0adae)
655
+ - edit firmware changelogs (3637a56)
656
+ - firmware release url (0166df5)
657
+ - update firmware binaries to 2.7.2 (6392328)
658
+ - T3T1 support (9d0adae)
640
659
 
641
660
  ## connect-popup
642
661
 
643
- - temporary workaround for CONTENT_SCRIPT_LOADED and handling of CONTENT_SCRIPT_LOADED
662
+ - temporary workaround for CONTENT_SCRIPT_LOADED and handling of CONTENT_SCRIPT_LOADED
644
663
 
645
664
  ## connect-ui
646
665
 
647
- - install bridge title align (19c5781)
666
+ - install bridge title align (19c5781)
648
667
 
649
668
  ## Dependencies update
650
669
 
651
- - bump ws from 8.16.0 to 8.17.1 (bc5b787)
652
-
653
- - npm-release: @trezor/blockchain-link 2.2.0
654
- - npm-release: @trezor/blockchain-link-utils 1.1.0
655
- - npm-release: @trezor/blockchain-link-types 1.1.0
656
- - npm-release: @trezor/type-utils 1.1.0
657
- - npm-release: @trezor/connect-analytics 1.1.0
658
- - npm-release: @trezor/analytics 1.1.0
659
- - npm-release: @trezor/connect-common 0.1.0
660
- - npm-release: @trezor/env-utils 1.1.0
661
- - npm-release: @trezor/transport 1.2.0
662
- - npm-release: @trezor/protobuf 1.1.0
663
- - npm-release: @trezor/schema-utils 1.1.0
664
- - npm-release: @trezor/protocol 1.1.0
665
- - npm-release: @trezor/utxo-lib 2.1.0
666
- - npm-release: @trezor/utils 9.1.0
670
+ - bump ws from 8.16.0 to 8.17.1 (bc5b787)
671
+
672
+ - npm-release: @trezor/blockchain-link 2.2.0
673
+ - npm-release: @trezor/blockchain-link-utils 1.1.0
674
+ - npm-release: @trezor/blockchain-link-types 1.1.0
675
+ - npm-release: @trezor/type-utils 1.1.0
676
+ - npm-release: @trezor/connect-analytics 1.1.0
677
+ - npm-release: @trezor/analytics 1.1.0
678
+ - npm-release: @trezor/connect-common 0.1.0
679
+ - npm-release: @trezor/env-utils 1.1.0
680
+ - npm-release: @trezor/transport 1.2.0
681
+ - npm-release: @trezor/protobuf 1.1.0
682
+ - npm-release: @trezor/schema-utils 1.1.0
683
+ - npm-release: @trezor/protocol 1.1.0
684
+ - npm-release: @trezor/utxo-lib 2.1.0
685
+ - npm-release: @trezor/utils 9.1.0
667
686
 
668
687
  # 9.2.4
669
688
 
670
- - chore: BigNumber wrapper (d18ba9a879)
671
- - chore(connect): add Rabby to knownHosts (1ec4c5bfc5)
672
- - chore(transport): make Session type literal (72570f2219)
673
- - chore(connect): re-add feature support checking in cardanoSignTransaction (acf9ffc2cb)
674
- - chore(connect): fw-update: add error message when binary is too small (b0c1173f8d)
675
- - chore(connect): remove legacyresults from cardano fixtures (acd9e1e510)
676
- - chore(connect): bump fw versions required for cardano (c3d96b3ca7)
677
- - chore(connect): remove validation in cardanoSignTransaction, cardanoAddressParameters, cardanoGetAddress, device.validateState (33efb4b8bd,013047bdb1, 21fadd17a6, 29311b5d61)
678
- - feat(connect): use full version in URL when beta (26c70f48f7)
679
- - fix(connect): simultaneous read of connected devices (f181c988a4)
680
- - chore(connect): DeviceList now has two params - full settings object and messages (b6167266c9)
681
- - chore(connect): remove DataManager from DeviceList (afc8760213)
682
- - chore(connect): remove DataManager dependency from DeviceList constructor (7971515d71)
683
- - chore(connect): simplify reduce code duplication in DeviceList (0cf8a04ed0)
684
- - feat(connect): BackupDevice now has params (4120912)
685
- - chore(connect): update protobuf messages (41bff13)
686
- - chore(connect): add new TS3 CA pubkeys and update timestamp (3ae06ac)
687
- - chore(connect): remove deprecated code, bump required fw to 1.8.1/2.1.0, fix typo in log, rename firmwareUpdate_v2 to firmwareUpdate (8af325a, 2f14ff6 649a197, b39030c, b67170c)
688
- - chore(connect): popupPromise improvement, pin retries, invalidDeviceState, flattened onCall/inner (320c5a9,6515f13, 7666994, 99ac0e5, 4aa2b46, fa0974d, 9188727, 08a093b, dd6437e, 27d5a44)
689
- - fix(connect): intermediary reconnect improved, device authenticity, multi-apps synchronization, reading translations, bin_outputs in txcache (115c718, de1b969, 140ec9a a881142, 88d7608, 0bb13d3)
690
- - fix(connect): bin_outputs in txcache (0bb13d3)
689
+ - chore: BigNumber wrapper (d18ba9a879)
690
+ - chore(connect): add Rabby to knownHosts (1ec4c5bfc5)
691
+ - chore(transport): make Session type literal (72570f2219)
692
+ - chore(connect): re-add feature support checking in cardanoSignTransaction (acf9ffc2cb)
693
+ - chore(connect): fw-update: add error message when binary is too small (b0c1173f8d)
694
+ - chore(connect): remove legacyresults from cardano fixtures (acd9e1e510)
695
+ - chore(connect): bump fw versions required for cardano (c3d96b3ca7)
696
+ - chore(connect): remove validation in cardanoSignTransaction, cardanoAddressParameters, cardanoGetAddress, device.validateState (33efb4b8bd,013047bdb1, 21fadd17a6, 29311b5d61)
697
+ - feat(connect): use full version in URL when beta (26c70f48f7)
698
+ - fix(connect): simultaneous read of connected devices (f181c988a4)
699
+ - chore(connect): DeviceList now has two params - full settings object and messages (b6167266c9)
700
+ - chore(connect): remove DataManager from DeviceList (afc8760213)
701
+ - chore(connect): remove DataManager dependency from DeviceList constructor (7971515d71)
702
+ - chore(connect): simplify reduce code duplication in DeviceList (0cf8a04ed0)
703
+ - feat(connect): BackupDevice now has params (4120912)
704
+ - chore(connect): update protobuf messages (41bff13)
705
+ - chore(connect): add new TS3 CA pubkeys and update timestamp (3ae06ac)
706
+ - chore(connect): remove deprecated code, bump required fw to 1.8.1/2.1.0, fix typo in log, rename firmwareUpdate_v2 to firmwareUpdate (8af325a, 2f14ff6 649a197, b39030c, b67170c)
707
+ - chore(connect): popupPromise improvement, pin retries, invalidDeviceState, flattened onCall/inner (320c5a9,6515f13, 7666994, 99ac0e5, 4aa2b46, fa0974d, 9188727, 08a093b, dd6437e, 27d5a44)
708
+ - fix(connect): intermediary reconnect improved, device authenticity, multi-apps synchronization, reading translations, bin_outputs in txcache (115c718, de1b969, 140ec9a a881142, 88d7608, 0bb13d3)
709
+ - fix(connect): bin_outputs in txcache (0bb13d3)
691
710
 
692
711
  ## connect-examples
693
712
 
694
- - Update building process to allow multiple lines replacing of url mv2 and mv3 (e88b6f6f47)
713
+ - Update building process to allow multiple lines replacing of url mv2 and mv3 (e88b6f6f47)
695
714
 
696
715
  ## connect-explorer
697
716
 
698
717
  Connect-explorer has been completely revamped into a new design :tada:
699
718
 
700
- - feat(connect-explorer): use relative paths for assets and connect (f6f7cdf32c)
701
- - fix(connect-explorer): method testing tool scrollbars (f15f6487d8)
702
- - fix(connect-explorer): support GitHub emoji (fda80e5aa3)
719
+ - feat(connect-explorer): use relative paths for assets and connect (f6f7cdf32c)
720
+ - fix(connect-explorer): method testing tool scrollbars (f15f6487d8)
721
+ - fix(connect-explorer): support GitHub emoji (fda80e5aa3)
703
722
 
704
723
  ## connect-popup
705
724
 
706
725
  In general measures to address popup closing unexpectedly were taken. Update of content-script.js will be needed to make these changes effective.
707
726
 
708
- - fix(connect-popup): use PassphraseTypeCardLegacy (629d6f8671)
709
- - fix(connect-popup): update text in selectAccount (21f4382)
710
- - fix(connect-popup): add delay before popup bootstrap to allow contentscript load (00b2056)
711
- - fix(connect-popup): webextension example e2e (b9cce02)
712
- - fix(connect-popup): typo in a comment (8e21eeb)
713
- - fix(connect-popup): queue messages sent before init (8850665)
714
- - fix(connect-popup): delay popup.js loading to allow content script to init (92d15bc)
715
- - fix(connect-popup): wait for POPUP.LOADED in webextension (cb18673)
727
+ - fix(connect-popup): use PassphraseTypeCardLegacy (629d6f8671)
728
+ - fix(connect-popup): update text in selectAccount (21f4382)
729
+ - fix(connect-popup): add delay before popup bootstrap to allow contentscript load (00b2056)
730
+ - fix(connect-popup): webextension example e2e (b9cce02)
731
+ - fix(connect-popup): typo in a comment (8e21eeb)
732
+ - fix(connect-popup): queue messages sent before init (8850665)
733
+ - fix(connect-popup): delay popup.js loading to allow content script to init (92d15bc)
734
+ - fix(connect-popup): wait for POPUP.LOADED in webextension (cb18673)
716
735
 
717
736
  ## transport
718
737
 
719
- - feat(transport): make signal required param in constructor (4b82f8d505)
738
+ - feat(transport): make signal required param in constructor (4b82f8d505)
720
739
 
721
740
  ## Dependencies update
722
741
 
723
- - npm-release: @trezor/blockchain-link 2.1.30
724
- - npm-release: @trezor/blockchain-link-utils 1.0.18
725
- - npm-release: @trezor/blockchain-link-types 1.0.17
726
- - npm-release: @trezor/connect-analytics 1.0.15
727
- - npm-release: @trezor/analytics 1.0.17
728
- - npm-release: @trezor/connect-common 0.0.33
729
- - npm-release: @trezor/env-utils 1.0.17
730
- - npm-release: @trezor/transport 1.1.29
731
- - npm-release: @trezor/protobuf 1.0.13
732
- - npm-release: @trezor/schema-utils 1.0.4
733
- - npm-release: @trezor/protocol 1.0.9
734
- - npm-release: @trezor/utxo-lib 2.0.10
735
- - npm-release: @trezor/utils 9.0.24
742
+ - npm-release: @trezor/blockchain-link 2.1.30
743
+ - npm-release: @trezor/blockchain-link-utils 1.0.18
744
+ - npm-release: @trezor/blockchain-link-types 1.0.17
745
+ - npm-release: @trezor/connect-analytics 1.0.15
746
+ - npm-release: @trezor/analytics 1.0.17
747
+ - npm-release: @trezor/connect-common 0.0.33
748
+ - npm-release: @trezor/env-utils 1.0.17
749
+ - npm-release: @trezor/transport 1.1.29
750
+ - npm-release: @trezor/protobuf 1.0.13
751
+ - npm-release: @trezor/schema-utils 1.0.4
752
+ - npm-release: @trezor/protocol 1.0.9
753
+ - npm-release: @trezor/utxo-lib 2.0.10
754
+ - npm-release: @trezor/utils 9.0.24
736
755
 
737
756
  # 9.2.3
738
757
 
739
- - fix(connect): worker-loader for solana and hanged calls over webusb (46c0e96, 172fa22)
740
- - chore(connect): improve type for releases and pick model and coin support type (996e96d, 273591e)
741
- - feat(connect): add T3T1 pubkeys and T3T1 releases.json (edca868, a984008, 1bc4569)
742
- - feat(connect): add `_extendWebextensionLifetime` option (720b61b)
743
- - feat(connect): allow separate accounts/blocks subscription (98e3b28)
744
- - feat(connect): support identity in blockchain methods (2fbb57f)
745
- - test(connect): fix BackendManager tests (0318aea)
746
- - feat(connect): support identities in BackendManager (76767be)
747
- - feat(connect): automatically update language blob when outdated and move changeLanguage logic to Device (425b52b, 04d4fb8)
748
- - fix(connect): always show device selection when bridge and using core in popup (5f1191e)
758
+ - fix(connect): worker-loader for solana and hanged calls over webusb (46c0e96, 172fa22)
759
+ - chore(connect): improve type for releases and pick model and coin support type (996e96d, 273591e)
760
+ - feat(connect): add T3T1 pubkeys and T3T1 releases.json (edca868, a984008, 1bc4569)
761
+ - feat(connect): add `_extendWebextensionLifetime` option (720b61b)
762
+ - feat(connect): allow separate accounts/blocks subscription (98e3b28)
763
+ - feat(connect): support identity in blockchain methods (2fbb57f)
764
+ - test(connect): fix BackendManager tests (0318aea)
765
+ - feat(connect): support identities in BackendManager (76767be)
766
+ - feat(connect): automatically update language blob when outdated and move changeLanguage logic to Device (425b52b, 04d4fb8)
767
+ - fix(connect): always show device selection when bridge and using core in popup (5f1191e)
749
768
 
750
769
  ## connect-example
751
770
 
752
- - Use `_extendWebextensionLifetime` for extending life time of service worker in example mv3-sw (fe537c0)
771
+ - Use `_extendWebextensionLifetime` for extending life time of service worker in example mv3-sw (fe537c0)
753
772
 
754
773
  ## connect-webextension
755
774
 
756
- - Reconnection when service worker goes inactive and option to extend life of service worker (39dcde0, 0377b28)
775
+ - Reconnection when service worker goes inactive and option to extend life of service worker (39dcde0, 0377b28)
757
776
 
758
777
  ## connect-explorer-nextra and connect-explorer-theme
759
778
 
760
- - Improve schemas documentation and styling (367f458, a23fa02, ee7c4f6, 667c802, 05b68fa, 6c2e298, 9150147, 81591dc, bb84950, 8ca02e6, c8f144a, 003854c, 8951663, b284b25, d14c026, d69dee1, 1c82b8f)
779
+ - Improve schemas documentation and styling (367f458, a23fa02, ee7c4f6, 667c802, 05b68fa, 6c2e298, 9150147, 81591dc, bb84950, 8ca02e6, c8f144a, 003854c, 8951663, b284b25, d14c026, d69dee1, 1c82b8f)
761
780
 
762
781
  ## mobile
763
782
 
764
- - fix Connect firmware assets import #12090) (4abe34e)
783
+ - fix Connect firmware assets import #12090) (4abe34e)
765
784
 
766
785
  ## trezor-user-env-link
767
786
 
768
- - Type updates (68be4d2)
787
+ - Type updates (68be4d2)
769
788
 
770
789
  ## connect-popup
771
790
 
772
- - test new webextension select device behavior and check remember device by default for mv3 webextension (1aab629, eb6cf5d)
791
+ - test new webextension select device behavior and check remember device by default for mv3 webextension (1aab629, eb6cf5d)
773
792
 
774
793
  ## protobuf
775
794
 
776
- - clean up type of backup_type in schema (19b7bb2)
795
+ - clean up type of backup_type in schema (19b7bb2)
777
796
 
778
797
  ## connect-common
779
798
 
780
- - Add Czech to available FW translations (4a1aa82)
799
+ - Add Czech to available FW translations (4a1aa82)
781
800
 
782
801
  ## Dependencies update
783
802
 
784
- - npm-release: @trezor/blockchain-link 2.1.29
785
- - npm-release: @trezor/blockchain-link-utils 1.0.17
786
- - npm-release: @trezor/blockchain-link-types 1.0.16
787
- - npm-release: @trezor/connect-common 0.0.32
788
- - npm-release: @trezor/env-utils 1.0.16
789
- - npm-release: @trezor/transport 1.1.28
790
- - npm-release: @trezor/protobuf 1.0.12
791
- - npm-release: @trezor/protocol 1.0.8
792
- - npm-release: @trezor/utxo-lib 2.0.9
793
- - npm-release: @trezor/connect 9.2.3
803
+ - npm-release: @trezor/blockchain-link 2.1.29
804
+ - npm-release: @trezor/blockchain-link-utils 1.0.17
805
+ - npm-release: @trezor/blockchain-link-types 1.0.16
806
+ - npm-release: @trezor/connect-common 0.0.32
807
+ - npm-release: @trezor/env-utils 1.0.16
808
+ - npm-release: @trezor/transport 1.1.28
809
+ - npm-release: @trezor/protobuf 1.0.12
810
+ - npm-release: @trezor/protocol 1.0.8
811
+ - npm-release: @trezor/utxo-lib 2.0.9
812
+ - npm-release: @trezor/connect 9.2.3
794
813
 
795
814
  # 9.2.2
796
815
 
797
816
  Main focus of this release is to allow saving device sessions in webextension, so user's don't have to enter the passphrase repeatedly.
798
817
 
799
- - fix(connect): webextension save sessions (efed18e4ea)
800
- - feat(connect): set default Solana fees (d8cfa5123d)
801
- - fix(connect): add missing isCreatingAccount param validation in blockchainEstimateFee (698ebf625d)
802
- - chore(components): replace Tippy for FloatingUI (a6e3c86759)
803
- - fix(connect): enable changeLanguage in initialize mode (0af5c35f3f)
804
- - chore(suite): remove goerli (8eb6b271a5)
805
- - chore(connect): Add Rainbow Browser Extension to knownHosts (6213f06a58, e648074ec8)
806
- - chore: crowdin translation update (aa9a0d5bfe)
807
- - chore(connect): move logs to @trezor/utils (28c2b9fe57)
808
- - chore(connect): add new CA pubkeys and update timestamp (9b8f4eeb81)
809
- - fix(connect): be more defensive in descriptor parsing (7cf1f02dc4)
810
- - fix(connect): More robust conversion of e.g. 44h to 44' (1ea29b5d6c)
811
- - docs(connect-examples): udpate README with webextensions (8ed2db3ecc)
812
- - chore: upgrade styled-components to v6 (c4bd333501)
813
- - chore(connect-web): add dev URL used for tests (487742a930)
814
- - chore: TS project references for build:libs + buildless utxo-lib (#11526) (4d857722fe)
815
- - fix(connect): no request device in suite (ad6d28e315)
816
- - feat(connect): add translations for Trezor Firmware (a3ebb33571)
817
- - chore(connect-common): add firmware binaries 2.7.0 (4c14b45bd6)
818
- - fix(connect): fix connect for RN (#11489) (14814fd54b)
819
- - chore(repo): mostly buildless monorepo (#11464) (637ad88dcf)
818
+ - fix(connect): webextension save sessions (efed18e4ea)
819
+ - feat(connect): set default Solana fees (d8cfa5123d)
820
+ - fix(connect): add missing isCreatingAccount param validation in blockchainEstimateFee (698ebf625d)
821
+ - chore(components): replace Tippy for FloatingUI (a6e3c86759)
822
+ - fix(connect): enable changeLanguage in initialize mode (0af5c35f3f)
823
+ - chore(suite): remove goerli (8eb6b271a5)
824
+ - chore(connect): Add Rainbow Browser Extension to knownHosts (6213f06a58, e648074ec8)
825
+ - chore: crowdin translation update (aa9a0d5bfe)
826
+ - chore(connect): move logs to @trezor/utils (28c2b9fe57)
827
+ - chore(connect): add new CA pubkeys and update timestamp (9b8f4eeb81)
828
+ - fix(connect): be more defensive in descriptor parsing (7cf1f02dc4)
829
+ - fix(connect): More robust conversion of e.g. 44h to 44' (1ea29b5d6c)
830
+ - docs(connect-examples): udpate README with webextensions (8ed2db3ecc)
831
+ - chore: upgrade styled-components to v6 (c4bd333501)
832
+ - chore(connect-web): add dev URL used for tests (487742a930)
833
+ - chore: TS project references for build:libs + buildless utxo-lib (#11526) (4d857722fe)
834
+ - fix(connect): no request device in suite (ad6d28e315)
835
+ - feat(connect): add translations for Trezor Firmware (a3ebb33571)
836
+ - chore(connect-common): add firmware binaries 2.7.0 (4c14b45bd6)
837
+ - fix(connect): fix connect for RN (#11489) (14814fd54b)
838
+ - chore(repo): mostly buildless monorepo (#11464) (637ad88dcf)
820
839
 
821
840
  # 9.2.1
822
841
 
823
842
  Main motivation for this release was [issue](https://github.com/trezor/trezor-suite/issues/11442) introduced in 9.2.0 release in @trezor/connect-web npm package.
824
843
 
825
- - fix(connect): fix build of connect-web (50f35cb) [related issue](https://github.com/trezor/trezor-suite/issues/11442)
826
- - feat(connect): return checksum in the xpub for taproot (458ddf9)
827
- - fix(connect-ui): analytics button to reflect state (cc59ef9)
828
- - chore(connect): unify failed connection and disconnection (c863646)
829
- - feat(connect): leave sticky backend after some time (021ec5c)
830
- - chore(connect-iframe): fix conflicting variable webpack warning on build:lib (cdbdfb2)
844
+ - fix(connect): fix build of connect-web (50f35cb) [related issue](https://github.com/trezor/trezor-suite/issues/11442)
845
+ - feat(connect): return checksum in the xpub for taproot (458ddf9)
846
+ - fix(connect-ui): analytics button to reflect state (cc59ef9)
847
+ - chore(connect): unify failed connection and disconnection (c863646)
848
+ - feat(connect): leave sticky backend after some time (021ec5c)
849
+ - chore(connect-iframe): fix conflicting variable webpack warning on build:lib (cdbdfb2)
831
850
 
832
851
  ## Dependencies update
833
852
 
834
- - npm-release: @trezor/blockchain-link 2.1.27
835
- - npm-release: @trezor/connect-common 0.0.30
836
- - npm-release: @trezor/transport 1.1.26
837
- - npm-release: @trezor/protobuf 1.0.10
853
+ - npm-release: @trezor/blockchain-link 2.1.27
854
+ - npm-release: @trezor/connect-common 0.0.30
855
+ - npm-release: @trezor/transport 1.1.26
856
+ - npm-release: @trezor/protobuf 1.0.10
838
857
 
839
858
  # 9.2.0
840
859
 
@@ -842,353 +861,353 @@ Main motivation for this release was [issue](https://github.com/trezor/trezor-su
842
861
 
843
862
  Single unified popup manager that for both connect-web and connect-webextension package.
844
863
 
845
- - chore(connect-web): add channel descriptors to poup, iframe (d6a054e)
846
- - chore(connect-web): refactor popupmanager (af1723e)
847
- - other: 0059145, 5da505b, ee98bb5
848
- - fix(connect-web): race condition POPUP.HANDSHAKE before IFRAME.CALL (a433f85)
864
+ - chore(connect-web): add channel descriptors to poup, iframe (d6a054e)
865
+ - chore(connect-web): refactor popupmanager (af1723e)
866
+ - other: 0059145, 5da505b, ee98bb5
867
+ - fix(connect-web): race condition POPUP.HANDSHAKE before IFRAME.CALL (a433f85)
849
868
 
850
869
  ## @trezor/connect-webextension npm package
851
870
 
852
871
  This package is now out of beta.
853
872
 
854
- - fix(connect-webextension): equalSettings in init, don't focus extension on error (64eb6ec)
855
- - feat(connect): add CHANNEL_HANDSHAKE_CONFIRM to webextension events (1527034)
856
- - feat(connect-webextension): emit events for WEBEXTENSION.CHANNEL_HANDSHAKE_CONFIRM (4ab8a8c)
857
- - test(connect-popup): integrate testing for connect-webextension (06b91ec)
873
+ - fix(connect-webextension): equalSettings in init, don't focus extension on error (64eb6ec)
874
+ - feat(connect): add CHANNEL_HANDSHAKE_CONFIRM to webextension events (1527034)
875
+ - feat(connect-webextension): emit events for WEBEXTENSION.CHANNEL_HANDSHAKE_CONFIRM (4ab8a8c)
876
+ - test(connect-popup): integrate testing for connect-webextension (06b91ec)
858
877
 
859
878
  ## @trezor/connect
860
879
 
861
- - feat(connect): device.availableTranslations field (5ac97e7)
862
- - feat(connect): rebootToBootloader, add params (boot_command, firmware_header, language_data_length) (b0f7487)
863
- - fix(connect): set min version for rebootToBootloader to correct value (74ad010)
864
- - chore(connect): improve types of fetch assets util (9d60004)
865
- - fix(connect): toMessageObject undefined (df55715)
866
- - feat(connect): add reconnect functionality to BackendManager (9783a9e, 3390bfb, af0599f)
880
+ - feat(connect): device.availableTranslations field (5ac97e7)
881
+ - feat(connect): rebootToBootloader, add params (boot_command, firmware_header, language_data_length) (b0f7487)
882
+ - fix(connect): set min version for rebootToBootloader to correct value (74ad010)
883
+ - chore(connect): improve types of fetch assets util (9d60004)
884
+ - fix(connect): toMessageObject undefined (df55715)
885
+ - feat(connect): add reconnect functionality to BackendManager (9783a9e, 3390bfb, af0599f)
867
886
 
868
887
  ## @trezor/connect-explorer and @trezor/connect-popup
869
888
 
870
- - feat(connect-explorer): add changeLanguage method (7339a2d)
871
- - chore(connect-explorer): upgrade markdown-it (087ca01)
872
- - chore(connect-explorer): update markdown-it-replace-link (0a83011)
873
- - chore(connect-explorer): remove unused AsyncSelect (94eb3f7)
874
- - fix(connect): display loading before device acquired (815c69d)
875
- - fix(connect): display device selection if device unacquired (231410e)
889
+ - feat(connect-explorer): add changeLanguage method (7339a2d)
890
+ - chore(connect-explorer): upgrade markdown-it (087ca01)
891
+ - chore(connect-explorer): update markdown-it-replace-link (0a83011)
892
+ - chore(connect-explorer): remove unused AsyncSelect (94eb3f7)
893
+ - fix(connect): display loading before device acquired (815c69d)
894
+ - fix(connect): display device selection if device unacquired (231410e)
876
895
 
877
896
  ## Stellar
878
897
 
879
- - feat(connect): add support for StellarClaimClaimableBalanceOp. (51a3e29)
880
- - chore(connect-plugin-stellar): update stellar libraries (2130437, 714bbbd)
898
+ - feat(connect): add support for StellarClaimClaimableBalanceOp. (51a3e29)
899
+ - chore(connect-plugin-stellar): update stellar libraries (2130437, 714bbbd)
881
900
 
882
901
  ## General refactoring
883
902
 
884
- - chore: dependencies and monorepo changes (fecd89f, c21d81f, 84bc9b8, 5a6759e, 01e33b7, 00fe229, a7e6879, 004938e, fac6d99, d3f8043, ed1fd3e, 3861846, 9fdccc9, 44fa12a)
885
- - chore(repo): remove build from protobuf (chore(repo): remove build from protobuf #11288) (11ffd94)
886
- - chore(repo): remove build:lib for some simple packages (chore(repo): remove build:lib for some simple packages #11276) (7febd10)
887
- - chore(utils): remove build step requirement from @trezor/utils (chore(utils): remove build step requirement from @trezor/utils #11176) (6cd3d3c)
888
- - chore(connect-explorer-webextension): delete package - now in connect-explorer/src-webextension (494afc7)
903
+ - chore: dependencies and monorepo changes (fecd89f, c21d81f, 84bc9b8, 5a6759e, 01e33b7, 00fe229, a7e6879, 004938e, fac6d99, d3f8043, ed1fd3e, 3861846, 9fdccc9, 44fa12a)
904
+ - chore(repo): remove build from protobuf (chore(repo): remove build from protobuf #11288) (11ffd94)
905
+ - chore(repo): remove build:lib for some simple packages (chore(repo): remove build:lib for some simple packages #11276) (7febd10)
906
+ - chore(utils): remove build step requirement from @trezor/utils (chore(utils): remove build step requirement from @trezor/utils #11176) (6cd3d3c)
907
+ - chore(connect-explorer-webextension): delete package - now in connect-explorer/src-webextension (494afc7)
889
908
 
890
909
  ## Dependencies update
891
910
 
892
- - npm-release: @trezor/blockchain-link 2.1.26
893
- - npm-release: @trezor/blockchain-link-utils 1.0.15
894
- - npm-release: @trezor/blockchain-link-types 1.0.14
895
- - npm-release: @trezor/type-utils 1.0.5
896
- - npm-release: @trezor/connect-analytics 1.0.13
897
- - npm-release: @trezor/analytics 1.0.15
898
- - npm-release: @trezor/connect-common 0.0.29
899
- - npm-release: @trezor/env-utils 1.0.14
900
- - npm-release: @trezor/transport 1.1.25
901
- - npm-release: @trezor/protobuf 1.0.9
902
- - npm-release: @trezor/schema-utils 1.0.2
903
- - npm-release: @trezor/protocol 1.0.6
904
- - npm-release: @trezor/utxo-lib 2.0.7
905
- - npm-release: @trezor/utils 9.0.22
906
- - npm-release: @trezor/connect 9.2.0
911
+ - npm-release: @trezor/blockchain-link 2.1.26
912
+ - npm-release: @trezor/blockchain-link-utils 1.0.15
913
+ - npm-release: @trezor/blockchain-link-types 1.0.14
914
+ - npm-release: @trezor/type-utils 1.0.5
915
+ - npm-release: @trezor/connect-analytics 1.0.13
916
+ - npm-release: @trezor/analytics 1.0.15
917
+ - npm-release: @trezor/connect-common 0.0.29
918
+ - npm-release: @trezor/env-utils 1.0.14
919
+ - npm-release: @trezor/transport 1.1.25
920
+ - npm-release: @trezor/protobuf 1.0.9
921
+ - npm-release: @trezor/schema-utils 1.0.2
922
+ - npm-release: @trezor/protocol 1.0.6
923
+ - npm-release: @trezor/utxo-lib 2.0.7
924
+ - npm-release: @trezor/utils 9.0.22
925
+ - npm-release: @trezor/connect 9.2.0
907
926
 
908
927
  # 9.1.12
909
928
 
910
- - chore(connect): add new CA pubkeys and update timestamp (a4ca9b1)
911
- - chore(connect): improve types, replace any with PassphrasePromptResponse (9a95962)
912
- - feat: add Polygon (8c569ca)
913
- - fix(connect-popup): display errors with no code (8b7cbfa)
914
- - fix(connect-popup): don't show error when no device selected (f246369)
915
- - fix(connect-ui): tipcontainer bottom margin (bb0379d)
916
- - refactor(connect): unify message promises (b0d4b11)
917
- - refactor(connect): remove initAsyncPromise (da48a71)
918
- - refactor(connect): unify initCore and initTransport (00deffa, 027be4f)
919
- - refactor(connect): CoreRequestMessage/CoreEventMessage separation (ea3afa2)
920
- - chore(connect-ui): mirror store to local react state (b587a65)
921
- - feat(connect): deal with disconnected && preferredDevice (40e9db8, 6e4ddb4)
922
- - chore(connect): use preferred device from store (d1899e8)
923
- - chore(connect-common): remove es5 target (fails with TypedEmitter) (0a19580)
924
- - feat(connect-common): store is event emitter, saves permissions and preferred device (db0e963)
925
- - feat(connect-common): message channel to allow lazy handshake (79be923)
926
- - chore(connect-ui): ui changes (dcb8e02, 03c6cc6, 936f6b5, 6b7ed69, 8f9f3e2, 4cc0cd6)
927
- - fix(libs): changes in libs that should allow compiling connect with typescript option skipLibCheck: false
928
- - chore(connect): split dev and prod builds. (535dd48)
929
- - dependencies update: @trezor/blockchain-link, @trezor/blockchain-link-types, @trezor/type-utils, @trezor/analytics, @trezor/connect-common, @trezor/env-utils, @trezor/transport, @trezor/protobuf, @trezor/utxo-lib, @trezor/utils
929
+ - chore(connect): add new CA pubkeys and update timestamp (a4ca9b1)
930
+ - chore(connect): improve types, replace any with PassphrasePromptResponse (9a95962)
931
+ - feat: add Polygon (8c569ca)
932
+ - fix(connect-popup): display errors with no code (8b7cbfa)
933
+ - fix(connect-popup): don't show error when no device selected (f246369)
934
+ - fix(connect-ui): tipcontainer bottom margin (bb0379d)
935
+ - refactor(connect): unify message promises (b0d4b11)
936
+ - refactor(connect): remove initAsyncPromise (da48a71)
937
+ - refactor(connect): unify initCore and initTransport (00deffa, 027be4f)
938
+ - refactor(connect): CoreRequestMessage/CoreEventMessage separation (ea3afa2)
939
+ - chore(connect-ui): mirror store to local react state (b587a65)
940
+ - feat(connect): deal with disconnected && preferredDevice (40e9db8, 6e4ddb4)
941
+ - chore(connect): use preferred device from store (d1899e8)
942
+ - chore(connect-common): remove es5 target (fails with TypedEmitter) (0a19580)
943
+ - feat(connect-common): store is event emitter, saves permissions and preferred device (db0e963)
944
+ - feat(connect-common): message channel to allow lazy handshake (79be923)
945
+ - chore(connect-ui): ui changes (dcb8e02, 03c6cc6, 936f6b5, 6b7ed69, 8f9f3e2, 4cc0cd6)
946
+ - fix(libs): changes in libs that should allow compiling connect with typescript option skipLibCheck: false
947
+ - chore(connect): split dev and prod builds. (535dd48)
948
+ - dependencies update: @trezor/blockchain-link, @trezor/blockchain-link-types, @trezor/type-utils, @trezor/analytics, @trezor/connect-common, @trezor/env-utils, @trezor/transport, @trezor/protobuf, @trezor/utxo-lib, @trezor/utils
930
949
 
931
950
  # 9.1.11
932
951
 
933
- - fix(connect): use weak assert in altcoin signTransaction (86b3703279)
934
- - fix(connect): rebootToBootloader misbehaviour (662543c429)
935
- - feat(connect-explorer): add connectSrc to settings (053e9f0908)
936
- - fix(connect): nem and eth signTx validation issues (a53937c2ea)
937
- - fix(connect): allow empty signature in multisig in getAddress (3b356b5952)
938
- - fix(connect-examples): webextensions example update usb permissions url (cfbdfc2469)
952
+ - fix(connect): use weak assert in altcoin signTransaction (86b3703279)
953
+ - fix(connect): rebootToBootloader misbehaviour (662543c429)
954
+ - feat(connect-explorer): add connectSrc to settings (053e9f0908)
955
+ - fix(connect): nem and eth signTx validation issues (a53937c2ea)
956
+ - fix(connect): allow empty signature in multisig in getAddress (3b356b5952)
957
+ - fix(connect-examples): webextensions example update usb permissions url (cfbdfc2469)
939
958
 
940
959
  # 9.1.10
941
960
 
942
- - chore(connect): bump ADA support version, min required version is now 2.4.3 (7937fea3ec)
943
- - fix(connect): always check ADA passphrase (42c28cc95d)
944
- - chore(connect): decrease build size by using lib of utils which is not treeshaken (b4ab48b25f)
945
- - refactor(connect): rework validation of input params (0c035c26a6, 44430e47ff, c78cd9ad28, c5e9d50bf4)
961
+ - chore(connect): bump ADA support version, min required version is now 2.4.3 (7937fea3ec)
962
+ - fix(connect): always check ADA passphrase (42c28cc95d)
963
+ - chore(connect): decrease build size by using lib of utils which is not treeshaken (b4ab48b25f)
964
+ - refactor(connect): rework validation of input params (0c035c26a6, 44430e47ff, c78cd9ad28, c5e9d50bf4)
946
965
 
947
966
  # 9.1.9
948
967
 
949
- - fix(connect-popup): webusb pairing in webextensions using manifest version 2 [#10709](https://github.com/trezor/trezor-suite/pull/10709).
968
+ - fix(connect-popup): webusb pairing in webextensions using manifest version 2 [#10709](https://github.com/trezor/trezor-suite/pull/10709).
950
969
 
951
970
  # 9.1.8
952
971
 
953
- - fix(connect-explorer): eth getAccountInfo coin fix (0108b96)
954
- - fix(connect): do not check firmware range for devices in bootloader (ed53f9f)
955
- - feat(connect): add changeWipeCode method (b85d957)
956
- - deps(connect-plugin-ethereum): @metamask/eth-sig-util@^7.0.0->^7.0.1 (e24c80a)
957
- - chore(connect): improve origTxs and refTxs (ffcb3ee)
958
- - feat(connect): blockchain-link API adjusted (2df1416)
959
- - chore(connect-explorer): add ADA params (9969d65)
972
+ - fix(connect-explorer): eth getAccountInfo coin fix (0108b96)
973
+ - fix(connect): do not check firmware range for devices in bootloader (ed53f9f)
974
+ - feat(connect): add changeWipeCode method (b85d957)
975
+ - deps(connect-plugin-ethereum): @metamask/eth-sig-util@^7.0.0->^7.0.1 (e24c80a)
976
+ - chore(connect): improve origTxs and refTxs (ffcb3ee)
977
+ - feat(connect): blockchain-link API adjusted (2df1416)
978
+ - chore(connect-explorer): add ADA params (9969d65)
960
979
 
961
980
  # 9.1.7
962
981
 
963
- - fix(connect): correct UiRequestConfirmation type in solanaGetPublicKey (a93ea1890)
964
- - chore(connect): stricter UiRequestConfirmation types (f35bd28bf)
965
- - feat(connect-common): add more backend urls for solana (29f042470)
966
- - chore: Throttler throttling instead of debouncing in `@trezor/blockchain-link` (#10288) (f7ff0cf9f)
967
- - feat(transport): accept encoding protocols as parameter of send, receive and call methods (b64af958e)
968
- - fix(connect-explorer): fs, path, fallbacks in webpack (4f5a15e32)
969
- - chore(connect-common): update fw binaries to 2.6.4 (398509788)
970
- - docs(connect): update index page (8cb5262f6)
971
- - feat(connect-explorer): update SVG in Header component (e8d9beace)
972
- - feat(connect-explorer): update favicon image (a8d660dd2)
973
- - feat(connect-explorer): add Solana (799bf63f5)
974
- - chore(connect): update downgraded @ethereumjs libs (9ac430c42)
975
- - chore(connect): add option for chunkify solana `getAddress` method (98d234f31)
976
- - fix(connect-explorer-webextension): add commitHash to webpack (6b6b77d9d)
977
- - feat(suite): add Solana support (f2a89b34f)
978
- - chore: add Holesky (175707861,8776bb79c)
979
- - feat(connect-explorer): version docs (6ea9ef1f2)
980
- - fix(connect-popup): when connect-src not same as host popup display unknown origin (1bc6f2da1)
981
- - feat(connect-explorer, connect): add `chunkify` paramater to getAddress and signTx methods (7e01923f0,2926b2bdb)
982
- - fix(connect-popup): handle METHOD_INFO (e6d11072b)
983
- - fix(connect): support unknown (custom) internal_models (0915d8893)
984
- - fix(cardano): fee estimate for set-max output (c50a8f2c7)
985
- - chore(connect): use `tslib` as dependency in all public libs (606ecc63b)
986
- - chore: update `jest` and related dependency (b8a321c83)
987
- - chore(connect-examples): cleanup unused lines in script (b509d24d5)
988
- - chore(connect-webextension): postMessage useQueue param (4e626e758)
989
- - chore(repo): update tsx (53de3e3a8)
990
- - chore(connect): remove Solana beta console logs (3ea8343ee)
991
- - chore(docs): add link to internal description of device authenticity config update (ee9ad470a)
992
- - chore(connect): add new CA pubkeys and update timestamp (b64c3f411)
982
+ - fix(connect): correct UiRequestConfirmation type in solanaGetPublicKey (a93ea1890)
983
+ - chore(connect): stricter UiRequestConfirmation types (f35bd28bf)
984
+ - feat(connect-common): add more backend urls for solana (29f042470)
985
+ - chore: Throttler throttling instead of debouncing in `@trezor/blockchain-link` (#10288) (f7ff0cf9f)
986
+ - feat(transport): accept encoding protocols as parameter of send, receive and call methods (b64af958e)
987
+ - fix(connect-explorer): fs, path, fallbacks in webpack (4f5a15e32)
988
+ - chore(connect-common): update fw binaries to 2.6.4 (398509788)
989
+ - docs(connect): update index page (8cb5262f6)
990
+ - feat(connect-explorer): update SVG in Header component (e8d9beace)
991
+ - feat(connect-explorer): update favicon image (a8d660dd2)
992
+ - feat(connect-explorer): add Solana (799bf63f5)
993
+ - chore(connect): update downgraded @ethereumjs libs (9ac430c42)
994
+ - chore(connect): add option for chunkify solana `getAddress` method (98d234f31)
995
+ - fix(connect-explorer-webextension): add commitHash to webpack (6b6b77d9d)
996
+ - feat(suite): add Solana support (f2a89b34f)
997
+ - chore: add Holesky (175707861,8776bb79c)
998
+ - feat(connect-explorer): version docs (6ea9ef1f2)
999
+ - fix(connect-popup): when connect-src not same as host popup display unknown origin (1bc6f2da1)
1000
+ - feat(connect-explorer, connect): add `chunkify` paramater to getAddress and signTx methods (7e01923f0,2926b2bdb)
1001
+ - fix(connect-popup): handle METHOD_INFO (e6d11072b)
1002
+ - fix(connect): support unknown (custom) internal_models (0915d8893)
1003
+ - fix(cardano): fee estimate for set-max output (c50a8f2c7)
1004
+ - chore(connect): use `tslib` as dependency in all public libs (606ecc63b)
1005
+ - chore: update `jest` and related dependency (b8a321c83)
1006
+ - chore(connect-examples): cleanup unused lines in script (b509d24d5)
1007
+ - chore(connect-webextension): postMessage useQueue param (4e626e758)
1008
+ - chore(repo): update tsx (53de3e3a8)
1009
+ - chore(connect): remove Solana beta console logs (3ea8343ee)
1010
+ - chore(docs): add link to internal description of device authenticity config update (ee9ad470a)
1011
+ - chore(connect): add new CA pubkeys and update timestamp (b64c3f411)
993
1012
 
994
1013
  # 9.1.6
995
1014
 
996
- - chore(connect): remove web3-utils (2f683f6)
997
- - feat(connect): serialize in ethereumSignTransaction (8f62896)
998
- - feat(connect): add serializeEthereumTx util (a9b21a3)
999
- - refactor(connect): improve ethereumSignTransaction (788910b)
1000
- - feat(connect-popup): shared worker logger load dynamically only when required (424383e, f5400f8)
1001
- - feat(connect): update solana backend urls, fee info, workers, account descriptor and fw integration (876f609, a3ae0ae, e1058ea, cadffc6, 3d9c703)
1002
- - feat(connect-popup): add new method that allow set to use core (d944e50)
1003
- - feat(core): new events for core in popup (242a169)
1004
- - chore(connect-iframe): suppress subtle crypto warning (1f0e722)
1005
- - feat(connect-iframe): standalone core build (c344c3d)
1006
- - feat(deps): update deps without breaking changes (7e0584c)
1007
- - fix(connect-web, connect-popup): remove trust-issues handle from query param (79036e8, b8640d8, 87b4b84)
1008
- - feat(connect-explorer): settings page to restart connect (33e41f6)
1009
- - feat(connect): update protobuf messages in custom Transports (if not set) (1eb5156)
1010
- - fix(connect): device.run race condition (7d0545c, 7978eab)
1011
- - feat(connect-common): add T2T1 & T2B1 firmware binaries 2.6.3 bootloader 2.1.4 (9cca8b1)
1012
- - fix(mobile): Fix modularized connect in React Native (57fcb9d, ba42388, 1ef62e7)
1013
- - chore(deps): bump @fivebinaries/coin-selection (5e16f60)
1014
- - chore(connect): ethereum api dynamic load (b22d228)
1015
- - chore(connect): cardano api dynamic load (3ef0e77)
1016
- - chore(connect): stellar api dynamic import (473ea94)
1017
- - chore(connect): nem api dynamic import (52e2f99)
1018
- - chore(connect): eos api dynamic import (cf5b3ad)
1019
- - chore(connect): binance api dynamic import (3ccf149)
1020
- - chore(connect): tezos api dynamic import (273a9fe)
1021
- - chore(connect): ripple api dynamic import (9b17e38)
1022
- - chore(connect): prepare for dynamic method import (d4868eb)
1023
- - chore(connect): blockchain link workers dynamic import (74fd083)
1024
- - chore(connect): implement @trezor/utxo-lib 2.0.0 (06a9f7a)
1025
- - feat(connect): add getAccountDescriptor method (0b005ec)
1015
+ - chore(connect): remove web3-utils (2f683f6)
1016
+ - feat(connect): serialize in ethereumSignTransaction (8f62896)
1017
+ - feat(connect): add serializeEthereumTx util (a9b21a3)
1018
+ - refactor(connect): improve ethereumSignTransaction (788910b)
1019
+ - feat(connect-popup): shared worker logger load dynamically only when required (424383e, f5400f8)
1020
+ - feat(connect): update solana backend urls, fee info, workers, account descriptor and fw integration (876f609, a3ae0ae, e1058ea, cadffc6, 3d9c703)
1021
+ - feat(connect-popup): add new method that allow set to use core (d944e50)
1022
+ - feat(core): new events for core in popup (242a169)
1023
+ - chore(connect-iframe): suppress subtle crypto warning (1f0e722)
1024
+ - feat(connect-iframe): standalone core build (c344c3d)
1025
+ - feat(deps): update deps without breaking changes (7e0584c)
1026
+ - fix(connect-web, connect-popup): remove trust-issues handle from query param (79036e8, b8640d8, 87b4b84)
1027
+ - feat(connect-explorer): settings page to restart connect (33e41f6)
1028
+ - feat(connect): update protobuf messages in custom Transports (if not set) (1eb5156)
1029
+ - fix(connect): device.run race condition (7d0545c, 7978eab)
1030
+ - feat(connect-common): add T2T1 & T2B1 firmware binaries 2.6.3 bootloader 2.1.4 (9cca8b1)
1031
+ - fix(mobile): Fix modularized connect in React Native (57fcb9d, ba42388, 1ef62e7)
1032
+ - chore(deps): bump @fivebinaries/coin-selection (5e16f60)
1033
+ - chore(connect): ethereum api dynamic load (b22d228)
1034
+ - chore(connect): cardano api dynamic load (3ef0e77)
1035
+ - chore(connect): stellar api dynamic import (473ea94)
1036
+ - chore(connect): nem api dynamic import (52e2f99)
1037
+ - chore(connect): eos api dynamic import (cf5b3ad)
1038
+ - chore(connect): binance api dynamic import (3ccf149)
1039
+ - chore(connect): tezos api dynamic import (273a9fe)
1040
+ - chore(connect): ripple api dynamic import (9b17e38)
1041
+ - chore(connect): prepare for dynamic method import (d4868eb)
1042
+ - chore(connect): blockchain link workers dynamic import (74fd083)
1043
+ - chore(connect): implement @trezor/utxo-lib 2.0.0 (06a9f7a)
1044
+ - feat(connect): add getAccountDescriptor method (0b005ec)
1026
1045
 
1027
1046
  # 9.1.5
1028
1047
 
1029
- - feat(suite): T2B1 replace Model R name by official Trezor Safe 3 name (7460372ed1)
1030
- - feat(connect): add authenticateDevice method (45b99c0813, af907a296d, 249ddc358a)
1031
- - feat(connect): btg, dash, dgb, nmc, vrc no support for T2B1 (0819ff6fc1)
1032
- - feat(suite): support t2b1 firmware installation (9ef2bf627a)
1033
- - fix(connect): get firmware status and release after ensuring internal model (dca3333c2d)
1034
- - fix(connect-popup): webusb in popup if iframe is on same origin as host (e571971586)
1035
- - feat(connect-web): trust-issues query string param (b1b6e3f287)
1036
- - feat(connect-plugin-stellar): Update stellar-sdk and stellar-base (ee7e67db04)
1037
- - chore(connect): t1 emulator with pin (33c6ca58bf)
1038
- - fix(connect-popup): allow decimal custom fee entry (bf20f23f05, 8a8d93b5e8)
1039
- - feat(connect-explorer): add rebootToBootloader method (9996676358)
1040
- - fix(connect): wrong version format in discovery (19b13d1d4c)
1041
- - feat(connect-popup): logger in sharedworker collecting from all environments (732bc7d, 2521c7c, 6501dfa4fd)
1042
- - chore(connect): do not lowercase device color (7229b88c20)
1048
+ - feat(suite): T2B1 replace Model R name by official Trezor Safe 3 name (7460372ed1)
1049
+ - feat(connect): add authenticateDevice method (45b99c0813, af907a296d, 249ddc358a)
1050
+ - feat(connect): btg, dash, dgb, nmc, vrc no support for T2B1 (0819ff6fc1)
1051
+ - feat(suite): support t2b1 firmware installation (9ef2bf627a)
1052
+ - fix(connect): get firmware status and release after ensuring internal model (dca3333c2d)
1053
+ - fix(connect-popup): webusb in popup if iframe is on same origin as host (e571971586)
1054
+ - feat(connect-web): trust-issues query string param (b1b6e3f287)
1055
+ - feat(connect-plugin-stellar): Update stellar-sdk and stellar-base (ee7e67db04)
1056
+ - chore(connect): t1 emulator with pin (33c6ca58bf)
1057
+ - fix(connect-popup): allow decimal custom fee entry (bf20f23f05, 8a8d93b5e8)
1058
+ - feat(connect-explorer): add rebootToBootloader method (9996676358)
1059
+ - fix(connect): wrong version format in discovery (19b13d1d4c)
1060
+ - feat(connect-popup): logger in sharedworker collecting from all environments (732bc7d, 2521c7c, 6501dfa4fd)
1061
+ - chore(connect): do not lowercase device color (7229b88c20)
1043
1062
 
1044
1063
  # 9.1.4
1045
1064
 
1046
- - feat(connect-popup): add metamask extension id to known third party (f137b3e4d6)
1047
- - test(connect): composeTransaction fix doge fee (69a92483c6)
1048
- - refactor(connect): remove doge fee branch (c79f3f25d8)
1049
- - feat(transport): udp support for transport methods (65e617195c)
1050
- - fix(connect): accept signTransaction inputs/outputs with `address_n: string` (82910e0766)
1051
- - fix(connect-explorer, connect-popup): add favicon (cafb574ada, c6071123f3)
1052
- - feat(connect-popup): use trezor icons with display off from suite-data (1c806519a7)
1053
- - feat(connect): trezor color in device object (31535e2b0f)
1054
- - feat(connect): trezor name in device object (a0ecb66390)
1055
- - feat(connect-common): copy models.json from submodules (6d80197523)
1056
- - fix(connect-iframe): device event not propagating to host (d35e37863a)
1057
- - feat(connect, suite): unify no backup warning button text (375f3fa1a1)
1058
- - feat(connect): add suppressBackupWarning param to getPublicKey and getAccountInfo (2c2698d8af)
1059
- - fix(type-check): connect-web includes connect-iframe package.json (f9f576ab66)
1060
- - fix(connect-iframe): method.initAsync method superfluous call (37ace99a5d)
1061
- - fix(connect-iframe): define plugin in build to support analytics (c793ce358c)
1065
+ - feat(connect-popup): add metamask extension id to known third party (f137b3e4d6)
1066
+ - test(connect): composeTransaction fix doge fee (69a92483c6)
1067
+ - refactor(connect): remove doge fee branch (c79f3f25d8)
1068
+ - feat(transport): udp support for transport methods (65e617195c)
1069
+ - fix(connect): accept signTransaction inputs/outputs with `address_n: string` (82910e0766)
1070
+ - fix(connect-explorer, connect-popup): add favicon (cafb574ada, c6071123f3)
1071
+ - feat(connect-popup): use trezor icons with display off from suite-data (1c806519a7)
1072
+ - feat(connect): trezor color in device object (31535e2b0f)
1073
+ - feat(connect): trezor name in device object (a0ecb66390)
1074
+ - feat(connect-common): copy models.json from submodules (6d80197523)
1075
+ - fix(connect-iframe): device event not propagating to host (d35e37863a)
1076
+ - feat(connect, suite): unify no backup warning button text (375f3fa1a1)
1077
+ - feat(connect): add suppressBackupWarning param to getPublicKey and getAccountInfo (2c2698d8af)
1078
+ - fix(type-check): connect-web includes connect-iframe package.json (f9f576ab66)
1079
+ - fix(connect-iframe): method.initAsync method superfluous call (37ace99a5d)
1080
+ - fix(connect-iframe): define plugin in build to support analytics (c793ce358c)
1062
1081
 
1063
1082
  # 9.1.3
1064
1083
 
1065
- - fix(connect): correct import of internal connect dependency (https://github.com/trezor/trezor-suite/issues/9389)
1084
+ - fix(connect): correct import of internal connect dependency (https://github.com/trezor/trezor-suite/issues/9389)
1066
1085
 
1067
1086
  # 9.1.2
1068
1087
 
1069
- - feat(connect): analytics method name and method param names (23df6d8)
1070
- - feat(connect): improve calculation of fees and dust limit. (d726aab, 9d1ef05, 60f1e26, 2187c34, d84e3ca)
1071
- - fix(connect): device.firmwareType can't be safely determined in bootloader mode so we set it to undefined (c3d33a0)
1072
- - feat(connect): signTransaction with refTxs passed as AccountTransaction interface (d7ec435)
1073
- - feat(connect): decoding ethereum definitions which allows richer UI in connect-popup (0e9356f)
1074
- - feat(connect-explorer): updated examples ethereum (b025834, e58c416), applySettings (1a28816)
1075
- - feat(connect-explorer): render docs from docs folder on index page (93fddc4)
1088
+ - feat(connect): analytics method name and method param names (23df6d8)
1089
+ - feat(connect): improve calculation of fees and dust limit. (d726aab, 9d1ef05, 60f1e26, 2187c34, d84e3ca)
1090
+ - fix(connect): device.firmwareType can't be safely determined in bootloader mode so we set it to undefined (c3d33a0)
1091
+ - feat(connect): signTransaction with refTxs passed as AccountTransaction interface (d7ec435)
1092
+ - feat(connect): decoding ethereum definitions which allows richer UI in connect-popup (0e9356f)
1093
+ - feat(connect-explorer): updated examples ethereum (b025834, e58c416), applySettings (1a28816)
1094
+ - feat(connect-explorer): render docs from docs folder on index page (93fddc4)
1076
1095
 
1077
1096
  # 9.1.1
1078
1097
 
1079
- - feat(connect-popup): added device internal_model in features
1080
- - feat(connect): add cancelCoinjoinAuthorization method
1081
- - feat(connect): added nodeusb transport. TrezorConnect is now capable of communicating with Trezor devices without using TrezorBridge (in node.js environment).
1082
- - feat(connect-popup): when a call to TrezorConnect returns `success: false` popup remains opened and displays error page instead.
1083
- - feat(connect-popup): add no-backup warning to getPublicKey method
1084
- - fix(connect): respect useEmptyPassphrase param in cipherKeyValue method
1098
+ - feat(connect-popup): added device internal_model in features
1099
+ - feat(connect): add cancelCoinjoinAuthorization method
1100
+ - feat(connect): added nodeusb transport. TrezorConnect is now capable of communicating with Trezor devices without using TrezorBridge (in node.js environment).
1101
+ - feat(connect-popup): when a call to TrezorConnect returns `success: false` popup remains opened and displays error page instead.
1102
+ - feat(connect-popup): add no-backup warning to getPublicKey method
1103
+ - fix(connect): respect useEmptyPassphrase param in cipherKeyValue method
1085
1104
 
1086
1105
  # 9.0.11
1087
1106
 
1088
- - fix(connect-web): fix imports from connect
1107
+ - fix(connect-web): fix imports from connect
1089
1108
 
1090
1109
  # 9.0.10
1091
1110
 
1092
- - fix(connect-popup): fix connect-popup in firefox
1093
- - feat(connect-popup): tiny visual updates, added loading messages based on communication with iframe
1094
- - fix(connect-web): prevent unexpected import of transport runtime code in connect/web
1111
+ - fix(connect-popup): fix connect-popup in firefox
1112
+ - feat(connect-popup): tiny visual updates, added loading messages based on communication with iframe
1113
+ - fix(connect-web): prevent unexpected import of transport runtime code in connect/web
1095
1114
 
1096
1115
  # 9.0.9
1097
1116
 
1098
- - fix(connect): prevent .asArray of undefined runtime error
1099
- - fix(connect): add missing currencies param for getFiatRatesForTimestamps
1117
+ - fix(connect): prevent .asArray of undefined runtime error
1118
+ - fix(connect): add missing currencies param for getFiatRatesForTimestamps
1100
1119
 
1101
1120
  # 9.0.8
1102
1121
 
1103
- - feat: support multiple intermediary FWs for T1B1 and devkit binaries
1104
- - `FirmwareUpdate` now accepts `intermediaryVersion` param instead of `intermediary`
1105
- - `getInfo` returns `intermediaryVersion` needed for T1B1 and removed `latest` param. 'release' always return latest version for T1B1 so it means abandoning the concept of incremental updates for T1B1.
1106
- - feat: signTransaction now returns `signedTransaction` which can be used for visualization purposes before notification about pending transaction from blockchain is received.
1107
- - feat(blockchain): `blockchainGetCurrentFiatRates` and `blockchainGetFiatRatesForTimestamps` now accept additional `token` parameter
1108
- - feat: support coinjoin for T1B1
1109
- - feat(transport): eth definitions
1110
- - feat(webextension): Ignore port events if it is not port created by current popup
1111
- - feat(cardano): allow external reward addresses in governance registrations
1112
- - refactor(connect): removing browser related code from @trezor/connect
1122
+ - feat: support multiple intermediary FWs for T1B1 and devkit binaries
1123
+ - `FirmwareUpdate` now accepts `intermediaryVersion` param instead of `intermediary`
1124
+ - `getInfo` returns `intermediaryVersion` needed for T1B1 and removed `latest` param. 'release' always return latest version for T1B1 so it means abandoning the concept of incremental updates for T1B1.
1125
+ - feat: signTransaction now returns `signedTransaction` which can be used for visualization purposes before notification about pending transaction from blockchain is received.
1126
+ - feat(blockchain): `blockchainGetCurrentFiatRates` and `blockchainGetFiatRatesForTimestamps` now accept additional `token` parameter
1127
+ - feat: support coinjoin for T1B1
1128
+ - feat(transport): eth definitions
1129
+ - feat(webextension): Ignore port events if it is not port created by current popup
1130
+ - feat(cardano): allow external reward addresses in governance registrations
1131
+ - refactor(connect): removing browser related code from @trezor/connect
1113
1132
 
1114
1133
  # 9.0.7
1115
1134
 
1116
- - feat(connect-ui): connect UI will now display a warning in case it was opened by an application listed in https://github.com/MetaMask/eth-phishing-detect (#7488)
1117
- - fix(connect-ui): set max pin input length to 50 instead of 9 (#7668)
1118
- - fix(connect): ltc spending problem (#7666)
1119
- - change(connect): TrezorConnect.init `webusb` option is now deprecated. It was replaced with `transports` param `('BridgeTransport' | 'WebUsbTransport')[]`. (#7411)
1135
+ - feat(connect-ui): connect UI will now display a warning in case it was opened by an application listed in https://github.com/MetaMask/eth-phishing-detect (#7488)
1136
+ - fix(connect-ui): set max pin input length to 50 instead of 9 (#7668)
1137
+ - fix(connect): ltc spending problem (#7666)
1138
+ - change(connect): TrezorConnect.init `webusb` option is now deprecated. It was replaced with `transports` param `('BridgeTransport' | 'WebUsbTransport')[]`. (#7411)
1120
1139
 
1121
1140
  # 9.0.6
1122
1141
 
1123
- - fix: list tslib as direct dependency
1124
- - fix: various improvement and fixes regarding RBF (https://github.com/trezor/trezor-suite/pull/7378)
1125
- - change: increase handshake timeout in popup to 90 seconds
1126
- - change: TrezorConnect.dispose is now async and resolves only after connected device is released
1142
+ - fix: list tslib as direct dependency
1143
+ - fix: various improvement and fixes regarding RBF (https://github.com/trezor/trezor-suite/pull/7378)
1144
+ - change: increase handshake timeout in popup to 90 seconds
1145
+ - change: TrezorConnect.dispose is now async and resolves only after connected device is released
1127
1146
 
1128
1147
  # 9.0.5
1129
1148
 
1130
- - added: analytics in popup
1131
- - fixed: `signTransaction` with litecoin mimble wimble pegout inputs
1132
- - fixed: `composeTransaction` cases when composing tx with multiple outputs where at least one is above MAX_SAFE_INTEGER
1133
- - updated: @trezor/blockchain-link 2.6.1
1134
- - updated: @trezor/connect-common 0.0.11
1135
- - updated: @trezor/transport 1.1.6
1136
- - updated: @trezor/utils 9.0.4
1137
- - updated: @trezor/utxo-lib 1.0.2
1149
+ - added: analytics in popup
1150
+ - fixed: `signTransaction` with litecoin mimble wimble pegout inputs
1151
+ - fixed: `composeTransaction` cases when composing tx with multiple outputs where at least one is above MAX_SAFE_INTEGER
1152
+ - updated: @trezor/blockchain-link 2.6.1
1153
+ - updated: @trezor/connect-common 0.0.11
1154
+ - updated: @trezor/transport 1.1.6
1155
+ - updated: @trezor/utils 9.0.4
1156
+ - updated: @trezor/utxo-lib 1.0.2
1138
1157
 
1139
1158
  # 9.0.4
1140
1159
 
1141
- - @trezor/blockchain-link 2.1.5
1142
- - added `setBusy` method
1143
- - added `goerli` (TGOR) coin support
1144
- - added `serialize` and `coinjoinRequest` option to `signTransaction` method
1145
- - added `preauthorized` option to `authorizeCoinjoin` method
1146
- - Cardano: added support for [CIP36 Catalyst registration format](https://cips.cardano.org/cips/cip36/) in `cardanoSignTransaction` method
1147
- - `auxiliaryData.catalystRegistrationParameters` is deprecated, use `auxiliaryData.governanceRegistrationParameters` instead
1160
+ - @trezor/blockchain-link 2.1.5
1161
+ - added `setBusy` method
1162
+ - added `goerli` (TGOR) coin support
1163
+ - added `serialize` and `coinjoinRequest` option to `signTransaction` method
1164
+ - added `preauthorized` option to `authorizeCoinjoin` method
1165
+ - Cardano: added support for [CIP36 Catalyst registration format](https://cips.cardano.org/cips/cip36/) in `cardanoSignTransaction` method
1166
+ - `auxiliaryData.catalystRegistrationParameters` is deprecated, use `auxiliaryData.governanceRegistrationParameters` instead
1148
1167
 
1149
1168
  # 9.0.3
1150
1169
 
1151
- - typescript: removed `EosGetPublicKey` type, use `GetPublicKey` type instead
1152
- - fix default bip48 script types. [#6393](https://github.com/trezor/trezor-suite/pull/6393) and [#6407](https://github.com/trezor/trezor-suite/pull/6407)
1153
- - added `unlockPath` method
1154
- - added `SLIP 25` support
1155
- - fixed bitcoin extended descriptor (xpubSegwit) for taproot accounts
1170
+ - typescript: removed `EosGetPublicKey` type, use `GetPublicKey` type instead
1171
+ - fix default bip48 script types. [#6393](https://github.com/trezor/trezor-suite/pull/6393) and [#6407](https://github.com/trezor/trezor-suite/pull/6407)
1172
+ - added `unlockPath` method
1173
+ - added `SLIP 25` support
1174
+ - fixed bitcoin extended descriptor (xpubSegwit) for taproot accounts
1156
1175
 
1157
1176
  # 9.0.2
1158
1177
 
1159
- - improved passphrase dialog in popup window
1160
- - if popup window does not load in a predefined period of time, error screen with troubleshooting tips is shown
1178
+ - improved passphrase dialog in popup window
1179
+ - if popup window does not load in a predefined period of time, error screen with troubleshooting tips is shown
1161
1180
 
1162
1181
  # 9.0.1
1163
1182
 
1164
- - @trezor/blockchain-link 2.1.4
1183
+ - @trezor/blockchain-link 2.1.4
1165
1184
 
1166
1185
  # 9.0.0
1167
1186
 
1168
1187
  ## Breaking changes:
1169
1188
 
1170
- - Changed codebase to typescript.
1171
- - Removed `Lisk` methods from api.
1172
- - Removed `customMethod` api method.
1173
- - Exported constants:
1174
- - `CARDANO.ADDRESS_TYPE` => `PROTO.CardanoAddressType`
1175
- - `CARDANO.CERTIFICATE_TYPE` => `PROTO.CardanoCertificateType`
1176
- - `CARDANO.POOL_RELAY_TYPE` => `PROTO.CardanoPoolRelayType`
1177
- - `CardanoCertificateType`
1178
- - `CardanoNativeScriptType` => `PROTO.CardanoNativeScriptType`
1179
- - `CardanoNativeScriptHashDisplayFormat` => `PROTO.CardanoNativeScriptHashDisplayFormat`
1180
- - `CardanoPoolRelayType` => `PROTO.CardanoPoolRelayType`
1181
- - `CardanoTxSigningMode` => `PROTO.CardanoTxSigningMode`
1182
- - `CardanoTxWitnessType` => `PROTO.CardanoTxWitnessType`
1183
- - removed unused `DEVICE.WAIT_FOR_SELECTION`
1184
- - removed unused `UI.CHANGE_ACCOUNT`
1185
- - Minimum firmware requirements bumped:
1186
- - 2.4.2 CardanoSignTransaction
1189
+ - Changed codebase to typescript.
1190
+ - Removed `Lisk` methods from api.
1191
+ - Removed `customMethod` api method.
1192
+ - Exported constants:
1193
+ - `CARDANO.ADDRESS_TYPE` => `PROTO.CardanoAddressType`
1194
+ - `CARDANO.CERTIFICATE_TYPE` => `PROTO.CardanoCertificateType`
1195
+ - `CARDANO.POOL_RELAY_TYPE` => `PROTO.CardanoPoolRelayType`
1196
+ - `CardanoCertificateType`
1197
+ - `CardanoNativeScriptType` => `PROTO.CardanoNativeScriptType`
1198
+ - `CardanoNativeScriptHashDisplayFormat` => `PROTO.CardanoNativeScriptHashDisplayFormat`
1199
+ - `CardanoPoolRelayType` => `PROTO.CardanoPoolRelayType`
1200
+ - `CardanoTxSigningMode` => `PROTO.CardanoTxSigningMode`
1201
+ - `CardanoTxWitnessType` => `PROTO.CardanoTxWitnessType`
1202
+ - removed unused `DEVICE.WAIT_FOR_SELECTION`
1203
+ - removed unused `UI.CHANGE_ACCOUNT`
1204
+ - Minimum firmware requirements bumped:
1205
+ - 2.4.2 CardanoSignTransaction
1187
1206
 
1188
1207
  ## Added:
1189
1208
 
1190
- - `getOwnershipId` method
1191
- - `getOwnershipProof` method
1192
- - `authorizeCoinjoin` method
1193
- - `getFirmwareHash` method
1194
- - [support for babbage features in cardano](https://github.com/trezor/trezor-suite/commit/efe9c78a2f74a1b7653b3fddf6cca35ba38d3ae9)
1209
+ - `getOwnershipId` method
1210
+ - `getOwnershipProof` method
1211
+ - `authorizeCoinjoin` method
1212
+ - `getFirmwareHash` method
1213
+ - [support for babbage features in cardano](https://github.com/trezor/trezor-suite/commit/efe9c78a2f74a1b7653b3fddf6cca35ba38d3ae9)