github_changelog_generator 1.15.0.pre.beta → 1.16.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. checksums.yaml +5 -5
  2. data/LICENSE +1 -1
  3. data/README.md +332 -285
  4. data/Rakefile +1 -1
  5. data/bin/git-generate-changelog +1 -1
  6. data/lib/github_changelog_generator.rb +10 -6
  7. data/lib/github_changelog_generator/generator/entry.rb +218 -0
  8. data/lib/github_changelog_generator/generator/generator.rb +124 -125
  9. data/lib/github_changelog_generator/generator/generator_fetcher.rb +139 -23
  10. data/lib/github_changelog_generator/generator/generator_processor.rb +59 -27
  11. data/lib/github_changelog_generator/generator/generator_tags.rb +25 -21
  12. data/lib/github_changelog_generator/generator/section.rb +124 -0
  13. data/lib/github_changelog_generator/helper.rb +1 -1
  14. data/lib/github_changelog_generator/octo_fetcher.rb +233 -96
  15. data/lib/github_changelog_generator/options.rb +74 -2
  16. data/lib/github_changelog_generator/parser.rb +118 -74
  17. data/lib/github_changelog_generator/parser_file.rb +7 -3
  18. data/lib/github_changelog_generator/reader.rb +2 -2
  19. data/lib/github_changelog_generator/task.rb +4 -3
  20. data/lib/github_changelog_generator/version.rb +1 -1
  21. data/man/git-generate-changelog.1 +144 -45
  22. data/man/git-generate-changelog.1.html +157 -84
  23. data/man/git-generate-changelog.html +19 -7
  24. data/man/git-generate-changelog.md +151 -84
  25. data/spec/files/github-changelog-generator.md +114 -114
  26. data/spec/{install-gem-in-bundler.gemfile → install_gem_in_bundler.gemfile} +2 -0
  27. data/spec/spec_helper.rb +2 -6
  28. data/spec/unit/generator/entry_spec.rb +766 -0
  29. data/spec/unit/generator/generator_processor_spec.rb +103 -41
  30. data/spec/unit/generator/generator_spec.rb +47 -0
  31. data/spec/unit/generator/generator_tags_spec.rb +51 -24
  32. data/spec/unit/generator/section_spec.rb +34 -0
  33. data/spec/unit/octo_fetcher_spec.rb +247 -197
  34. data/spec/unit/options_spec.rb +24 -0
  35. data/spec/unit/parse_file_spec.rb +2 -2
  36. data/spec/unit/reader_spec.rb +4 -4
  37. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_commits/when_API_is_valid/returns_commits.json +1 -0
  38. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_commits_before/when_API_is_valid/returns_commits.json +1 -1
  39. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid.json +1 -1
  40. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_issue_with_proper_key/values.json +1 -1
  41. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_issues.json +1 -1
  42. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_issues_with_labels.json +1 -1
  43. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_pull_request_with_proper_key/values.json +1 -1
  44. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_pull_requests_with_labels.json +1 -1
  45. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_pull_requests/when_API_call_is_valid.json +1 -1
  46. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_pull_requests/when_API_call_is_valid/returns_correct_pull_request_keys.json +1 -1
  47. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_pull_requests/when_API_call_is_valid/returns_pull_requests.json +1 -1
  48. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_commit/when_API_call_is_valid.json +1 -1
  49. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_commit/when_API_call_is_valid/returns_commit.json +1 -1
  50. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_date_of_tag/when_API_call_is_valid.json +1 -1
  51. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_date_of_tag/when_API_call_is_valid/returns_date.json +1 -1
  52. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_events_async/when_API_call_is_valid.json +1 -1
  53. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_events_async/when_API_call_is_valid/populates_issues.json +1 -1
  54. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_API_call_is_valid.json +1 -1
  55. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_API_call_is_valid/should_return_tags.json +1 -1
  56. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_API_call_is_valid/should_return_tags_count.json +1 -1
  57. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_wrong_token_provided.json +1 -1
  58. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_wrong_token_provided/should_raise_Unauthorized_error.json +1 -1
  59. metadata +71 -38
  60. data/bin/ghclgen +0 -5
  61. data/lib/github_changelog_generator/generator/generator_generation.rb +0 -180
  62. data/spec/unit/generator/generator_generation_spec.rb +0 -73
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta http-equiv='content-type' value='text/html;charset=utf8'>
5
5
  <meta name='generator' value='Ronn/v0.7.3 (http://github.com/rtomayko/ronn/tree/0.7.3)'>
6
- <title>git-generate-changelog(1) - Generate changelog from github</title>
6
+ <title>git-generate-changelog(1) - Generate changelog from GitHub</title>
7
7
  <style type='text/css' media='all'>
8
8
  /* style: man */
9
9
  body#manpage {margin:0}
@@ -57,6 +57,7 @@
57
57
  <a href="#SYNOPSIS">SYNOPSIS</a>
58
58
  <a href="#DESCRIPTION">DESCRIPTION</a>
59
59
  <a href="#OPTIONS">OPTIONS</a>
60
+ <a href="#REBASED-COMMITS">REBASED COMMITS</a>
60
61
  <a href="#EXAMPLES">EXAMPLES</a>
61
62
  <a href="#AUTHOR">AUTHOR</a>
