Skip to content

Commit 68adb35

Browse files
authored
Merge pull request #988 from crypto-com/dev
Internal Release v0.6.9
2 parents 125a7c7 + ae5d0c4 commit 68adb35

File tree

10 files changed

+343
-209
lines changed

10 files changed

+343
-209
lines changed

.github/workflows/audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Install Node.js, NPM and Yarn
1515
uses: actions/setup-node@v1
1616
with:
17-
node-version: 12
17+
node-version: 14
1818

1919
- name: Refresh
2020
run: |

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install Node.js, NPM and Yarn
2626
uses: actions/setup-node@v1
2727
with:
28-
node-version: 12
28+
node-version: 14
2929

3030
- name: Install deps with big timeout
3131
run: |

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- uses: actions/setup-node@v1
1212
with:
13-
node-version: 12
13+
node-version: 14
1414

1515
- uses: actions/checkout@v2
1616

.github/workflows/integration_test_zemu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Install Node.js, NPM and Yarn
1515
uses: actions/setup-node@v1
1616
with:
17-
node-version: 12
17+
node-version: 14
1818

1919
- name: Setup dependencies
2020
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install Node.js, NPM and Yarn
2626
uses: actions/setup-node@v1
2727
with:
28-
node-version: 12
28+
node-version: 14
2929

3030
- name: Install deps with big timeout
3131
run: |

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
55
*Unreleased*
66

77
*Released*
8+
## [v0.6.9] - 2022-02-16
9+
### Bug fixes
10+
- Ledger connectivity on Windows
811
## [v0.6.8] - 2022-02-11
912
### Additions
1013
- Wrapped ETH NFT support on Crypto.org chain

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chain-desktop-wallet",
3-
"version": "0.6.8",
3+
"version": "0.6.9",
44
"description": "Crypto.com Chain Desktop Wallet App",
55
"repository": "github:crypto-com/chain-desktop-wallet",
66
"author": "Crypto.org <[email protected]>",
@@ -86,7 +86,7 @@
8686
"postinstall": "electron-builder install-app-deps",
8787
"electron:dev": "export NODE_ENV=development && yarn electron:devcore",
8888
"electron:devcore": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && tsc -p electron -w\" \"wait-on http://localhost:3000 && tsc -p electron && electron .\"",
89-
"electron:windev": "concurrently \"SET BROWSER=none && yarn start\" \"wait-on http://localhost:3000 && tsc -p electron -w\" \"wait-on http://localhost:3000 && tsc -p electron && electron .\"",
89+
"electron:windev": "concurrently \"SET NODE_ENV=none && SET BROWSER=none && yarn start\" \"wait-on http://localhost:3000 && tsc -p electron -w\" \"wait-on http://localhost:3000 && tsc -p electron && electron .\"",
9090
"electron:pre-build": "yarn build && yarn copy-macos-manifest && tsc -p electron",
9191
"copy-macos-manifest": "copyfiles entitlements* ./build/",
9292
"clean-builds": "rimraf build && rimraf dist",
@@ -215,7 +215,7 @@
215215
"dotenv": "8.2.0",
216216
"dotenv-expand": "5.1.0",
217217
"electron": "11.5.0",
218-
"electron-builder": "22.10.5",
218+
"electron-builder": "22.14.13",
219219
"electron-builder-notarize": "1.2.0",
220220
"eslint": "7.23.0",
221221
"eslint-config-react-app": "6.0.0",

src/storage/SecretStoreService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class SecretStoreService {
1212
}
1313

1414
public async savePassword(credential: EncryptedCredential) {
15-
return this.db.credentialStore.update<EncryptedCredential>(
15+
await this.db.credentialStore.update<EncryptedCredential>(
1616
{ _id: this.CREDENTIAL_STORED_ID },
1717
{ $set: credential },
1818
{ upsert: true },

tests/yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2971,9 +2971,9 @@ flatted@^2.0.0:
29712971
integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==
29722972

29732973
follow-redirects@^1.10.0:
2974-
version "1.14.7"
2975-
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.7.tgz#2004c02eb9436eee9a21446a6477debf17e81685"
2976-
integrity sha512-+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ==
2974+
version "1.14.8"
2975+
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.8.tgz#016996fb9a11a100566398b1c6839337d7bfa8fc"
2976+
integrity sha512-1x0S9UVJHsQprFcEC/qnNzBLcIxsjAV905f/UkQxbclCsoTWlacCNOpQa/anodLl2uaEKFhfWOvM2Qg77+15zA==
29772977

29782978
for-each@^0.3.3:
29792979
version "0.3.3"

0 commit comments

Comments
 (0)