Releases: BobAnkh/auto-generate-changelog
v1.2.5
Speed up the runtime by pre-installing dependencies in the image build process.
v1.2.4
Fix the bug of multiple git deps installed when building the image
v1.2.3
Change the check behavior to cooperate with upstream lib(pygithub)
v1.2.2
Fix the bug when analyzing the existing changelog if the result of regex search is None.
v1.2.1
Fix the bug of regeneration release list.
v1.2.0
- Support incremental changelog generation
- Users can replace the default empty release description
- Users can control whether unreleased commits are included in changelog
v1.1.1
Fix bug of opening pull request when file/branch not exist.
See #78 for more details
v1.1.0
Fix the bug that unscoped commits will now be picked up by default and listed under the scope general
, which is configured by the new param DEFAULT_SCOPE
. And if you don't want any unscoped commits to show up in your changelog, you can set param SUPPRESS_UNSCOPED
to true (default to false).
v1.0.7
New Feature:
- Split param
PATH
intoPATH
andBRANCH
: you can specify which file path inPATH
param and which branch to update changes inBRANCH
param. - Add new param
PULL_REQUEST
, which must be used together with paramBRANCH
. Default set to''
means not to open a pull request. You can set a target branch name inPULL_REQUEST
that is different withBRANCH
so that to do the following things:- Commit changes(if have) to file specified in
PATH
inBRANCH
(if not set means default branch) - If
PULL_REQUEST
set to a different branch withBRANCH
then a new pull request will be opened.
- Commit changes(if have) to file specified in
v1.0.6
Feature: Add new input param COMMITTER
for user to specify the committer to update file. It should be in format like author <author@example>