62
63
  <a href="#REPORTING-BUGS">REPORTING BUGS</a>
@@ -71,7 +72,7 @@
71
72
 
72
73
  <h2 id="NAME">NAME</h2>
73
74
  <p class="man-name">
74
- <code>git-generate-changelog</code> - <span class="man-whatis">Generate changelog from github</span>
75
+ <code>git-generate-changelog</code> - <span class="man-whatis">Generate changelog from GitHub</span>
75
76
  </p>
76
77
 
77
78
  <h2 id="SYNOPSIS">SYNOPSIS</h2>
@@ -80,17 +81,17 @@
80
81
 
81
82
  <h2 id="DESCRIPTION">DESCRIPTION</h2>
82
83
 
83
- <p>Automatically generate change log from your tags, issues, labels and pull requests on GitHub.</p>
84
+ <p>Automatically generate changelog from your tags, issues, labels and pull requests on GitHub.</p>
84
85
 
85
86
  <h2 id="OPTIONS">OPTIONS</h2>
86
87
 
87
88
  <p> -u, --user [USER]</p>
88
89
 
89
- <p> Username of the owner of target GitHub repo</p>
90
+ <p> Username of the owner of target GitHub repo.</p>
90
91
 
91
92
  <p> -p, --project [PROJECT]</p>
92
93
 
93
- <p> Name of project on GitHub</p>
94
+ <p> Name of project on GitHub.</p>
94
95
 
95
96
  <p> -t, --token [TOKEN]</p>
96
97
 
@@ -98,167 +99,239 @@
98
99
 
99
100
  <p> -f, --date-format [FORMAT]</p>
100
101
 
101
- <p> Date format. Default is %Y-%m-%d</p>
102
+ <p> Date format. Default is %Y-%m-%d.</p>
102
103
 
103
104
  <p> -o, --output [NAME]</p>
104
105
 
105
- <p> Output file. Default is CHANGELOG.md</p>
106
+ <p> Output file. To print to STDOUT instead, use blank as path. Default is CHANGELOG.md.</p>
106
107
 
107
108
  <p> -b, --base [NAME]</p>
108
109
 
109
110
  <p> Optional base file to append generated changes to.</p>
110
111
 
111
- <p> --bugs-label [LABEL]</p>
112
+ <p> --summary-label [LABEL]</p>
112
113
 
113
- <p> Setup custom label for bug-fixes section. Default is "<strong>Fixed bugs:</strong></p>
114
+ <p> Set up custom label for the release summary section. Default is "".</p>
114
115
 
115
- <p> --enhancement-label [LABEL]</p>
116
+ <p> --breaking-label [LABEL]</p>
116
117
 
117
- <p> Setup custom label for enhancements section. Default is "<strong>Implemented enhancements:</strong>"</p>
118
+ <p> Set up custom label for breaking changes section. Default is "<strong>Breaking changes:</strong>".</p>
118
119
 
119
- <p> --issues-label [LABEL]</p>
120
+ <p> --enhancement-label [LABEL]</p>
120
121
 
121
- <p> Setup custom label for closed-issues section. Default is "<strong>Closed issues:</strong>"</p>
122
+ <p> Set up custom label for enhancements section. Default is "<strong>Implemented enhancements:</strong>".</p>
122
123
 
123
- <p> --header-label [LABEL]</p>
124
+ <p> --bugs-label [LABEL]</p>
124
125
 
125
- <p> Setup custom header label. Default is "# Change Log"</p>
126
+ <p> Set up custom label for bug-fixes section. Default is "<strong>Fixed bugs:</strong>".</p>
126
127
 
127
- <p> --front-matter [JSON]</p>
128
+ <p> --deprecated-label [LABEL]</p>
128
129
 
129
- <p> Add YAML front matter. Formatted as JSON because it's easier to add on the command line</p>
130
+ <p> Set up custom label for deprecated section. Default is "<strong>Deprecated:</strong>".</p>
130
131
 
131
- <p> --pr-label [LABEL]</p>
132
+ <p> --removed-label [LABEL]</p>
132
133
 
133
- <p> Setup custom label for pull requests section. Default is "<strong>Merged pull requests:</strong>"</p>
134
+ <p> Set up custom label for removed section. Default is "<strong>Removed:</strong>".</p>
134
135
 
135
- <p> --[no-]issues</p>
136
+ <p> --security-label [LABEL]</p>
136
137
 
137
- <p> Include closed issues in changelog. Default is true</p>
138
+ <p> Set up custom label for security section. Default is "<strong>Security:</strong>".</p>
138
139
 
139
- <p> --[no-]issues-wo-labels</p>
140
+ <p> --issues-label [LABEL]</p>
140
141
 
141
- <p> Include closed issues without labels in changelog. Default is true</p>
142
+ <p> Set up custom label for closed-issues section. Default is "<strong>Closed issues:</strong>".</p>
142
143
 
143
- <p> --[no-]pr-wo-labels</p>
144
+ <p> --header-label [LABEL]</p>
144
145
 
145
- <p> Include pull requests without labels in changelog. Default is true</p>
146
+ <p> Set up custom header label. Default is "# Changelog".</p>
146
147
 
147
- <p> --[no-]pull-requests</p>
148
+ <p> --configure-sections [HASH, STRING]</p>
148
149
 
149
- <p> Include pull-requests in changelog. Default is true</p>
150
+ <p> Define your own set of sections which overrides all default sections.</p>
150
151
 
151
- <p> --[no-]filter-by-milestone</p>
152
+ <p> --add-sections [HASH, STRING]</p>
152
153
 
153
- <p> Use milestone to detect when issue was resolved. Default is true</p>
154
+ <p> Add new sections but keep the default sections.</p>
154
155
 
155
- <p> --[no-]author</p>
156
+ <p> --front-matter [JSON]</p>
156
157
 
157
- <p> Add author of pull-request in the end. Default is true</p>
158
+ <p> Add YAML front matter. Formatted as JSON because it's easier to add on the command line.</p>
158
159
 
159
- <p> --usernames-as-github-logins</p>
160
+ <p> --pr-label [LABEL]</p>
160
161
 
161
- <p> Use GitHub tags instead of Markdown links for the author of an issue or pull-request.</p>
162
+ <p> Set up custom label for pull requests section. Default is "<strong>Merged pull requests:</strong>".</p>
162
163
 
163
- <p> --unreleased-only</p>
164
+ <p> --[no-]issues</p>
164
165
 
165
- <p> Generate log from unreleased closed issues only.</p>
166
+ <p> Include closed issues in changelog. Default is true.</p>
166
167
 
167
- <p> --[no-]unreleased</p>
168
+ <p> --[no-]issues-wo-labels</p>
168
169
 
169
- <p> Add to log unreleased closed issues. Default is true</p>
170
+ <p> Include closed issues without labels in changelog. Default is true.</p>
170
171
 
171
- <p> --unreleased-label [label]</p>
172
+ <p> --[no-]pr-wo-labels</p>
172
173
 
173
- <p> Setup custom label for unreleased closed issues section. Default is "<strong>Unreleased:</strong>"</p>
174
+ <p> Include pull requests without labels in changelog. Default is true.</p>
174
175
 
175
- <p> --[no-]compare-link</p>
176
+ <p> --[no-]pull-requests</p>
176
177
 
177
- <p> Include compare link (Full Changelog) between older version and newer version. Default is true</p>
178
+ <p> Include pull-requests in changelog. Default is true.</p>
178
179
 
179
- <p> --include-labels x,y,z</p>
180
+ <p> --[no-]filter-by-milestone</p>
180
181
 
181
- <p> Only issues with the specified labels will be included in the changelog.</p>
182
+ <p> Use milestone to detect when issue was resolved. Default is true.</p>
182
183
 
183
- <p> --exclude-labels x,y,z</p>
184
+ <p> --[no-]issues-of-open-milestones</p>
184
185
 
185
- <p> Issues with the specified labels will be always excluded from changelog. Default is 'duplicate,question,invalid,wontfix'</p>
186
+ <p> Include issues of open milestones. Default is true.</p>
186
187
 
187
- <p> --bug-labels x,y,z</p>
188
+ <p> --[no-]author</p>
188
189
 
189
- <p> Issues with the specified labels will be always added to "Fixed bugs" section. Default is 'bug,Bug'</p>
190
+ <p> Add author of pull request at the end. Default is true.</p>
190
191
 
191
- <p> --enhancement-labels x,y,z</p>
192
+ <p> --usernames-as-github-logins</p>
192
193
 
193
- <p> Issues with the specified labels will be always added to "Implemented enhancements" section. Default is 'enhancement,Enhancement'</p>
194
+ <p> Use GitHub tags instead of Markdown links for the author of an issue or pull-request.</p>
194
195
 
195
- <p> --exclude-tags x,y,z</p>
196
+ <p> --unreleased-only</p>
196
197
 
197
- <p> Change log will exclude specified tags</p>
198
+ <p> Generate log from unreleased closed issues only.</p>
198
199
 
199
- <p> --exclude-tags-regex [REGEX]</p>
200
+ <p> --[no-]unreleased</p>
200
201
 
201
- <p> Apply a regular expression on tag names so that they can be excluded, for example: --exclude-tags-regex ".*+\d{1,}"</p>
202
+ <p> Add to log unreleased closed issues. Default is true.</p>
202
203
 
203
- <p> --since-tag x</p>
204
+ <p> --unreleased-label [label]</p>
204
205
 
205
- <p> Change log will start after specified tag</p>
206
+ <p> Set up custom label for unreleased closed issues section. Default is "<strong>Unreleased:</strong>".</p>
206
207
 
207
- <p> --due-tag x</p>
208
+ <p> --[no-]compare-link</p>
208
209
 
209
- <p> Change log will end before specified tag</p>
210
+ <p> Include compare link (Full Changelog) between older version and newer version. Default is true.</p>
210
211
 
211
- <p> --max-issues [NUMBER]</p>
212
+ <p> --include-labels x,y,z</p>
212
213
 
213
- <p> Max number of issues to fetch from GitHub. Default is unlimited</p>
214
+ <p> Of the labeled issues, only include the ones with the specified labels.</p>
214
215
 
215
- <p> --release-url [URL]</p>
216
+ <p> --exclude-labels x,y,z</p>
216
217
 
