-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(git-changelog): missing trim for fields (#212)
* fix(git-changelog): missing trim for fields * fix: tests --------- Signed-off-by: Neko Ayaka <[email protected]> Co-authored-by: Northword <[email protected]>
- Loading branch information
1 parent
81c02f2
commit d557690
Showing
4 changed files
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,7 +107,7 @@ describe('parseCommits', () => { | |
date: 'Mon Mar 25 20:05:53 2024 +0800', | ||
date_timestamp: 1711368353000, | ||
message: 'release: v1.24.3', | ||
body: 'Signed-off-by: First Last <[email protected]>\n', | ||
body: 'Signed-off-by: First Last <[email protected]>', | ||
author_name: 'First Last', | ||
author_email: '[email protected]', | ||
author_avatar: 'b4c9a289323b21a01c3e940f150eb9b8c542587f1abfd8f0e1cc1ffc5e475514', | ||
|
@@ -133,7 +133,7 @@ describe('parseCommits', () => { | |
date: 'Wed Apr 24 14:24:44 2024 +0800', | ||
date_timestamp: 1713939884000, | ||
message: 'docs: fix english integrations list', | ||
body: 'Signed-off-by: First Last <[email protected]>\n', | ||
body: 'Signed-off-by: First Last <[email protected]>', | ||
author_name: 'First Last', | ||
author_email: '[email protected]', | ||
author_avatar: 'b4c9a289323b21a01c3e940f150eb9b8c542587f1abfd8f0e1cc1ffc5e475514', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters