-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathrelease-notes
executable file
·357 lines (317 loc) · 11.2 KB
/
release-notes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
#!/usr/bin/env perl
use warnings;
use strict;
use YAML qw(Load LoadFile);
use JSON::PP qw(decode_json);
use File::Find;
use FindBin;
sub header {
print STDERR "\n================================================================================\n";
printf STDERR "%s", join(' ',@_);
print STDERR "\n--------------------------------------------------------------------------------\n\n";
}
sub bail {
print STDERR "\n";
printf STDERR @_;
print STDERR "\nDid you misconfigure Concourse?\n\n";
exit 2;
}
sub uniq {
my %items;
$items{$_} = 1 for (@_);
sort keys %items;
}
sub get_new_commits {
my ($path, $since_commit) = @_;
my %lookup = (
author => '%aN',
author_email => '%aE',
author_date => '%at',
author_since => '%ar',
committer => '%cN',
committer_email => '%cE',
commit_date => '%ct',
commit_since => '%cr',
body => '%b'
);
my @commits = map {
my ($c,@s) = split(' ');
{commit => $c, subject => join(' ', @s)}
} qx(git -C "$path" log --reverse $since_commit...HEAD --pretty=format:'%H %s');
print STDERR " - fetching commit details";
for my $commit (@commits) {
print STDERR '.';
for my $detail (keys %lookup) {
$commit->{$detail} = join("", qx(git -C "$path" log -n1 --pretty=format:'$lookup{$detail}' $commit->{commit}));
chomp $commit->{$detail};
}
}
print STDERR "\n";
return @commits;
}
sub get_latest_commit_ref {
my ($path) = @_;
chomp(my $ref = qx(git -C $path rev-parse HEAD));
$ref
}
sub get_latest_commit_tag {
my ($path) = @_;
my $tag;
if (-f "$path/.git/ref") {
$tag = qx(cat "$path/.git/ref");
} else {
$tag = qx(git -C $path describe --tag --abbrev=0);
}
chomp $tag;
return $tag
}
sub parse_commits {
my ($path, $last_release_path) = @_;
my @commits = get_new_commits($path, get_latest_commit_ref($last_release_path));
# Remove all merges with no bodies
@commits = grep {$_->{body} || $_->{subject} !~ /^Merge .* into .*/} @commits;
my $last_update;
my $updates=0;
unless ($ENV{NO_UPSTREAM_SYNC}) {
print STDERR " - determining upstream synchronization\n";
@commits = grep {
if ($_->{subject} =~ /^Update to ([^\/]*)\/(.*)@(.*)$/) {
$last_update = $_; $updates++; 0;
} else {
1;
}
} @commits;
}
my %messages;
if ($last_update) {
$last_update->{subject} =~ /Update to ([^\/]*)\/(.*)@(.*)$/;
$messages{'Upstream Convergence'} = [
sprintf(
'* Synchronized embedded %s to [@%s](https://github.com/%s/%s/tree/%s)',
$2, $3, $1, $2, $3
)
];
}
print STDERR " - parsing commits for release notes.";
my $re=qr/(?:(?:\A|\n\n)\[([^\]\n]*)\]\n\n)/;
my ($header,$note,@data);
for my $commit (@commits) {
$commit->{body} =~ s/\r//g; # Remove windows CR characters
(undef, @data) = split($re, $commit->{body}||'');
print STDERR (@data ? "!" : ".");
while (@data) {
$commit->{used} = 1;
($header, $note, @data) = @data;
# Notes can be stopped with a --- on a new line
($note) = split("\n+---",$note);
if ($note !~ /\* /) {
# Auto-bullet
$note = "* ".join("\n ",split("\n", $note));
}
$messages{$header} ||= [];
push @{$messages{$header}}, $note
}
}
print STDERR "\n";
my @entries;
push(@entries, "# $_\n\n".join("\n\n",@{$messages{$_}})) for (sort keys %messages);
my $release_notes = join("\n\n", @entries);
return ($release_notes, \@commits); # TBD: Maybe filter out commits that contained release notes
}
sub get_releases {
my ($path) = @_;
my $filter = "$path/spec/results/*.yml";
my @entries = qx(for x in $filter ; do spruce json \$x | jq -r '.releases[] | "\\(.name) \\(.version) \\(.url)"' 2>/dev/null ; done | sort | uniq);
my %releases;
for my $entry (@entries) {
my ($release, $version, $url) = split(' ',$entry);
push( @{$releases{$release}{$version} ||= []}, $url);
}
return \%releases;
}
my @months = qw(ignored January February March April May June July August September October November December);
sub github {
my ($org, $repo, $versions, $type, $orig_url) = @_;
my ($url, $day, $mon, $year, $out, $tag);
unless ($org && $repo) {
if ($orig_url =~ m|https://bosh.io/d/github.com/([^/]*)/([^/]*)\?v=(.*)$|) {
$org = $1;
$repo = $2;
} elsif ($orig_url =~ m|https://github.com/([^/]*)/([^/]*)/releases|) {
$org = $1;
$repo = $2;
}
return ("-","") unless ($org && $repo);
}
# Try release - the preferred method
my $lookup_url="https://api.github.com/repos/$org/$repo/releases";
for (@$versions) {
$tag = $_;
$out = qx(curl -Ls -u "$ENV{GITHUB_ACCESS_TOKEN}:" "$lookup_url" | jq -r --arg t "$tag" '.[] | select(.tag_name == \$t)');
last if $out;
}
if ($out) {
printf STDERR " - $org/$repo release $tag\n";
my $data = decode_json($out);
$url = $data->{html_url} || '';
return ('-', $url) unless $data->{published_at};
($year, $mon, $day) = ($data->{published_at} =~ m/^(\d{4})-(\d{2})-(\d{2})/);
} else {
# Next try tag
my $lookup_url="https://api.github.com/repos/$org/$repo/tags";
$out = qx(curl -Ls -u "$ENV{GITHUB_ACCESS_TOKEN}:" "$lookup_url");
my $target_tag;
if ($out) {
my $tags = decode_json($out);
for (@$versions) {
$tag = $_;
$target_tag = (grep {$_->{name} eq $tag} @$tags)[0];
last if $target_tag;
}
}
if ($target_tag) {
printf STDERR " - $org/$repo tag $tag\n";
my $commit_url = $target_tag->{commit}{url};
$out = qx(curl -Ls -u "$ENV{GITHUB_ACCESS_TOKEN}:" "$commit_url");
my $data = decode_json($out);
($url = $data->{html_url}) =~ s#/commit/#/tree/#;
($year, $mon, $day) = ($data->{commit}{author}{date} =~ m/^(\d{4})-(\d{2})-(\d{2})/);
} else {
printf STDERR " - $org/$repo version $tag not found!\n";
return ('-','');
}
}
return ("$day $months[$mon] $year", $url);
}
sub calculate_software_updates {
my ($path, $last_path) = @_;
printf STDERR " - retrieving current releases found by spec tests...\n";
my $release_candidate_releases = get_releases($path);
printf STDERR " - retrieving previous releases found by spec tests...\n";
my $last_release_releases = get_releases($last_path);
printf STDERR " - checking ci/upstream.yml for more details...\n";
my $upstream = LoadFile($FindBin::Bin."/../upstream.yml");
my $sections = $upstream->{sections} || [];
my $default_section = (map {$_->{name}} grep {$_->{default}} @$sections)[0] || '-';
delete $upstream->{sections};
my %found;
print STDERR " - retrieving release details:\n";
for my $name (uniq(keys %$release_candidate_releases, keys %$last_release_releases)) {
my @new_versions = keys %{$release_candidate_releases->{$name}||{}};
my @old_versions = keys %{$last_release_releases->{$name}||{}};
#There should never be more than one version in a release
# bail(
# "Somehow there are multiple versions of %s (%s) in release candidate",
# $name, join(', ',@new_versions)
# ) if (@new_versions > 1);
# bail(
# "Somehow there are multiple versions of %s (%s) in last release (%s)",
# $name, join(', ',@old_versions), get_latest_commit_tag($last_path)
# ) if (@old_versions > 1);
next unless scalar(@new_versions);
for my $version (@new_versions) {
my $section = (grep {defined($upstream->{$_}{$name})} keys(%$upstream))[0] || $default_section;
for my $url (@{$release_candidate_releases->{$name}{$version} || []}) {
my ($type,$target);
if ($url =~ /$name-$version-([^-]*(?:-[^0-9][^-]*)*)-(\d*(?:\.\d*)*)-/) {
$type = 'compiled';
$target = "$1\@$2";
} else {
$type = 'source';
}
my @prefixes = defined($upstream->{$section}{$name}{tag_prefix}) ? ($upstream->{$section}{$name}{tag_prefix}) : ('v','');
my @suffixes = ($version =~ /^\d+$/) ? ('','.0','.0.0') : ('');
$found{$section} ||= {};
unless (defined($found{$section}{"$name/$version"})) {
my ($date,$release_url) = github(
$upstream->{$section}{$name}{org},
$upstream->{$section}{$name}{repo},
[map {my $p = $_; map {$p.$version.$_} @suffixes} @prefixes],
$upstream->{$section}{$name}{type},
$url
);
$found{$section}{"$name/$version"} = {
name => $name,
version => $version,
url => $release_url,
date => $date,
form => [],
label => $upstream->{$section}{$name}{label},
changed => (! scalar(@old_versions)) ? "NEW" :
scalar(grep {$version eq $_} @old_versions) ? '' :
sprintf('[X](## "was %s")', join(', ',@old_versions))
};
}
push(@{$found{$section}{"$name/$version"}{form}}, "compiled: $target") if $type eq 'compiled';
push(@{$found{$section}{"$name/$version"}{form}}, "source") if $type eq 'source';
}
}
}
push(@$sections, {name => '-', label => "Other Components"}) if (defined($found{'-'}));
my $software_notes = "# Software Components\n";
for (@$sections) {
my $s = $_->{name};
my $l = $_->{label} || uc($s)." Components";
$software_notes .=
"\n## $l\n\n".
"| Release | Version | Release Date | Type | Changed |\n".
"| ------- | ------- | ------------ | ---- | :-----: |\n";
for my $r (sort keys %{$found{$s}}) {
my $c = $found{$s}{$r};
$c->{label} ||= $c->{name};
$software_notes .= sprintf("| %s | %s | %s | %s | %s |\n",
$c->{label},
$c->{url} ? sprintf("[%s](%s)", $c->{version}, $c->{url}) : $c->{version},
$c->{date},
join("<br>", sort @{$c->{form}}),
$c->{changed}
);
}
}
return $software_notes;
}
sub build_commit_summaries {
my ($commits,$last_release, $url) = @_;
my $summary =
"---8<--- This line and everything below will be ignored ---8<---\n\n".
"### Raw commit messages since $last_release (oldest to latest)\n";
for (@$commits) {
$summary .= sprintf(
"\n\n\n----\n#### %s\n> *[%s](%s)*\n> *authored %s by %s (<%s>)*\n",
$_->{subject}, $_->{commit}, "$url/commit/$_->{commit}",
$_->{author_since}, $_->{author}, $_->{author_email}
);
$summary .= sprintf(
"> *committed %s by %s (<%s>)*\n",
$_->{commit_since}, $_->{committer}, $_->{committer_email}
) if $_->{author} ne $_->{committer};
$summary .= sprintf("\n```markdown\n%s\n```\n", $_->{body}) if $_->{body};
}
return $summary;
}
# ------------------------------------------------------------------------------
# MAIN
# ------------------------------------------------------------------------------
my ($version, $rc_path, $last_release_path, $notes_path)=@ARGV;
# Required Environment Variables
my @missing = grep {! defined($ENV{$_->[0]})} (
['GITHUB_ACCESS_TOKEN', 'Access token needed to retrieve information about releases on Github'],
);
bail "[ERROR] Missing the following required environment variables:\n%s", join("", map {sprintf "- %s: %s\n", @{$_}} @missing)
if (@missing);
my $last_release = get_latest_commit_tag($last_release_path);
header "Building Release Notes from commit messages since $last_release";
my ($release_notes,$commits) = parse_commits($rc_path, $last_release_path);
my $software_updates = '';
unless ($ENV{NO_RELEASE_VERSIONS}) {
header "Calculating Release Changes since $last_release";
$software_updates = calculate_software_updates($rc_path,$last_release_path);
}
qx(git -C $rc_path remote get-url origin) =~ /git\@github.com:(.*)$/;
my $commit_summaries = build_commit_summaries($commits, $last_release, "https://github.com/$1");
open(NOTES, '>', "$notes_path")
or bail "Cannot open $notes_path for writing.";
printf NOTES "<!--- Release Notes for v%s -- Do not move --->\n%s\n\n%s\n%s",
$version, $release_notes, $software_updates, $commit_summaries;
close NOTES;
exit 0;