217
- <p> The URL to point to for release links, in printf format (with the tag as variable).</p>
218
+ <p> Issues with the specified labels will be excluded from changelog. Default is 'duplicate,question,invalid,wontfix'.</p>
218
219
 
219
- <p> --github-site [URL]</p>
220
+ <p> --summary-labels x,y,z</p>
220
221
 
221
- <p> The Enterprise Github site on which your project is hosted.</p>
222
+ <p> Issues with these labels will be added to a new section, called "Release Summary". The section display only body of issues. Default is 'Release summary,release-summary,Summary,summary'.</p>
222
223
 
223
- <p> --github-api [URL]</p>
224
+ <p> --breaking-labels x,y,z</p>
224
225
 
225
- <p> The enterprise endpoint to use for your Github API.</p>
226
+ <p> Issues with these labels will be added to a new section, called "Breaking changes". Default is 'backwards-incompatible,breaking'.</p>
226
227
 
227
- <p> --simple-list</p>
228
+ <p> --enhancement-labels x,y,z</p>
228
229
 
229
- <p> Create simple list from issues and pull requests. Default is false.</p>
230
+ <p> Issues with the specified labels will be added to "Implemented enhancements" section. Default is 'enhancement,Enhancement'.</p>
230
231
 
231
- <p> --future-release [RELEASE-VERSION]</p>
232
+ <p> --bug-labels x,y,z</p>
232
233
 
233
- <p> Put the unreleased changes in the specified release number.</p>
234
+ <p> Issues with the specified labels will be added to "Fixed bugs" section. Default is 'bug,Bug'.</p>
234
235
 
235
- <p> --release-branch [RELEASE-BRANCH]</p>
236
+ <p> --deprecated-labels x,y,z</p>
236
237
 
237
- <p> Limit pull requests to the release branch, such as master or release</p>
238
+ <p> Issues with the specified labels will be added to a section called "Deprecated". Default is 'deprecated,Deprecated'.</p>
238
239
 
239
- <p> --http-cache</p>
240
+ <p> --removed-labels x,y,z</p>
240
241
 
241
- <p> Use HTTP Cache to cache Github API requests (useful for large repos) Default is true.</p>
242
+ <p> Issues with the specified labels will be added to a section called "Removed". Default is 'removed,Removed'.</p>
242
243
 
243
- <p> --[no-]cache-file [CACHE-FILE]</p>
244
+ <p> --security-labels x,y,z</p>
244
245
 
245
- <p> Filename to use for cache. Default is github-changelog-http-cache in a temporary directory.</p>
246
+ <p> Issues with the specified labels will be added to a section called "Security fixes". Default is 'security,Security'.</p>
246
247
 
247
- <p> --cache-log [CACHE-LOG]</p>
248
+ <p> --issue-line-labels x,y,z</p>
248
249
 
249
- <p> Filename to use for cache log. Default is github-changelog-logger.log in a temporary directory.</p>
250
+ <p> The specified labels will be shown in brackets next to each matching issue. Use "ALL" to show all labels. Default is [].</p>
250
251
 
251
- <p> --[no-]verbose</p>
252
+ <p> --exclude-tags x,y,z</p>
252
253
 
253
- <p> Run verbosely. Default is true</p>
254
+ <p> Changelog will exclude specified tags.</p>
255
+
256
+ <p> --exclude-tags-regex [REGEX]</p>
257
+
258
+ <p> Apply a regular expression on tag names so that they can be excluded, for example: --exclude-tags-regex ".*+\d{1,}".</p>
259
+
260
+ <p> --since-tag x</p>
261
+
262
+ <p> Changelog will start after specified tag.</p>
263
+
264
+ <p> --due-tag x</p>
265
+
266
+ <p> Changelog will end before specified tag.</p>
267
+
268
+ <p> --since-commit x</p>
269
+
270
+ <p> Fetch only commits after this time. eg. "2017-01-01 10:00:00"</p>
271
+
272
+ <p> --max-issues [NUMBER]</p>
273
+
274
+ <p> Maximum number of issues to fetch from GitHub. Default is unlimited.</p>
275
+
276
+ <p> --release-url [URL]</p>
277
+
278
+ <p> The URL to point to for release links, in printf format (with the tag as variable).</p>
279
+
280
+ <p> --github-site [URL]</p>
281
+
282
+ <p> The Enterprise GitHub site where your project is hosted.</p>
283
+
284
+ <p> --github-api [URL]</p>
285
+
286
+ <p> The enterprise endpoint to use for your GitHub API.</p>
287
+
288
+ <p> --simple-list</p>
289
+
290
+ <p> Create a simple list from issues and pull requests. Default is false.</p>
291
+
292
+ <p> --future-release [RELEASE-VERSION]</p>
293
+
294
+ <p> Put the unreleased changes in the specified release number.</p>
295
+
296
+ <p> --release-branch [RELEASE-BRANCH]</p>
297
+
298
+ <p> Limit pull requests to the release branch, such as master or release.</p>
299
+
300
+ <p> --http-cache</p>
301
+
302
+ <p> Use HTTP Cache to cache GitHub API requests (useful for large repos). Default is true.</p>
303
+
304
+ <p> --[no-]cache-file [CACHE-FILE]</p>
305
+
306
+ <p> Filename to use for cache. Default is github-changelog-http-cache in a temporary directory.</p>
307
+
308
+ <p> --cache-log [CACHE-LOG]</p>
309
+
310
+ <p> Filename to use for cache log. Default is github-changelog-logger.log in a temporary directory.</p>
311
+
312
+ <p> --ssl-ca-file [PATH]</p>
313
+
314
+ <p> Path to cacert.pem file. Default is a bundled lib/github_changelog_generator/ssl_certs/cacert.pem. Respects SSL_CA_PATH.</p>
315
+
316
+ <p> --require file1.rb,file2.rb</p>
317
+
318
+ <p> Paths to Ruby file(s) to require before generating changelog.</p>
319
+
320
+ <p> --[no-]verbose</p>
321
+
322
+ <p> Run verbosely. Default is true.</p>
254
323
 
