You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+65-5
Original file line number
Diff line number
Diff line change
@@ -1,130 +1,189 @@
1
1
# Changelog
2
+
2
3
All notable changes to this project will be documented in this file.
3
4
4
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
7
7
8
## [Unreleased]
8
9
10
+
## [5.3.0] - 2020-12-12
11
+
12
+
### Added:
13
+
14
+
- Outputs: the action now has 3 outputs (`committed`, `pushed`, and `tagged`) that will be set to either `true` or `false` to tell you what the action has done. The outputs are also shown in the action logs.
15
+
9
16
## [5.2.0] - 2020-11-11
17
+
10
18
### Added:
11
-
- New `push` option: this lets you tell the action whether to push commit and tags to the repo. The default value is `true`, so that the default behavior is not changed. (issue #86)
19
+
20
+
- New `push` option: this lets you tell the action whether to push commit and tags to the repo. The default value is `true`, so that the default behavior is not changed. (issue #86)
12
21
13
22
## [5.1.2] - 2020-11-10
23
+
14
24
### Fixed:
25
+
15
26
- Fixed an issue with the build (issue #88)
16
27
17
28
## [5.1.1] - 2020-11-07
29
+
18
30
### Fixed:
31
+
19
32
- Fixed typo in parameter name: `pull_strategy` was written as `pull_stategy` (PR #83)
20
33
21
34
## [5.1.0] - 2020-10-07
35
+
22
36
### Added:
23
-
- The default commit message now displays the name of the workflow too (issue #64)
37
+
38
+
- The default commit message now displays the name of the workflow too (issue #64)
24
39
25
40
## [5.0.0] - 2020-09-27
41
+
26
42
### Changed:
43
+
27
44
-**[BREAKING]** Action parameters: multiple action parameters have been changed, refer to the docs for better info
28
45
- The code is now entirely in TypeScript (PR #57)
29
46
30
47
### Fixed:
48
+
31
49
- Improved input checks
32
50
- Logs are now displayed on Windows too
33
51
- Remove unnecessary steps
34
52
- Remove unused dependencies
35
53
36
54
## [4.4.0] - 2020-07-31
55
+
37
56
### Added:
57
+
38
58
- Pull requests: the action can now work in runs triggered by pull request events (issue #48)
39
59
40
60
## [4.3.0] - 2020-07-29
61
+
41
62
### Addded:
63
+
42
64
-`signoff` parameter: lets you use the `--signoff` argument for the `git commit` command (PR #46)
43
65
44
66
## [4.2.1] - 2020-07-10
67
+
45
68
### Fixed:
69
+
46
70
- OS-support: the action now properly works on Windows instances (issue #33)
47
71
48
72
## [4.2.0] - 2020-05-17
73
+
49
74
### Added:
75
+
50
76
- Tagging: you can now create and update lightweight tags (PR #30)
51
77
52
78
## [4.1.0] - 2020-05-01
53
-
### Added:
79
+
80
+
### Added:
81
+
54
82
-`ref` parameter: lets you choose the branch to run the action on, the default is the one that triggered the workflow (issue #29)
- Logs: additional info will be logged along with the command outputs
60
90
- Logs: added groups to improve readability
61
91
62
92
## [4.0.2] - 2020-04-19
93
+
63
94
### Fixed:
95
+
64
96
- Error handling: failures are now easier to read (issue #25)
65
97
66
98
## [4.0.1] - 2020-03-20
99
+
67
100
### Fixed:
101
+
68
102
- Scheduled events: the action can be used in action runs triggered by a scheduled events
69
103
- Warnings: there won't be warnings when both `author_name` and `author_email` are set
70
104
71
105
## [4.0.0] - 2020-03-03
106
+
72
107
### Removed:
108
+
73
109
-**[BREAKING]**`path` parameter: see 'Changed' section for more info
74
110
-**[BREAKING]**`pattern` parameter: see 'Changed' section for more info
75
111
76
112
### Changed:
113
+
77
114
- The action now uses `git add` and `git rm` commands, you can choose their arguemnts directly by using the `add` and `remove` parameters
78
115
-**[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)
79
116
80
117
## [3.1.0] - 2020-02-21
118
+
81
119
### Added:
120
+
82
121
-`remove` parameter: lets you delete files directly from the action
83
122
84
123
## [3.0.0] - 2020-01-24
124
+
85
125
### Added:
126
+
86
127
- The action can now run in multiple subsequent jobs in the same workflow
87
128
88
129
### Removed:
130
+
89
131
-**[BREAKING]**[`actions/checkout@v1`](https://github.com/actions/checkout/tree/v1) support is being dropped in favor of [`actions/checkout@v2`](https://github.com/actions/checkout/releases/tag/v2)
90
132
91
133
## [2.3.2] - 2019-12-29
134
+
92
135
### Added:
136
+
93
137
-`cwd` parameter: lets you set the Current Working Directory
94
138
95
139
## [2.3.1] - 2019-12-20
96
-
### Added:
140
+
141
+
### Added:
142
+
97
143
- Short tags: from now on, there will be short major tags available (`v2`, `v3`, ...)
98
144
99
145
## [2.3.0] - 2019-12-14
146
+
100
147
### Changed:
148
+
101
149
- TypeScript rewrite: the action will run faster because, unlike with Docker, no build process is needed
102
150
103
151
### Added:
152
+
104
153
- OS support: the action can now run in non-Linux environments too
105
154
106
155
## [2.2.0] - 2019-12-14
156
+
107
157
### Added:
158
+
108
159
- The action can automatically fetch the commit author to use
109
160
- You can manually provide the author using the `author_name` and `author_email` parameters
110
161
111
162
## [2.1.1] - 2019-12-07
163
+
112
164
### Fixed:
165
+
113
166
- The action can now be used multiple times in the same workflow
114
167
115
168
## [2.1.0] - 2019-09-19
169
+
116
170
### Added:
171
+
117
172
-`force` parameter: uses `--force` when running `git add`
118
173
119
174
## [2.0.0] - 2019-09-18
175
+
120
176
### Changed:
177
+
121
178
-**[BREAKING]** The action now uses a `find` command
0 commit comments