Skip to content

Releases: BobAnkh/auto-generate-changelog

v1.2.5

30 Jun 09:19
b8e2084
Compare
Choose a tag to compare

Speed up the runtime by pre-installing dependencies in the image build process.

v1.2.4

01 Feb 16:37
Compare
Choose a tag to compare

Fix the bug of multiple git deps installed when building the image

v1.2.3

01 Dec 03:53
Compare
Choose a tag to compare

Change the check behavior to cooperate with upstream lib(pygithub)

v1.2.2

27 Jul 02:13
Compare
Choose a tag to compare

Fix the bug when analyzing the existing changelog if the result of regex search is None.

v1.2.1

13 Jul 13:00
e80ad00
Compare
Choose a tag to compare

Fix the bug of regeneration release list.

v1.2.0

13 Jul 12:53
b26cdb4
Compare
Choose a tag to compare
  • 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

30 Dec 02:47
2754c74
Compare
Choose a tag to compare

Fix bug of opening pull request when file/branch not exist.

See #78 for more details

v1.1.0

16 Nov 17:47
b7564aa
Compare
Choose a tag to compare

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

25 Sep 02:41
cfdc2d3
Compare
Choose a tag to compare

New Feature:

  • Split param PATH into PATH and BRANCH: you can specify which file path in PATH param and which branch to update changes in BRANCH param.
  • Add new param PULL_REQUEST, which must be used together with param BRANCH. Default set to '' means not to open a pull request. You can set a target branch name in PULL_REQUEST that is different with BRANCH so that to do the following things:
    • Commit changes(if have) to file specified in PATH in BRANCH(if not set means default branch)
    • If PULL_REQUEST set to a different branch with BRANCH then a new pull request will be opened.

v1.0.6

18 Aug 04:58
9e5db53
Compare
Choose a tag to compare

Feature: Add new input param COMMITTER for user to specify the committer to update file. It should be in format like author <author@example>