255
324
  <p> -v, --version</p>
256
325
 
257
- <p> Print version number</p>
326
+ <p> Print version number.</p>
258
327
 
259
328
  <p> -h, --help</p>
260
329
 
261
- <p> Displays Help</p>
330
+ <p> Displays Help.</p>
331
+
332
+ <h2 id="REBASED-COMMITS">REBASED COMMITS</h2>
333
+
334
+ <p>GitHub pull requests that have been merged whose merge commit SHA has been modified through rebasing, cherry picking, or some other method may be tracked via a special comment on GitHub. Git commit SHAs found in comments on pull requests matching the regular expression <code>/rebased commit: ([0-9a-f]{40})/i</code> will be used in place of the original merge SHA when being added to the changelog.</p>
262
335
 
263
336
  <h2 id="EXAMPLES">EXAMPLES</h2>
264
337
 
@@ -268,16 +341,16 @@
268
341
 
269
342
  <h2 id="REPORTING-BUGS">REPORTING BUGS</h2>
270
343
 
271
- <p>&lt;<a href="https://github.com/skywinder/github-changelog-generator/issues" data-bare-link="true">https://github.com/skywinder/github-changelog-generator/issues</a>&gt;</p>
344
+ <p>&lt;<a href="https://github.com/github-changelog-generator/github-changelog-generator/issues" data-bare-link="true">https://github.com/github-changelog-generator/github-changelog-generator/issues</a>&gt;</p>
272
345
 
273
346
  <h2 id="SEE-ALSO">SEE ALSO</h2>
274
347
 
275
- <p>&lt;<a href="https://github.com/skywinder/github-changelog-generator/" data-bare-link="true">https://github.com/skywinder/github-changelog-generator/</a>&gt;</p>
348
+ <p>&lt;<a href="https://github.com/github-changelog-generator/github-changelog-generator/" data-bare-link="true">https://github.com/github-changelog-generator/github-changelog-generator/</a>&gt;</p>
276
349
 
277
350
 
278
351
  <ol class='man-decor man-foot man foot'>
279
352
  <li class='tl'></li>
280
- <li class='tc'>December 2016</li>
353
+ <li class='tc'>May 2020</li>
281
354
  <li class='tr'>git-generate-changelog(1)</li>
282
355
  </ol>
283
356
 
@@ -80,7 +80,7 @@
80
80
 
81
81
  <h2 id="DESCRIPTION">DESCRIPTION</h2>
82
82
 
83
- <p>Automatically generate change log from your tags, issues, labels and pull requests on GitHub.</p>
83
+ <p>Automatically generate changelog from your tags, issues, labels and pull requests on GitHub.</p>
84
84
 
85
85
  <h2 id="OPTIONS">OPTIONS</h2>
86
86
 
@@ -122,7 +122,7 @@
122
122
 
123
123
  <p> --header-label [LABEL]</p>
124
124
 
125
- <p> Setup custom header label. Default is "# Change Log"</p>
125
+ <p> Setup custom header label. Default is "# Changelog"</p>
126
126
 
127
127
  <p> --pr-label [LABEL]</p>
128
128
 
@@ -186,15 +186,15 @@
186
186
 
187
187
  <p> --exclude-tags x,y,z</p>
188
188
 
189
- <p> Change log will exclude specified tags</p>
189
+ <p> Changelog will exclude specified tags</p>
190
190
 
191
191
  <p> --since-tag x</p>
192
192
 
193
- <p> Change log will start after specified tag</p>
193
+ <p> Changelog will start after specified tag</p>
194
194
 
195
195
  <p> --due-tag x</p>
196
196
 
197
- <p> Change log will end before specified tag</p>
197
+ <p> Changelog will end before specified tag</p>
198
198
 
199
199
  <p> --max-issues [NUMBER]</p>
200
200
 
@@ -220,6 +220,18 @@
220
220
 
221
221
  <p> Put the unreleased changes in the specified release number.</p>
222
222
 
223
+ <p> --configure-sections [HASH, STRING]</p>
224
+
225
+ <p> Define your own set of sections which overrides all default sections") do |v|</p>
226
+
227
+ <p> --add-sections [HASH, STRING]</p>
228
+
229
+ <p> Add new sections but keep the default sections"</p>
230
+
231
+ <p> --include-merged</p>
232
+
233
+ <p> If configure_sections is set, use this to restore the merged pull requests sections</p>
234
+
223
235
  <p> --[no-]verbose</p>
224
236
 
225
237
  <p> Run verbosely. Default is true</p>
