@trezor/connect 9.0.9 → 9.0.10

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # 9.0.10
2
+
3
+ - fix(connect-popup): fix connect-popup in firefox
4
+ - feat(connect-popup): tiny visual updates, added loading messages based on communication with iframe
5
+ - fix(connect-web): prevent unexpected import of transport runtime code in connect/web
6
+
1
7
  # 9.0.9
2
8
 
3
9
  - fix(connect): prevent .asArray of undefined runtime error
@@ -5,12 +11,12 @@
5
11
 
6
12
  # 9.0.8
7
13
 
8
- - feat: support multiple intermediary FWs for model 1 and devkit binaries
14
+ - feat: support multiple intermediary FWs for T1 and devkit binaries
9
15
  - `FirmwareUpdate` now accepts `intermediaryVersion` param instead of `intermediary`
10
16
  - `getInfo` returns `intermediaryVersion` needed for T1 and removed `latest` param. 'release' always return latest version for T1 so it means abandoning the concept of incremental updates for T1.
11
17
  - feat: signTransaction now returns `signedTransaction` which can be used for visualization purposes before notification about pending transaction from blockchain is received.
12
18
  - feat(blockchain): `blockchainGetCurrentFiatRates` and `blockchainGetFiatRatesForTimestamps` now accept additional `token` parameter
13
- - feat: support coinjoin for model 1
19
+ - feat: support coinjoin for T1
14
20
  - feat(transport): eth definitions
15
21
  - feat(webextension): Ignore port events if it is not port created by current popup
16
22
  - feat(cardano): allow external reward addresses in governance registrations
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @trezor/connect
2
2
 
3
- API version 9.0.9
3
+ API version 9.0.10
4
4
 
5
5
  [![Build Status](https://github.com/trezor/trezor-suite/actions/workflows/connect-test.yml/badge.svg)](https://github.com/trezor/trezor-suite/actions/workflows/connect-test.yml)
6
6
  [![NPM](https://img.shields.io/npm/v/@trezor/connect.svg)](https://www.npmjs.org/package/@trezor/connect)
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.config = void 0;
4
- const transport_1 = require("@trezor/transport");
4
+ const constants_1 = require("@trezor/transport/lib/constants");
5
5
  exports.config = {
6
- webusb: transport_1.TREZOR_DESCS,
6
+ webusb: constants_1.TREZOR_DESCS,
7
7
  whitelist: [
8
8
  { origin: 'chrome-extension://imloifkgjagghnncjkhggdhalmcnfklk', priority: 1 },
9
9
  { origin: 'chrome-extension://niebkpllfhmpfbffbfifagfgoamhpflf', priority: 1 },
@@ -1,3 +1,3 @@
1
- export declare const VERSION = "9.0.9";
1
+ export declare const VERSION = "9.0.10";
2
2
  export declare const DEFAULT_DOMAIN: string;
3
3
  //# sourceMappingURL=version.d.ts.map
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.DEFAULT_DOMAIN = exports.VERSION = void 0;
4
- exports.VERSION = '9.0.9';
4
+ exports.VERSION = '9.0.10';
5
5
  const versionN = exports.VERSION.split('.').map(s => parseInt(s, 10));
6
6
  exports.DEFAULT_DOMAIN = `https://connect.trezor.io/${versionN[0]}/`;
7
7
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trezor/connect",
3
- "version": "9.0.9",
3
+ "version": "9.0.10",
4
4
  "author": "Trezor <info@trezor.io>",
5
5
  "homepage": "https://github.com/trezor/trezor-suite/tree/develop/packages/connect",
6
6
  "description": "High-level javascript interface for Trezor hardware wallet.",
@@ -49,12 +49,12 @@
49
49
  "prepublish": "yarn tsx ../../scripts/prepublish.js"
50
50
  },
51
51
  "dependencies": {
52
- "@trezor/blockchain-link": "2.1.11",
53
- "@trezor/connect-analytics": "1.0.0",
54
- "@trezor/connect-common": "0.0.14",
55
- "@trezor/transport": "1.1.10",
56
- "@trezor/utils": "9.0.7",
57
- "@trezor/utxo-lib": "1.0.5",
52
+ "@trezor/blockchain-link": "2.1.12",
53
+ "@trezor/connect-analytics": "1.0.1",
54
+ "@trezor/connect-common": "0.0.15",
55
+ "@trezor/transport": "1.1.11",
56
+ "@trezor/utils": "9.0.8",
57
+ "@trezor/utxo-lib": "1.0.6",
58
58
  "bignumber.js": "^9.1.1",
59
59
  "blakejs": "^1.2.1",
60
60
  "cross-fetch": "^3.1.5",
@@ -63,7 +63,7 @@
63
63
  "tslib": "2.5.0"
64
64
  },
65
65
  "devDependencies": {
66
- "@trezor/trezor-user-env-link": "1.0.0",
66
+ "@trezor/trezor-user-env-link": "1.0.1",
67
67
  "@types/karma": "^6.3.3",
68
68
  "@types/parse-uri": "^1.0.0",
69
69
  "@types/randombytes": "^2.0.0",