Skip to content

Commit 3040706

Browse files
authored
Merge pull request #1370 from crypto-com/dev
Internal Release v1.4.2
2 parents 0026676 + 38111df commit 3040706

File tree

7 files changed

+75
-54
lines changed

7 files changed

+75
-54
lines changed

CHANGELOG.md

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

77
*Released*
8+
## [v1.4.2] - 2023-07-19
9+
### Additions
10+
- Security enhancement & package dependencies bump
11+
### Bug Fixes
12+
- Potential app crash on Assets Page
813
## [v1.4.1] - 2023-03-03
914
### Additions
1015
- Revise on validator uptime calculation & list layout

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# Crypto.com DeFi Desktop Wallet
22

33
## Warning
4-
Crypto.com DeFi Desktop Wallet is currently in the beta development phase and subjects to changes. Before proceeding, please be aware of the following:
4+
Crypto.com DeFi Desktop Wallet may subject to changes. Before proceeding, please be aware of the following:
55

6-
- Do not transfer any ERC20 tokens to addresses generated by this sample code as it can cause loss of funds.
76
- Crypto.com is not liable for any potential damage, loss of data/files arising from the use of the wallet.
87

98
## Latest releases

entitlements.mac.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<key>com.apple.security.cs.allow-jit</key>
66
<true/>
77
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
8-
<true/>
8+
<false/>
99
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
1010
<false/>
1111
<key>com.apple.security.network.client</key>

package.json

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chain-desktop-wallet",
3-
"version": "1.4.1",
3+
"version": "1.4.2",
44
"description": "Crypto.com DeFi Desktop Wallet App",
55
"repository": "github:crypto-com/chain-desktop-wallet",
66
"author": "Crypto.com <contact@crypto.com>",
@@ -156,7 +156,7 @@
156156
"css-loader": "4.3.0",
157157
"dotenv": "8.2.0",
158158
"dotenv-expand": "5.1.0",
159-
"electron": "19.1.8",
159+
"electron": "19.1.9",
160160
"electron-builder": "23.2.0",
161161
"electron-builder-notarize": "1.5.0",
162162
"eslint": "7.23.0",
@@ -208,13 +208,13 @@
208208
"resolve-url-loader": "3.1.2",
209209
"rimraf": "3.0.2",
210210
"sass-loader": "8.0.2",
211-
"semver": "7.3.2",
211+
"semver": "7.5.3",
212212
"style-loader": "1.3.0",
213213
"stylelint": "^14.9.1",
214214
"stylelint-config-recommended-less": "^1.0.4",
215215
"stylelint-config-standard": "^26.0.0",
216216
"terser-webpack-plugin": "4.2.3",
217-
"vite": "2.9.7",
217+
"vite": "2.9.16",
218218
"wait-on": "5.2.1",
219219
"webpack": "4.44.2",
220220
"webpack-dev-server": "3.11.2",
@@ -379,7 +379,7 @@
379379
"eventsource": "2.0.2",
380380
"nth-check": "2.0.1",
381381
"semver-regex": "3.1.3",
382-
"protobufjs": "6.11.3",
382+
"protobufjs": "7.2.4",
383383
"shell-quote": "1.7.3",
384384
"minimatch": "3.0.5",
385385
"loader-utils": "2.0.4",
@@ -388,6 +388,10 @@
388388
"json5": "2.2.2",
389389
"flat": "5.0.1",
390390
"jszip": "3.8.0",
391-
"http-cache-semantics": "4.1.1"
391+
"http-cache-semantics": "4.1.1",
392+
"@sideway/formula": "3.0.1",
393+
"cookiejar": "2.1.4",
394+
"decode-uri-component": "0.2.2",
395+
"word-wrap": "1.2.4"
392396
}
393397
}

src/pages/assets/assets.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ const AssetsPage = () => {
623623
dataIndex: 'msgTypeName',
624624
key: 'msgTypeName',
625625
render: (text) => {
626-
return <TagMsgType msgTypeName={text} />;
626+
return text ? <TagMsgType msgTypeName={text} /> : <></>;
627627
},
628628
},
629629
]

tests/package.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@
4343
"eslint-plugin-prettier": "^3.1.3",
4444
"jest": "24",
4545
"jest-serial-runner": "^1.1.0 ",
46-
"secp256k1": "^4.0.1"
46+
"secp256k1": "^4.0.1"
47+
},
48+
"resolutions": {
49+
"json5": "1.0.2",
50+
"qs": "6.7.3",
51+
"decode-uri-component": "0.2.2",
52+
"minimatch": "3.1.2",
53+
"word-wrap": "1.2.4"
4754
}
4855
}

yarn.lock

Lines changed: 49 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -3701,10 +3701,10 @@
37013701
dependencies:
37023702
"@hapi/hoek" "^9.0.0"
37033703

3704-
"@sideway/formula@^3.0.0":
3705-
version "3.0.0"
3706-
resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.0.tgz"
3707-
integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==
3704+
"@sideway/formula@3.0.1", "@sideway/formula@^3.0.0":
3705+
version "3.0.1"
3706+
resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.1.tgz#80fcbcbaf7ce031e0ef2dd29b1bfc7c3f583611f"
3707+
integrity sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==
37083708