@@ -240,11 +252,11 @@
240
252
 
241
253
  <h2 id="REPORTING-BUGS">REPORTING BUGS</h2>
242
254
 
243
- <p>&lt;<a href="https://github.com/skywinder/github-changelog-generator/issues" data-bare-link="true">https://github.com/skywinder/github-changelog-generator/issues</a>&gt;</p>
255
+ <p>&lt;<a href="https://github.com/github-changelog-generator/github-changelog-generator/issues" data-bare-link="true">https://github.com/github-changelog-generator/github-changelog-generator/issues</a>&gt;</p>
244
256
 
245
257
  <h2 id="SEE-ALSO">SEE ALSO</h2>
246
258
 
247
- <p>&lt;<a href="https://github.com/skywinder/github-changelog-generator/" data-bare-link="true">https://github.com/skywinder/github-changelog-generator/</a>&gt;</p>
259
+ <p>&lt;<a href="https://github.com/github-changelog-generator/github-changelog-generator/" data-bare-link="true">https://github.com/github-changelog-generator/github-changelog-generator/</a>&gt;</p>
248
260
 
249
261
 
250
262
  <ol class='man-decor man-foot man foot'>
@@ -1,4 +1,4 @@
1
- git-generate-changelog(1) - Generate changelog from github
1
+ git-generate-changelog(1) - Generate changelog from GitHub
2
2
  ================================
3
3
 
4
4
  ## SYNOPSIS
@@ -7,17 +7,17 @@ git-generate-changelog(1) - Generate changelog from github
7
7
 
8
8
  ## DESCRIPTION
9
9
 
10
- Automatically generate change log from your tags, issues, labels and pull requests on GitHub.
10
+ Automatically generate changelog from your tags, issues, labels and pull requests on GitHub.
11
11
 
12
12
  ## OPTIONS
13
13
 
14
14
  -u, --user [USER]
15
15
 
16
- Username of the owner of target GitHub repo
16
+ Username of the owner of target GitHub repo.
17
17
 
18
18
  -p, --project [PROJECT]
19
19
 
20
- Name of project on GitHub
20
+ Name of project on GitHub.
21
21
 
22
22
  -t, --token [TOKEN]
23
23
 
@@ -25,172 +25,239 @@ Automatically generate change log from your tags, issues, labels and pull reques
25
25
 
26
26
  -f, --date-format [FORMAT]
27
27
 
28
- Date format. Default is %Y-%m-%d
28
+ Date format. Default is %Y-%m-%d.
29
29
 
30
30
  -o, --output [NAME]
31
31
 
32
- Output file. Default is CHANGELOG.md
32
+ Output file. To print to STDOUT instead, use blank as path. Default is CHANGELOG.md.
33
33
 
34
34
  -b, --base [NAME]
35
35
 
36
36
  Optional base file to append generated changes to.
37
37
 
38
- --bugs-label [LABEL]
38
+ --summary-label [LABEL]
39
39
 
40
- Setup custom label for bug-fixes section. Default is "**Fixed bugs:**
40
+ Set up custom label for the release summary section. Default is "".
41
41
 
42
- --enhancement-label [LABEL]
42
+ --breaking-label [LABEL]
43
43
 
44
- Setup custom label for enhancements section. Default is "**Implemented enhancements:**"
44
+ Set up custom label for breaking changes section. Default is "**Breaking changes:**".
45
45
 
46
- --issues-label [LABEL]
46
+ --enhancement-label [LABEL]
47
47
 
48
- Setup custom label for closed-issues section. Default is "**Closed issues:**"
48
+ Set up custom label for enhancements section. Default is "**Implemented enhancements:**".
49
49
 
50
- --header-label [LABEL]
50
+ --bugs-label [LABEL]
51
51
 
52
- Setup custom header label. Default is "# Change Log"
52
+ Set up custom label for bug-fixes section. Default is "**Fixed bugs:**".
53
53
 
54
- --front-matter [JSON]
54
+ --deprecated-label [LABEL]
55
55
 
56
- Add YAML front matter. Formatted as JSON because it's easier to add on the command line
56
+ Set up custom label for deprecated section. Default is "**Deprecated:**".
57
57
 
58
- --pr-label [LABEL]
58
+ --removed-label [LABEL]
59
59
 
60
- Setup custom label for pull requests section. Default is "**Merged pull requests:**"
60
+ Set up custom label for removed section. Default is "**Removed:**".
61
61
 
62
- --[no-]issues
62
+ --security-label [LABEL]
63
63
 
64
- Include closed issues in changelog. Default is true
64
+ Set up custom label for security section. Default is "**Security:**".
65
65
 
66
- --[no-]issues-wo-labels
66
+ --issues-label [LABEL]
67
67
 
68
- Include closed issues without labels in changelog. Default is true
68
+ Set up custom label for closed-issues section. Default is "**Closed issues:**".
69
69
 
70
- --[no-]pr-wo-labels
70
+ --header-label [LABEL]
71
71
 
72
- Include pull requests without labels in changelog. Default is true
72
+ Set up custom header label. Default is "# Changelog".
73
73
 
74
- --[no-]pull-requests
74
+ --configure-sections [HASH, STRING]
75
75
 
