Skip to content

Commit 0a2da65

Browse files
committed
Properly escape newlines in zealot changelog
1 parent 0b584cd commit 0a2da65

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@
88
- added: Add disableSurveyModal option
99
- added: dRPC api key option for EVM chains
1010
- added: Handle KYC error responses from Bity
11+
- added: just at test changelog entry
1112
- changed: Enable Bitpay payments for FIO names and domains
1213
- changed: Disable Home scene swap and FIO cards if configured
1314
- changed: Allow some chains to be disabled in env.json
1415
- changed: Add more metadata to zealot upload
1516
- changed: Token swap error demoted to red error dropdown to a toast
1617
- changed: 1 cent minimum requirement for high fee warning
18+
- changed: Properly escape newlines in Zealot changelog
1719
- fixed: Cutoff UI in `CreateWalletImportScene` when keyboard open
1820
- fixed: Unecessary eye icon in `CreateWalletImportScene` text input field
1921
- fixed: PoweredBy card displaying custom system fonts

scripts/deploy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ function buildCommonPost(buildObj: BuildObj) {
438438
const branch = encodeURIComponent(buildObj.repoBranch)
439439
const gitCommit = encodeURIComponent(buildObj.guiHash)
440440
chdir(buildObj.guiDir)
441-
const changes = rmNewline(cmd(`git diff HEAD^ HEAD CHANGELOG.md | grep '^+[^+]'`))
441+
const changes = cmd(`git diff HEAD^ HEAD CHANGELOG.md | grep '^+[^+]'`)
442442
const changelog = encodeURIComponent(changes)
443443
mylog(`\n\nUploading to Zealot: ${zealotUrl}`)
444444
mylog('***********************************************************************\n')

0 commit comments

Comments
 (0)