There was an issue with the "unreleased" link tag, which had been converted to lowercase by Prettier.
7.3 KiB
7.3 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Unreleased
6.1.0 - 2020-12-22
Added:
tokeninput: you can now use this instead of setting theGITHUB_TOKENenv variable, which has been deprecated. This input is optional, its default value is the defaultsecrets.GITHUB_TOKEN. You only need to use this if you want the action to run with a PAT. (issue #110)
Deprecated:
GITHUB_TOKEN: the use of this env variable is now deprecated in favor of thetokeninput, you'll start receiving warnings if you keep using it. (issue #110)
6.0.0 - 2020-12-22
Added:
- (BREAKING?) Multiple git commands: support JSON/YAML arrays for the
addandremoveparameters (you still need pass a string as input, but that can be parsed to an array by the action). Using them will run multiple commands in succession. I don't think this will be really breaking anything, but I've used a major version change just to be sure. There's more info about this stuff on the README. (issue #95)
5.3.0 - 2020-12-12
Added:
- Outputs: the action now has 3 outputs (
committed,pushed, andtagged) that will be set to eithertrueorfalseto tell you what the action has done. The outputs are also shown in the action logs.
5.2.0 - 2020-11-11
Added:
- New
pushoption: this lets you tell the action whether to push commit and tags to the repo. The default value istrue, so that the default behavior is not changed. (issue #86)
5.1.2 - 2020-11-10
Fixed:
- Fixed an issue with the build (issue #88)
5.1.1 - 2020-11-07
Fixed:
- Fixed typo in parameter name:
pull_strategywas written aspull_stategy(PR #83)
5.1.0 - 2020-10-07
Added:
- The default commit message now displays the name of the workflow too (issue #64)
5.0.0 - 2020-09-27
Changed:
- [BREAKING] Action parameters: multiple action parameters have been changed, refer to the docs for better info
- The code is now entirely in TypeScript (PR #57)
Fixed:
- Improved input checks
- Logs are now displayed on Windows too
- Remove unnecessary steps
- Remove unused dependencies
4.4.0 - 2020-07-31
Added:
- Pull requests: the action can now work in runs triggered by pull request events (issue #48)
4.3.0 - 2020-07-29
Addded:
signoffparameter: lets you use the--signoffargument for thegit commitcommand (PR #46)
4.2.1 - 2020-07-10
Fixed:
- OS-support: the action now properly works on Windows instances (issue #33)
4.2.0 - 2020-05-17
Added:
- Tagging: you can now create and update lightweight tags (PR #30)
4.1.0 - 2020-05-01
Added:
refparameter: lets you choose the branch to run the action on, the default is the one that triggered the workflow (issue #29)
4.0.3 - 2020-05-01
Fixed:
- Logs:
git diffwon't display logs anymore, to avoid buffer problems (issue #27) - Logs: additional info will be logged along with the command outputs
- Logs: added groups to improve readability
4.0.2 - 2020-04-19
Fixed:
- Error handling: failures are now easier to read (issue #25)
4.0.1 - 2020-03-20
Fixed:
- Scheduled events: the action can be used in action runs triggered by a scheduled events
- Warnings: there won't be warnings when both
author_nameandauthor_emailare set
4.0.0 - 2020-03-03
Removed:
- [BREAKING]
pathparameter: see 'Changed' section for more info - [BREAKING]
patternparameter: see 'Changed' section for more info
Changed:
- The action now uses
git addandgit rmcommands, you can choose their arguemnts directly by using theaddandremoveparameters - [BREAKING] Error handling: the action won't stop if one of your git commands fails (e.g. if one of your pathspecs doesn't match any file)
3.1.0 - 2020-02-21
Added:
removeparameter: lets you delete files directly from the action
3.0.0 - 2020-01-24
Added:
- The action can now run in multiple subsequent jobs in the same workflow
Removed:
- [BREAKING]
actions/checkout@v1support is being dropped in favor ofactions/checkout@v2
2.3.2 - 2019-12-29
Added:
cwdparameter: lets you set the Current Working Directory
2.3.1 - 2019-12-20
Added:
- Short tags: from now on, there will be short major tags available (
v2,v3, ...)
2.3.0 - 2019-12-14
Changed:
- TypeScript rewrite: the action will run faster because, unlike with Docker, no build process is needed
Added:
- OS support: the action can now run in non-Linux environments too
2.2.0 - 2019-12-14
Added:
- The action can automatically fetch the commit author to use
- You can manually provide the author using the
author_nameandauthor_emailparameters
2.1.1 - 2019-12-07
Fixed:
- The action can now be used multiple times in the same workflow
2.1.0 - 2019-09-19
Added:
forceparameter: uses--forcewhen runninggit add
2.0.0 - 2019-09-18
Changed:
- [BREAKING] The action now uses a
findcommand
1.0.0 - 2019-09-17
First release