76
- Include pull-requests in changelog. Default is true
76
+ Define your own set of sections which overrides all default sections.
77
77
 
78
- --[no-]filter-by-milestone
78
+ --add-sections [HASH, STRING]
79
79
 
80
- Use milestone to detect when issue was resolved. Default is true
80
+ Add new sections but keep the default sections.
81
81
 
82
- --[no-]author
82
+ --front-matter [JSON]
83
83
 
84
- Add author of pull-request in the end. Default is true
84
+ Add YAML front matter. Formatted as JSON because it's easier to add on the command line.
85
85
 
86
- --usernames-as-github-logins
86
+ --pr-label [LABEL]
87
87
 
88
- Use GitHub tags instead of Markdown links for the author of an issue or pull-request.
88
+ Set up custom label for pull requests section. Default is "**Merged pull requests:**".
89
89
 
90
- --unreleased-only
90
+ --[no-]issues
91
91
 
92
- Generate log from unreleased closed issues only.
92
+ Include closed issues in changelog. Default is true.
93
93
 
94
- --[no-]unreleased
94
+ --[no-]issues-wo-labels
95
95
 
96
- Add to log unreleased closed issues. Default is true
96
+ Include closed issues without labels in changelog. Default is true.
97
97
 
98
- --unreleased-label [label]
98
+ --[no-]pr-wo-labels
99
99
 
100
- Setup custom label for unreleased closed issues section. Default is "**Unreleased:**"
100
+ Include pull requests without labels in changelog. Default is true.
101
101
 
102
- --[no-]compare-link
102
+ --[no-]pull-requests
103
103
 
104
- Include compare link (Full Changelog) between older version and newer version. Default is true
104
+ Include pull-requests in changelog. Default is true.
105
105
 
106
- --include-labels x,y,z
106
+ --[no-]filter-by-milestone
107
107
 
108
- Only issues with the specified labels will be included in the changelog.
108
+ Use milestone to detect when issue was resolved. Default is true.
109
109
 
110
- --exclude-labels x,y,z
110
+ --[no-]issues-of-open-milestones
111
111
 
112
- Issues with the specified labels will be always excluded from changelog. Default is 'duplicate,question,invalid,wontfix'
112
+ Include issues of open milestones. Default is true.
113
113
 
114
- --bug-labels x,y,z
114
+ --[no-]author
115
115
 
116
- Issues with the specified labels will be always added to "Fixed bugs" section. Default is 'bug,Bug'
116
+ Add author of pull request at the end. Default is true.
117
117
 
118
- --enhancement-labels x,y,z
118
+ --usernames-as-github-logins
119
119
 
120
- Issues with the specified labels will be always added to "Implemented enhancements" section. Default is 'enhancement,Enhancement'
120
+ Use GitHub tags instead of Markdown links for the author of an issue or pull-request.
121
121
 
122
- --exclude-tags x,y,z
122
+ --unreleased-only
123
123
 
124
- Change log will exclude specified tags
124
+ Generate log from unreleased closed issues only.
125
125
 
126
- --exclude-tags-regex [REGEX]
126
+ --[no-]unreleased
127
127
 
128
- Apply a regular expression on tag names so that they can be excluded, for example: --exclude-tags-regex ".*\+\d{1,}"
128
+ Add to log unreleased closed issues. Default is true.
129
129
 
130
- --since-tag x
130
+ --unreleased-label [label]
131
131
 
132
- Change log will start after specified tag
132
+ Set up custom label for unreleased closed issues section. Default is "**Unreleased:**".
133
133
 
134
- --due-tag x
134
+ --[no-]compare-link
135
135
 
136
- Change log will end before specified tag
136
+ Include compare link (Full Changelog) between older version and newer version. Default is true.
137
137
 
138
- --max-issues [NUMBER]
138
+ --include-labels x,y,z
139
139
 
140
- Max number of issues to fetch from GitHub. Default is unlimited
140
+ Of the labeled issues, only include the ones with the specified labels.
141
141
 
142
- --release-url [URL]
142
+ --exclude-labels x,y,z
143
143
 
144
- The URL to point to for release links, in printf format (with the tag as variable).
144
+ Issues with the specified labels will be excluded from changelog. Default is 'duplicate,question,invalid,wontfix'.
145
145
 
146
- --github-site [URL]
146
+ --summary-labels x,y,z
147
147
 
148
- The Enterprise Github site on which your project is hosted.
148
+ Issues with these labels will be added to a new section, called "Release Summary". The section display only body of issues. Default is 'Release summary,release-summary,Summary,summary'.
149
149
 
150
- --github-api [URL]
150
+ --breaking-labels x,y,z
151
151
 
152
- The enterprise endpoint to use for your Github API.
152
+ Issues with these labels will be added to a new section, called "Breaking changes". Default is 'backwards-incompatible,breaking'.
153
153
 
154
- --simple-list
154
+ --enhancement-labels x,y,z
155
155
 
156
- Create simple list from issues and pull requests. Default is false.
156
+ Issues with the specified labels will be added to "Implemented enhancements" section. Default is 'enhancement,Enhancement'.
157
157
 
158
- --future-release [RELEASE-VERSION]
158
+ --bug-labels x,y,z
159
159
 
