@trezor/connect 9.5.4 → 9.5.5-beta.2

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