-
Notifications
You must be signed in to change notification settings - Fork 21
/
main.go
464 lines (413 loc) · 11.9 KB
/
main.go
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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
/*
Copyright The containerd Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"fmt"
"os"
"path"
"path/filepath"
"regexp"
"sort"
"strings"
"text/tabwriter"
"text/template"
"unicode"
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
)
type note struct {
Title string `toml:"title"`
Description string `toml:"description"`
}
type change struct {
Commit string `toml:"commit"`
Description string `toml:"description"`
Title string
Category string
Link string
IsMerge bool
IsHighlight bool
IsBreaking bool
IsDeprecation bool
IsSecurity bool
Formatted string
}
type dependency struct {
Name string
Ref string
Sha string
Previous string
GitURL string
New bool
}
type download struct {
Filename string
Hash string
}
type projectChange struct {
Name string
Changes []*change
}
type projectRename struct {
Old string `toml:"old"`
New string `toml:"new"`
}
type dependencyOverride struct {
Previous string `toml:"previous"`
}
type contributor struct {
Name string
Email string
Commits int
// OtherNames are names seen in the change log associated with
// the same email
OtherNames []string
}
type highlightChange struct {
Project string
Change *change
}
type highlightCategory struct {
Name string
Changes []highlightChange
}
type release struct {
ProjectName string `toml:"project_name"`
GithubRepo string `toml:"github_repo"`
SubPath string `toml:"sub_path"`
Commit string `toml:"commit"`
Previous string `toml:"previous"`
PreRelease bool `toml:"pre_release"`
Preface string `toml:"preface"`
Postface string `toml:"postface"`
Notes map[string]note `toml:"notes"`
BreakingChanges map[string]*change `toml:"breaking"`
// highlight options
//HighlightLabel string `toml:"highlight_label"`
//CategoryLabels []string `toml:"category_labels"`
// MatchDeps provides a regex string to match dependencies to be
// included as part of the changelog.
MatchDeps string `toml:"match_deps"`
// RenameDeps provides a way to match dependencies which have been
// renamed from the old name to the new name.
RenameDeps map[string]projectRename `toml:"rename_deps"`
// IgnoreDeps are dependencies to ignore from the output.
IgnoreDeps []string `toml:"ignore_deps"`
// OverrideDeps is used to override the current dependency calculated
// from the dependency list. This can be used to set the previous version
// which could be missing for new or moved dependencies.
OverrideDeps map[string]dependencyOverride `toml:"override_deps"`
// generated fields
Changes []projectChange
Highlights []highlightCategory
Contributors []contributor
Dependencies []dependency
Tag string
Version string
Downloads []download
}
func main() {
app := cli.NewApp()
app.Name = "release-tool"
app.Description = `release tooling to create annotated GitHub release notes.
This tool should run from the root of the project repository for a new release.
`
app.Flags = []cli.Flag{
&cli.BoolFlag{
Name: "dry",
Aliases: []string{"n"},
Usage: "run the release tooling as a dry run to print the release notes to stdout",
},
&cli.BoolFlag{
Name: "debug",
Aliases: []string{"d"},
Usage: "show debug output",
},
&cli.StringFlag{
Name: "tag",
Aliases: []string{"t"},
Usage: "tag name for the release, defaults to release file name",
},
&cli.StringFlag{
Name: "template",
Usage: "template filepath to use in place of the default",
Value: defaultTemplateFile,
},
&cli.BoolFlag{
Name: "linkify",
Aliases: []string{"l"},
Usage: "add links to changelog",
},
&cli.BoolFlag{
Name: "highlights",
Aliases: []string{"g"},
Usage: "use highlights based on pull request",
},
&cli.BoolFlag{
Name: "short",
Aliases: []string{"s"},
Usage: "shorten changelog length where possible",
},
&cli.BoolFlag{
Name: "skip-commits",
Usage: "skips commit links and titles",
},
&cli.StringFlag{
Name: "cache",
Usage: "cache directory for static remote resources",
EnvVars: []string{"RELEASE_TOOL_CACHE"},
},
&cli.BoolFlag{
Name: "refresh-cache",
Aliases: []string{"r"},
Usage: "refreshes cache",
},
}
app.Action = func(context *cli.Context) error {
var (
releasePath = context.Args().First()
tag = context.String("tag")
linkify = context.Bool("linkify")
highlights = context.Bool("highlights")
short = context.Bool("short")
skipCommits = context.Bool("skip-commits")
refreshCache = context.Bool("refresh-cache")
)
if tag == "" {
tag = parseTag(releasePath)
}
version := strings.TrimLeft(tag, "v")
if context.Bool("debug") {
logrus.SetLevel(logrus.DebugLevel)
}
var (
cache Cache
gitRoot string
)
if cd := context.String("cache"); cd == "" {
cache = nilCache{}
} else if cd, err := filepath.Abs(cd); err != nil {
return err
} else if _, err = os.Stat(cd); err != nil {
return fmt.Errorf("unable to use cache dir: %w", err)
} else {
gitRoot = filepath.Join(cd, "git")
cacheRoot := filepath.Join(cd, "object")
if err := os.MkdirAll(gitRoot, 0755); err != nil {
return fmt.Errorf("unable to mkdir %s: %w", gitRoot, err)
}
if err := os.MkdirAll(cacheRoot, 0755); err != nil {
return fmt.Errorf("unable to mkdir: %s: %w", cacheRoot, err)
}
cache = &dirCache{
root: cacheRoot,
}
}
r, err := loadRelease(releasePath)
if err != nil {
return err
}
logrus.Infof("Welcome to the %s release tool...", r.ProjectName)
if r.SubPath != "" {
gitSubpaths = append(gitSubpaths, r.SubPath)
}
mailmapPath, err := filepath.Abs(".mailmap")
if err != nil {
return fmt.Errorf("failed to resolve mailmap: %w", err)
}
gitConfigs["mailmap.file"] = mailmapPath
var (
contributors = map[string]contributor{}
projectChanges = []projectChange{}
)
changes, err := changelog(r.Previous, r.Commit)
if err != nil {
return err
}
if linkify || highlights {
for _, change := range changes {
if err := githubChange(r.GithubRepo, "", cache, refreshCache).process(change); err != nil {
return err
}
if !change.IsMerge {
if skipCommits {
change.Formatted = ""
} else if short {
change.Formatted = change.Title
}
}
}
} else {
for _, change := range changes {
change.Formatted = fmt.Sprintf("* %s %s", change.Commit, change.Description)
}
}
if err := addContributors(r.Previous, r.Commit, contributors); err != nil {
return err
}
projectChanges = append(projectChanges, projectChange{
Name: "",
Changes: changes,
})
logrus.Infof("creating new release %s with %d new changes...", tag, len(changes))
replacedDeps := make(map[string]string)
current, err := parseDependencies(r.Commit, r.SubPath, replacedDeps)
if err != nil {
return err
}
overrideDependencies(current, r.OverrideDeps)
previous, err := parseDependencies(r.Previous, r.SubPath, nil)
if err != nil {
return err
}
renameDependencies(previous, r.RenameDeps)
updatedDeps, err := getUpdatedDeps(previous, current, r.IgnoreDeps, cache)
if err != nil {
return err
}
sort.Slice(updatedDeps, func(i, j int) bool {
return updatedDeps[i].Name < updatedDeps[j].Name
})
if r.MatchDeps != "" && len(updatedDeps) > 0 {
re, err := regexp.Compile(r.MatchDeps)
if err != nil {
return fmt.Errorf("unable to compile 'match_deps' regexp: %w", err)
}
if gitRoot == "" {
td, err := os.MkdirTemp("", "tmp-clone-")
if err != nil {
return fmt.Errorf("unable to create temp clone directory: %w", err)
}
defer os.RemoveAll(td)
gitRoot = td
}
cwd, err := os.Getwd()
if err != nil {
return fmt.Errorf("unable to get cwd: %w", err)
}
for _, dep := range updatedDeps {
matches := re.FindStringSubmatch(dep.Name)
if matches == nil {
continue
}
logrus.Debugf("Matched dependency %s with %s", dep.Name, r.MatchDeps)
var name string
if len(matches) < 2 {
name = path.Base(dep.Name)
} else {
name = matches[1]
}
if err := os.Chdir(gitRoot); err != nil {
return fmt.Errorf("unable to chdir to temp clone directory: %w", err)
}
var cloned bool
if _, err := os.Stat(name); err != nil && os.IsNotExist(err) {
logrus.Debugf("git clone %s %s", dep.GitURL, name)
if _, err := git("clone", dep.GitURL, name); err != nil {
return fmt.Errorf("failed to clone: %w", err)
}
cloned = true
} else if err != nil {
return fmt.Errorf("unable to stat: %w", err)
}
if err := os.Chdir(name); err != nil {
return fmt.Errorf("unable to chdir to cloned %s directory: %w", name, err)
}
if !cloned {
if _, err := git("show", dep.Ref); err != nil {
logrus.WithField("name", name).Debugf("git fetch origin")
if _, err := git("fetch", "origin"); err != nil {
return fmt.Errorf("failed to fetch: %w", err)
}
}
}
changes, err := changelog(dep.Previous, dep.Ref)
if err != nil {
return fmt.Errorf("failed to get changelog for %s: %w", name, err)
}
if err := addContributors(dep.Previous, dep.Ref, contributors); err != nil {
return fmt.Errorf("failed to get authors for %s: %w", name, err)
}
if linkify || highlights {
if !strings.HasPrefix(dep.Name, "github.com/") {
logrus.Debugf("linkify only supported for Github, skipping %s", dep.Name)
} else {
ghname := dep.Name[11:]
for _, change := range changes {
if err := githubChange(ghname, ghname, cache, refreshCache).process(change); err != nil {
return err
}
if !change.IsMerge {
if skipCommits {
change.Formatted = ""
} else if short {
change.Formatted = change.Title
}
}
}
}
} else {
for _, change := range changes {
change.Formatted = fmt.Sprintf("* %s %s", change.Commit, change.Description)
}
}
projectChanges = append(projectChanges, projectChange{
Name: name,
Changes: changes,
})
}
if err := os.Chdir(cwd); err != nil {
return fmt.Errorf("unable to chdir to previous cwd: %w", err)
}
}
// update the release fields with generated data
r.Contributors = orderContributors(contributors)
r.Dependencies = updatedDeps
if highlights {
r.Highlights = groupHighlights(projectChanges)
}
if !highlights || !skipCommits {
r.Changes = projectChanges
}
r.Tag = tag
r.Version = version
// Log warnings at end for higher visibility
for o, n := range replacedDeps {
logrus.WithFields(logrus.Fields{"old": o, "new": n}).Warn("Dependency replace found, consider removing before tagged release")
}
// Remove trailing new lines
r.Preface = strings.TrimRightFunc(r.Preface, unicode.IsSpace)
r.Postface = strings.TrimRightFunc(r.Postface, unicode.IsSpace)
tmpl, err := getTemplate(context)
if err != nil {
return err
}
if context.Bool("dry") {
t, err := template.New("release-notes").Parse(tmpl)
if err != nil {
return err
}
w := tabwriter.NewWriter(os.Stdout, 8, 8, 2, ' ', 0)
if err := t.Execute(w, r); err != nil {
return err
}
return w.Flush()
}
logrus.Info("release complete!")
return nil
}
if err := app.Run(os.Args); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}