160
- Put the unreleased changes in the specified release number.
160
+ Issues with the specified labels will be added to "Fixed bugs" section. Default is 'bug,Bug'.
161
161
 
162
- --release-branch [RELEASE-BRANCH]
162
+ --deprecated-labels x,y,z
163
163
 
164
- Limit pull requests to the release branch, such as master or release
164
+ Issues with the specified labels will be added to a section called "Deprecated". Default is 'deprecated,Deprecated'.
165
165
 
166
- --http-cache
166
+ --removed-labels x,y,z
167
167
 
168
- Use HTTP Cache to cache Github API requests (useful for large repos) Default is true.
168
+ Issues with the specified labels will be added to a section called "Removed". Default is 'removed,Removed'.
169
169
 
170
- --[no-]cache-file [CACHE-FILE]
170
+ --security-labels x,y,z
171
171
 
172
- Filename to use for cache. Default is github-changelog-http-cache in a temporary directory.
172
+ Issues with the specified labels will be added to a section called "Security fixes". Default is 'security,Security'.
173
173
 
174
- --cache-log [CACHE-LOG]
174
+ --issue-line-labels x,y,z
175
175
 
176
- Filename to use for cache log. Default is github-changelog-logger.log in a temporary directory.
176
+ The specified labels will be shown in brackets next to each matching issue. Use "ALL" to show all labels. Default is [].
177
177
 
178
- --ssl-ca-file [PATH]
178
+ --exclude-tags x,y,z
179
179
 
180
- Path to cacert.pem file. Default is a bundled lib/github_changelog_generator/ssl_certs/cacert.pem. Respects SSL_CA_PATH.
180
+ Changelog will exclude specified tags.
181
181
 
182
- --[no-]verbose
182
+ --exclude-tags-regex [REGEX]
183
183
 
184
- Run verbosely. Default is true
184
+ Apply a regular expression on tag names so that they can be excluded, for example: --exclude-tags-regex ".*\+\d{1,}".
185
+
186
+ --since-tag x
187
+
188
+ Changelog will start after specified tag.
189
+
190
+ --due-tag x
191
+
192
+ Changelog will end before specified tag.
193
+
194
+ --since-commit x
195
+
196
+ Fetch only commits after this time. eg. "2017-01-01 10:00:00"
197
+
198
+ --max-issues [NUMBER]
199
+
200
+ Maximum number of issues to fetch from GitHub. Default is unlimited.
201
+
202
+ --release-url [URL]
203
+
204
+ The URL to point to for release links, in printf format (with the tag as variable).
205
+
206
+ --github-site [URL]
207
+
208
+ The Enterprise GitHub site where your project is hosted.
209
+
210
+ --github-api [URL]
211
+
212
+ The enterprise endpoint to use for your GitHub API.
213
+
214
+ --simple-list
215
+
216
+ Create a simple list from issues and pull requests. Default is false.
217
+
218
+ --future-release [RELEASE-VERSION]
219
+
220
+ Put the unreleased changes in the specified release number.
221
+
222
+ --release-branch [RELEASE-BRANCH]
223
+
224
+ Limit pull requests to the release branch, such as master or release.
225
+
226
+ --http-cache
227
+
228
+ Use HTTP Cache to cache GitHub API requests (useful for large repos). Default is true.
229
+
230
+ --[no-]cache-file [CACHE-FILE]
231
+
232
+ Filename to use for cache. Default is github-changelog-http-cache in a temporary directory.
233
+
234
+ --cache-log [CACHE-LOG]
235
+
236
+ Filename to use for cache log. Default is github-changelog-logger.log in a temporary directory.
237
+
238
+ --ssl-ca-file [PATH]
239
+
240
+ Path to cacert.pem file. Default is a bundled lib/github_changelog_generator/ssl_certs/cacert.pem. Respects SSL_CA_PATH.
241
+
242
+ --require file1.rb,file2.rb
243
+
244
+ Paths to Ruby file(s) to require before generating changelog.
245
+
246
+ --[no-]verbose
247
+
248
+ Run verbosely. Default is true.
185
249
 
186
250
  -v, --version
187
251
 
188
- Print version number
252
+ Print version number.
189
253
 
190
254
  -h, --help
191
255
 
192
- Displays Help
256
+ Displays Help.
257
+
258
+ ## REBASED COMMITS
193
259
 
260
+ GitHub pull requests that have been merged whose merge commit SHA has been modified through rebasing, cherry picking, or some other method may be tracked via a special comment on GitHub. Git commit SHAs found in comments on pull requests matching the regular expression `/rebased commit: ([0-9a-f]{40})/i` will be used in place of the original merge SHA when being added to the changelog.
194
261
 
195
262
  ## EXAMPLES
196
263
 
@@ -200,8 +267,8 @@ Written by Petr Korolev sky4winder@gmail.com
200
267
 
201
268
  ## REPORTING BUGS
202
269
 
203
- &lt;<https://github.com/skywinder/github-changelog-generator/issues>&gt;
270
+ &lt;<https://github.com/github-changelog-generator/github-changelog-generator/issues>&gt;
204
271
 
205
272
  ## SEE ALSO
206
273
 
207
- &lt;<https://github.com/skywinder/github-changelog-generator/>&gt;
274
+ &lt;<https://github.com/github-changelog-generator/github-changelog-generator/>&gt;