We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a98fd7 commit 447dd87Copy full SHA for 447dd87
2 files changed
CHANGELOG.md
@@ -1,4 +1,4 @@
1
-## <small>0.28.1 (2026-02-05)</small>
+## [0.28.1](https://github.com/algolia/shipjs/compare/v0.28.0...v0.28.1) (2026-02-05)
2
3
### Bug fixes
4
packages/shipjs/src/step/prepare/updateChangelog.js
@@ -164,12 +164,13 @@ function runConventionalChangelog({
164
fs.writeFileSync(args.outfile, '');
165
}
166
167
+ const { parserOpts, writerOpts } = args.config || {};
168
const changelogStream = conventionalChangelogCore(
169
args,
170
templateContext,
171
{ ...gitRawCommitsOpts, path: dir },
- undefined,
172
+ parserOpts,
173
+ writerOpts,
174
{ path: dir, cwd: dir }
175
).on('error', reject);
176
0 commit comments