37093709
"@sideway/pinpoint@^2.0.0":
37103710
version "2.0.0"
@@ -4336,7 +4336,7 @@
43364336
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.172.tgz#aad774c28e7bfd7a67de25408e03ee5a8c3d028a"
43374337
integrity sha512-/BHF5HAx3em7/KkzVKm3LrsD6HZAXuXO1AJZQ3cRRBZj4oHZDviWPYu0aEplAqDFNHZPW6d3G7KN+ONcCCC7pw==
43384338

4339-
"@types/long@4.0.1", "@types/long@^4.0.1":
4339+
"@types/long@4.0.1":
43404340
version "4.0.1"
43414341
resolved "https://registry.yarnpkg.com/@types/long/-/long-4.0.1.tgz"
43424342
integrity sha512-5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w==
@@ -7334,10 +7334,10 @@ cookie@0.4.2:
73347334
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432"
73357335
integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==
73367336

7337-
cookiejar@^2.1.1:
7338-
version "2.1.2"
7339-
resolved "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz"
7340-
integrity sha512-Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA==
7337+
cookiejar@2.1.4, cookiejar@^2.1.1:
7338+
version "2.1.4"
7339+
resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.1.4.tgz#ee669c1fea2cf42dc31585469d193fef0d65771b"
7340+
integrity sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==
73417341

73427342
copy-concurrently@^1.0.0:
73437343
version "1.0.5"
@@ -8160,10 +8160,10 @@ decimal.js@^10.3.1:
81608160
resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783"
81618161
integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==
81628162

8163-
decode-uri-component@^0.2.0:
8164-
version "0.2.0"
8165-
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz"
8166-
integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
8163+
decode-uri-component@0.2.2, decode-uri-component@^0.2.0:
8164+
version "0.2.2"
8165+
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9"
8166+
integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==
81678167

81688168
decompress-response@^3.2.0, decompress-response@^3.3.0:
81698169
version "3.3.0"
@@ -8741,10 +8741,10 @@ electron@*:
87418741
"@types/node" "^14.6.2"
87428742
extract-zip "^1.0.3"
87438743

8744-
electron@19.1.8:
8745-
version "19.1.8"
8746-
resolved "https://registry.yarnpkg.com/electron/-/electron-19.1.8.tgz#3ce19c270ca86d05bbf0df5ceeaea2d23edc7083"
8747-
integrity sha512-UfPQdFjgKI0xCm1V5sV3iAVOs0kCwAE91xWzV5tI7ij14yOkxTdXp9BqTzFaSbQYLYxn6q1BUUe1nlzjJjzAnw==
8744+
electron@19.1.9:
8745+
version "19.1.9"
8746+
resolved "https://registry.yarnpkg.com/electron/-/electron-19.1.9.tgz#01995eea4014f7cdb2f616f5f3492d4ed6f5e4f0"
8747+
integrity sha512-XT5LkTzIHB+ZtD3dTmNnKjVBWrDWReCKt9G1uAFLz6uJMEVcIUiYO+fph5pLXETiBw/QZBx8egduMEfIccLx+g==
87488748
dependencies:
87498749
"@electron/get" "^1.14.1"
87508750
"@types/node" "^16.11.26"
@@ -13126,6 +13126,11 @@ long@4.0.0, long@^4.0.0:
1312613126
resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz"
1312713127
integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==
1312813128

13129+
long@^5.0.0:
13130+
version "5.2.3"
13131+
resolved "https://registry.yarnpkg.com/long/-/long-5.2.3.tgz#a3ba97f3877cf1d778eccbcb048525ebb77499e1"
13132+
integrity sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==
13133+
1312913134
loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.3.1, loose-envify@^1.4.0:
1313013135
version "1.4.0"
1313113136
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz"
@@ -15736,10 +15741,10 @@ proto-list@~1.2.1:
1573615741
resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz"
1573715742
integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=
1573815743

15739-
protobufjs@6.11.3, protobufjs@^6.8.8, protobufjs@~6.10.2, protobufjs@~6.11.2, protobufjs@~6.11.3:
15740-
version "6.11.3"
15741-
resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-6.11.3.tgz#637a527205a35caa4f3e2a9a4a13ddffe0e7af74"
15742-
integrity sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==
15744+
protobufjs@6.11.3, protobufjs@7.2.4, protobufjs@^6.8.8, protobufjs@~6.10.2, protobufjs@~6.11.2, protobufjs@~6.11.3:
15745+
version "7.2.4"
15746+
resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-7.2.4.tgz#3fc1ec0cdc89dd91aef9ba6037ba07408485c3ae"
15747+
integrity sha512-AT+RJgD2sH8phPmCf7OUZR8xGdcJRga4+1cOaXJ64hvcSkVhNcRHOwIxUatPH15+nj59WAGTDv3LSGZPEQbJaQ==
1574315748
dependencies:
1574415749
"@protobufjs/aspromise" "^1.1.2"
1574515750
"@protobufjs/base64" "^1.1.2"
@@ -15751,9 +15756,8 @@ protobufjs@6.11.3, protobufjs@^6.8.8, protobufjs@~6.10.2, protobufjs@~6.11.2, pr
1575115756
"@protobufjs/path" "^1.1.2"
1575215757
"@protobufjs/pool" "^1.1.0"
1575315758
"@protobufjs/utf8" "^1.1.0"
15754-
"@types/long" "^4.0.1"
1575515759
"@types/node" ">=13.7.0"
15756-
long "^4.0.0"
15760+
long "^5.0.0"
1575715761

