@trezor/connect 9.4.1-beta.1 → 9.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -10
- package/README.md +1 -1
- package/lib/data/version.d.ts +1 -1
- package/lib/data/version.js +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
| Package | Stable |
|
|
2
|
-
| :------------------------------: | :----: |
|
|
3
|
-
| npm @trezor/connect | 9.4.
|
|
4
|
-
| npm @trezor/connect-web | 9.4.
|
|
5
|
-
| npm @trezor/connect-webextension | 9.4.
|
|
1
|
+
| Package | Stable | Canary |
|
|
2
|
+
| :------------------------------: | :----: | :----: |
|
|
3
|
+
| npm @trezor/connect | 9.4.1 | - |
|
|
4
|
+
| npm @trezor/connect-web | 9.4.1 | - |
|
|
5
|
+
| npm @trezor/connect-webextension | 9.4.1 | - |
|
|
6
6
|
|
|
7
|
-
| Deployment | Stable |
|
|
8
|
-
| :----------------: | :----: |
|
|
9
|
-
| connect.trezor.io/ | 9.4.
|
|
7
|
+
| Deployment | Stable | Canary |
|
|
8
|
+
| :----------------: | :----: | :----: |
|
|
9
|
+
| connect.trezor.io/ | 9.4.1 | - |
|
|
10
10
|
|
|
11
11
|
Use the persistent link [connect.trezor.io/9](https://connect.trezor.io/9/) to access the latest stable version of Connect Explorer.
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
## 9.4.1
|
|
14
14
|
|
|
15
15
|
Automatic retry for no transport issue: If the transport (bridge) is initially not available, the automatic retry feature allows the user to continue after starting the transport, without having to restart the entire flow.
|
|
16
16
|
|
|
@@ -71,7 +71,7 @@ NodeBridge new version compatibility fix: Resolved an issue where NodeBridge ver
|
|
|
71
71
|
- transport: sessions background without abort signal (4f6e8cf)
|
|
72
72
|
- transport: better abortable methods (583f4aa)
|
|
73
73
|
|
|
74
|
-
###
|
|
74
|
+
### Dependencies update
|
|
75
75
|
|
|
76
76
|
- @sinclair/typebox 0.31.28=>0.33.7 (43ae297)
|
|
77
77
|
- webpack from 5.93.0 to 5.94.0 (358b96d)
|
|
@@ -85,6 +85,19 @@ NodeBridge new version compatibility fix: Resolved an issue where NodeBridge ver
|
|
|
85
85
|
- various patch versions deps (ed3e9bf)
|
|
86
86
|
- TS 5.5 (198c91f)
|
|
87
87
|
|
|
88
|
+
- npm-release: @trezor/blockchain-link 2.3.1
|
|
89
|
+
- npm-release: @trezor/blockchain-link-utils 1.2.1
|
|
90
|
+
- npm-release: @trezor/blockchain-link-types 1.2.1
|
|
91
|
+
- npm-release: @trezor/connect-analytics 1.2.1
|
|
92
|
+
- npm-release: @trezor/analytics 1.2.1
|
|
93
|
+
- npm-release: @trezor/connect-common 0.2.1
|
|
94
|
+
- npm-release: @trezor/transport 1.3.1
|
|
95
|
+
- npm-release: @trezor/protobuf 1.2.1
|
|
96
|
+
- npm-release: @trezor/schema-utils 1.2.1
|
|
97
|
+
- npm-release: @trezor/protocol 1.2.1
|
|
98
|
+
- npm-release: @trezor/utxo-lib 2.2.1
|
|
99
|
+
- npm-release: @trezor/utils 9.2.1
|
|
100
|
+
|
|
88
101
|
# 9.4.0
|
|
89
102
|
|
|
90
103
|
## connect
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @trezor/connect
|
|
2
2
|
|
|
3
|
-
API version 9.4.1
|
|
3
|
+
API version 9.4.1
|
|
4
4
|
|
|
5
5
|
[](https://github.com/trezor/trezor-suite/actions/workflows/test-connect.yml)
|
|
6
6
|
[](https://www.npmjs.org/package/@trezor/connect)
|
package/lib/data/version.d.ts
CHANGED
package/lib/data/version.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CONTENT_SCRIPT_VERSION = exports.DEFAULT_DOMAIN = exports.VERSION = void 0;
|
|
4
|
-
exports.VERSION = '9.4.1
|
|
4
|
+
exports.VERSION = '9.4.1';
|
|
5
5
|
const versionN = exports.VERSION.split('.').map(s => parseInt(s, 10));
|
|
6
6
|
const isBeta = exports.VERSION.includes('beta');
|
|
7
7
|
exports.DEFAULT_DOMAIN = isBeta
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trezor/connect",
|
|
3
|
-
"version": "9.4.1
|
|
3
|
+
"version": "9.4.1",
|
|
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.",
|
|
@@ -73,16 +73,16 @@
|
|
|
73
73
|
"@ethereumjs/common": "^4.3.0",
|
|
74
74
|
"@ethereumjs/tx": "^5.3.0",
|
|
75
75
|
"@fivebinaries/coin-selection": "2.2.1",
|
|
76
|
-
"@trezor/blockchain-link": "2.3.1
|
|
77
|
-
"@trezor/blockchain-link-types": "1.2.
|
|
78
|
-
"@trezor/connect-analytics": "1.2.
|
|
79
|
-
"@trezor/connect-common": "0.2.1
|
|
80
|
-
"@trezor/protobuf": "1.2.1
|
|
81
|
-
"@trezor/protocol": "1.2.1
|
|
82
|
-
"@trezor/schema-utils": "1.2.1
|
|
83
|
-
"@trezor/transport": "1.3.1
|
|
84
|
-
"@trezor/utils": "9.2.1
|
|
85
|
-
"@trezor/utxo-lib": "2.2.1
|
|
76
|
+
"@trezor/blockchain-link": "2.3.1",
|
|
77
|
+
"@trezor/blockchain-link-types": "1.2.1",
|
|
78
|
+
"@trezor/connect-analytics": "1.2.1",
|
|
79
|
+
"@trezor/connect-common": "0.2.1",
|
|
80
|
+
"@trezor/protobuf": "1.2.1",
|
|
81
|
+
"@trezor/protocol": "1.2.1",
|
|
82
|
+
"@trezor/schema-utils": "1.2.1",
|
|
83
|
+
"@trezor/transport": "1.3.1",
|
|
84
|
+
"@trezor/utils": "9.2.1",
|
|
85
|
+
"@trezor/utxo-lib": "2.2.1",
|
|
86
86
|
"blakejs": "^1.2.1",
|
|
87
87
|
"bs58": "^6.0.0",
|
|
88
88
|
"bs58check": "^4.0.0",
|