1575815762
proxy-addr@~2.0.7:
1575915763
version "2.0.7"
@@ -17168,6 +17172,13 @@ rollup-pluginutils@^2.8.1, rollup-pluginutils@^2.8.2:
1716817172
dependencies:
1716917173
estree-walker "^0.6.1"
1717017174

17175+
"rollup@>=2.59.0 <2.78.0":
17176+
version "2.77.3"
17177+
resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.77.3.tgz#8f00418d3a2740036e15deb653bed1a90ee0cc12"
17178+
integrity sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==
17179+
optionalDependencies:
17180+
fsevents "~2.3.2"
17181+
1717117182
rollup@^1.31.1:
1717217183
version "1.32.1"
1717317184
resolved "https://registry.yarnpkg.com/rollup/-/rollup-1.32.1.tgz"
@@ -17177,13 +17188,6 @@ rollup@^1.31.1:
1717717188
"@types/node" "*"
1717817189
acorn "^7.1.0"
1717917190

17180-
rollup@^2.59.0:
17181-
version "2.68.0"
17182-
resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.68.0.tgz#6ccabfd649447f8f21d62bf41662e5caece3bd66"
17183-
integrity sha512-XrMKOYK7oQcTio4wyTz466mucnd8LzkiZLozZ4Rz0zQD+HeX4nUK4B8GrTX/2EvN2/vBF/i2WnaXboPxo0JylA==
17184-
optionalDependencies:
17185-
fsevents "~2.3.2"
17186-
1718717191
run-parallel@^1.1.9:
1718817192
version "1.2.0"
1718917193
resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz"
@@ -17369,10 +17373,12 @@ semver@7.0.0:
1736917373
resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz"
1737017374
integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
1737117375

17372-
semver@7.3.2:
17373-
version "7.3.2"
17374-
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz"
17375-
integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==
17376+
semver@7.5.3:
17377+
version "7.5.3"
17378+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.3.tgz#161ce8c2c6b4b3bdca6caadc9fa3317a4c4fe88e"
17379+
integrity sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==
17380+
dependencies:
17381+
lru-cache "^6.0.0"
1737617382

1737717383
semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0:
1737817384
version "6.3.0"
@@ -19434,15 +19440,15 @@ verror@1.10.0, verror@^1.10.0:
1943419440
core-util-is "1.0.2"
1943519441
extsprintf "^1.2.0"
1943619442

19437-
vite@2.9.7:
19438-
version "2.9.7"
19439-
resolved "https://registry.yarnpkg.com/vite/-/vite-2.9.7.tgz#210c328e08ed206ab0953eb1ca00860042cd0a77"
19440-
integrity sha512-5hH7aNQe8rJiTTqCtPNX/6mIKlGw+1wg8UXwAxDIIN8XaSR+Zx3GT2zSu7QKa1vIaBqfUODGh3vpwY8r0AW/jw==
19443+
vite@2.9.16:
19444+
version "2.9.16"
19445+
resolved "https://registry.yarnpkg.com/vite/-/vite-2.9.16.tgz#daf7ba50f5cc37a7bf51b118ba06bc36e97898e9"
19446+
integrity sha512-X+6q8KPyeuBvTQV8AVSnKDvXoBMnTx8zxh54sOwmmuOdxkjMmEJXH2UEchA+vTMps1xw9vL64uwJOWryULg7nA==
1944119447
dependencies:
1944219448
esbuild "^0.14.27"
1944319449
postcss "^8.4.13"
1944419450
resolve "^1.22.0"
19445-
rollup "^2.59.0"
19451+
rollup ">=2.59.0 <2.78.0"
1944619452
optionalDependencies:
1944719453
fsevents "~2.3.2"
1944819454

@@ -20221,10 +20227,10 @@ wif@^2.0.6:
2022120227
dependencies:
2022220228
bs58check "<3.0.0"
2022320229

20224-
word-wrap@^1.2.3, word-wrap@~1.2.3:
20225-
version "1.2.3"
20226-
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz"
20227-
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
20230+
word-wrap@1.2.4, word-wrap@^1.2.3, word-wrap@~1.2.3:
20231+
version "1.2.4"
20232+
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.4.tgz#cb4b50ec9aca570abd1f52f33cd45b6c61739a9f"
20233+
integrity sha512-2V81OA4ugVo5pRo46hAoD2ivUJx8jXmWXfUkY4KFNw0hEptvN0QfH3K4nHiwzGeKl5rFKedV48QVoqYavy4YpA==
2022820234

2022920235
wordwrapjs@^4.0.0:
2023020236
version "4.0.1"

0 commit comments

Comments
 (0)