UNPKG

77.9 kBMarkdownView Raw
1# v9.40.0 (Wed Jun 24 2020)
2
3### Release Notes
4
5_From #1295_
6
7This release removes the requirement for the `Maven Release Plugin` from maven projects. This is a breaking change but that maven plugin was quite experimental. This PR makes it a full featured `auto` experience.
8
9## Remove requirement for "maven-release-plugin" and other improvements
10
111. Remove requirement for "maven-release-plugin".
122. Support recursive changes to all `pom.xml` files in the project, with the following assumptions:
13 a. The project is a multi-module project.
14 b. The parent `pom.xml` file is located in the root directory of the repo.
15 c. The parent `pom.xml` contains the version.
16 d. Sub-modules have the same version as the parent `pom.xml`.
173. Support plugin options, with environment variable overrides:
18 a. `MAVEN_COMMAND || mavenCommand` - the path to the maven executable to use. Defaults to `/usr/bin/mvn`.
19 b. `MAVEN_OPTIONS || mavenOptions` - an array of arbitrary maven options, e.g. `-DskipTests -P some-profile`. No defaults.
20 c. `MAVEN_RELEASE_GOALS || mavenReleaseGoals` - an array of maven goals to run when publishing. Defaults to `["deploy", "site-deploy"]`.
21 d. `MAVEN_SETTINGS || mavenSettings` - the path to the maven settings file. No defaults.
22
23**NOTE:** The `MAVEN_USERNAME` and `MAVEN_PASSWORD` environment variables are still supported, and have their counterparts as configuration options, but should are deprecated, and will be removed in a later release. This is because `MAVEN_SETTINGS` or `MAVEN_OPTIONS` can do the same work, but provide a much more flexible solution.
24
25## Support both "versions-maven-plugin" and auto-native DOM/XML
26
27`auto` will detect if the parent `pom.xml` file has the `versions-maven-plugin` configured, and if so, use it to set the version on the parent and all child `pom.xml` files. If not, then auto will modify the parent and all child `pom.xml` files using a DOM parser and XML serializer. This has the effect of losing formatting. Therefore it then runs the serialized XML through the `prettier` "html" pretty-printer.
28
29This means that if the `versions-maven-plugin` isn't available, the `pom.xml` files will be pretty-printed using the `prettier` formatter with the following default settings:
30
31* `printWidth: 120` (configurable - see below)
32* `tabWidth: 4` (configurable - see below)
33* `parser: "html"`
34
35---
36
37#### 🚀 Enhancement
38
39- Remove maven release plugin requirement [#1295](https://github.com/intuit/auto/pull/1295) ([@rbellamy](https://github.com/rbellamy) [@hipstersmoothie](https://github.com/hipstersmoothie))
40
41#### 🐛 Bug Fix
42
43- change beforeRun hook from sync to async ([@hipstersmoothie](https://github.com/hipstersmoothie))
44- Bump tslib from 1.11.1 to 2.0.0 ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
45
46#### 🔩 Dependency Updates
47
48- Bump typescript from 3.9.3 to 3.9.5 [#1288](https://github.com/intuit/auto/pull/1288) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
49- Bump tslib from 1.11.1 to 2.0.0 [#1289](https://github.com/intuit/auto/pull/1289) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
50
51#### Authors: 3
52
53- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
54- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
55- G. Richard Bellamy ([@rbellamy](https://github.com/rbellamy))
56
57---
58
59# v9.39.0 (Thu Jun 04 2020)
60
61#### 🐛 Bug Fix
62
63- fix automated old branch creation [#1278](https://github.com/intuit/auto/pull/1278) ([@hipstersmoothie](https://github.com/hipstersmoothie))
64- fix automated old branch creation ([@hipstersmoothie](https://github.com/hipstersmoothie))
65
66#### Authors: 1
67
68- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
69
70---
71
72# v9.38.2 (Wed Jun 03 2020)
73
74#### 🐛 Bug Fix
75
76- if canary --force provided default to patch [#1275](https://github.com/intuit/auto/pull/1275) ([@hipstersmoothie](https://github.com/hipstersmoothie))
77- if force provided default to patch ([@hipstersmoothie](https://github.com/hipstersmoothie))
78
79#### Authors: 1
80
81- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
82
83---
84
85# v9.38.1 (Wed Jun 03 2020)
86
87#### 🐛 Bug Fix
88
89- fix next release start commit calculation when tags are package@version [#1273](https://github.com/intuit/auto/pull/1273) ([@hipstersmoothie](https://github.com/hipstersmoothie))
90- fix next release start commit calculation when tags are package@version ([@hipstersmoothie](https://github.com/hipstersmoothie))
91- chore: accurately name variable within inOldVersionBranch() ([@bmuenzenmeyer](https://github.com/bmuenzenmeyer))
92
93#### 🏠 Internal
94
95- chore: accurately name variable within inOldVersionBranch() [#1271](https://github.com/intuit/auto/pull/1271) ([@bmuenzenmeyer](https://github.com/bmuenzenmeyer))
96
97#### 🔩 Dependency Updates
98
99- Bump io-ts from 2.2.2 to 2.2.4 [#1269](https://github.com/intuit/auto/pull/1269) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
100
101#### Authors: 3
102
103- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
104- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
105- Brian Muenzenmeyer ([@bmuenzenmeyer](https://github.com/bmuenzenmeyer))
106
107---
108
109# v9.37.0 (Fri May 29 2020)
110
111#### 🚀 Enhancement
112
113- add more contextual information to next hook [#1265](https://github.com/intuit/auto/pull/1265) ([@hipstersmoothie](https://github.com/hipstersmoothie))
114
115#### 🐛 Bug Fix
116
117- add more contextual information to next hook ([@hipstersmoothie](https://github.com/hipstersmoothie))
118
119#### Authors: 1
120
121- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
122
123---
124
125# v9.36.4 (Thu May 28 2020)
126
127:tada: This release contains work from a new contributor! :tada:
128
129Thank you, Marty Henderson ([@10hendersonm](https://github.com/10hendersonm)), for all your work!
130
131#### 🐛 Bug Fix
132
133- fix(git): Prevents getLastTagNotInBaseBranch from returning a commit hash [#1262](https://github.com/intuit/auto/pull/1262) ([@10hendersonm](https://github.com/10hendersonm))
134- fix(git): Prevents getLastTagNotInBaseBranch from returning a commit hash ([@10hendersonm](https://github.com/10hendersonm))
135
136#### Authors: 1
137
138- Marty Henderson ([@10hendersonm](https://github.com/10hendersonm))
139
140---
141
142# v9.36.3 (Thu May 28 2020)
143
144#### 🐛 Bug Fix
145
146- calculate next release notes using the latest fork commit not the first [#1264](https://github.com/intuit/auto/pull/1264) ([@hipstersmoothie](https://github.com/hipstersmoothie))
147- calculate next release notes using the latest fork commit not the first ([@hipstersmoothie](https://github.com/hipstersmoothie))
148- fix build ([@hipstersmoothie](https://github.com/hipstersmoothie))
149
150#### 🔩 Dependency Updates
151
152- Bump type-fest from 0.13.1 to 0.15.0 [#1259](https://github.com/intuit/auto/pull/1259) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
153
154#### Authors: 2
155
156- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
157- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
158
159---
160
161# v9.36.1 (Fri May 22 2020)
162
163#### 🐛 Bug Fix
164
165- fix reduce without initial value [#1249](https://github.com/intuit/auto/pull/1249) ([@hipstersmoothie](https://github.com/hipstersmoothie))
166- add build ([@hipstersmoothie](https://github.com/hipstersmoothie))
167- add tests ([@hipstersmoothie](https://github.com/hipstersmoothie))
168- fix reduce without initial value ([@hipstersmoothie](https://github.com/hipstersmoothie))
169
170#### Authors: 1
171
172- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
173
174---
175
176# v9.35.3 (Fri May 22 2020)
177
178#### 🐛 Bug Fix
179
180- Changelog formatting [#1246](https://github.com/intuit/auto/pull/1246) ([@hipstersmoothie](https://github.com/hipstersmoothie))
181- Improve changelog formatting to be more compatible with pretter ([@hipstersmoothie](https://github.com/hipstersmoothie))
182- changelog-formatting ([@hipstersmoothie](https://github.com/hipstersmoothie))
183
184#### Authors: 1
185
186- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
187
188---
189
190# v9.35.2 (Fri May 22 2020)
191
192:tada: This release contains work from a new contributor! :tada:
193
194Thank you, Kevin Wolf ([@kevinwolfdev](https://github.com/kevinwolfdev)), for all your work!
195
196#### 🐛 Bug Fix
197
198- Extend default labels [#1206](https://github.com/intuit/auto/pull/1206) ([@kevinwolfdev](https://github.com/kevinwolfdev) [@hipstersmoothie](https://github.com/hipstersmoothie))
199- ensure user label order is respected if changelog titles match ([@hipstersmoothie](https://github.com/hipstersmoothie))
200- reset changelog changes ([@hipstersmoothie](https://github.com/hipstersmoothie))
201- fix failing tests ([@kevinwolfdev](https://github.com/kevinwolfdev))
202- Merge branch 'master' into extend-default-labels ([@kevinwolfdev](https://github.com/kevinwolfdev))
203- add patch releaseType to performance label ([@kevinwolfdev](https://github.com/kevinwolfdev))
204- extend default labels ([@kevinwolfdev](https://github.com/kevinwolfdev))
205
206#### Authors: 2
207
208- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
209- Kevin Wolf ([@kevinwolfdev](https://github.com/kevinwolfdev))
210
211---
212
213# v9.34.0 (Tue May 19 2020)
214
215#### 🚀 Enhancement
216
217- allow more rc file types [#1235](https://github.com/intuit/auto/pull/1235) ([@hipstersmoothie](https://github.com/hipstersmoothie))
218
219#### 🐛 Bug Fix
220
221- allow more rc file types ([@hipstersmoothie](https://github.com/hipstersmoothie))
222
223#### 🔩 Dependency Updates
224
225- Bump lerna from 3.20.2 to 3.21.0 [#1232](https://github.com/intuit/auto/pull/1232) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
226- Bump io-ts from 2.2.1 to 2.2.2 [#1231](https://github.com/intuit/auto/pull/1231) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
227- Bump @typescript-eslint/parser from 2.31.0 to 2.34.0 [#1230](https://github.com/intuit/auto/pull/1230) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
228- Bump eslint-plugin-jsdoc from 25.2.0 to 25.4.2 [#1229](https://github.com/intuit/auto/pull/1229) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
229- Bump eslint-plugin-jest from 23.9.0 to 23.13.1 [#1228](https://github.com/intuit/auto/pull/1228) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
230
231#### 🏠 Internal
232
233- add test that ensure bundled auto still works [#1226](https://github.com/intuit/auto/pull/1226) ([@hipstersmoothie](https://github.com/hipstersmoothie))
234
235#### Authors: 2
236
237- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
238- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
239
240---
241
242# v9.33.0 (Mon May 18 2020)
243
244#### 🚀 Enhancement
245
246- 💎 Ruby Gem Plugin [#1217](https://github.com/intuit/auto/pull/1217) ([@hipstersmoothie](https://github.com/hipstersmoothie))
247
248#### 🐛 Bug Fix
249
250- fix(shipit): correct variable name isBaseBranch ([@bmuenzenmeyer](https://github.com/bmuenzenmeyer))
251- remove dep on octokit types ([@hipstersmoothie](https://github.com/hipstersmoothie))
252- finish octokit 17 upgrade ([@hipstersmoothie](https://github.com/hipstersmoothie))
253- build almost works ([@hipstersmoothie](https://github.com/hipstersmoothie))
254- Bump @octokit/rest from 16.43.1 to 17.2.1 ([@hipstersmoothie](https://github.com/hipstersmoothie))
255- fix lint ([@hipstersmoothie](https://github.com/hipstersmoothie))
256- add gem plugin ([@hipstersmoothie](https://github.com/hipstersmoothie))
257
258#### 🔩 Dependency Updates
259
260- Bump @octokit/rest from 16.43.1 to 17.2.1 [#1146](https://github.com/intuit/auto/pull/1146) ([@hipstersmoothie](https://github.com/hipstersmoothie) [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
261- Bump eslint-plugin-jsdoc from 24.0.0 to 25.2.0 [#1211](https://github.com/intuit/auto/pull/1211) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
262- [Security] Bump handlebars from 4.5.3 to 4.7.6 [#1213](https://github.com/intuit/auto/pull/1213) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
263
264#### 🏠 Internal
265
266- fix(shipit): correct variable name isBaseBranch [#1223](https://github.com/intuit/auto/pull/1223) ([@bmuenzenmeyer](https://github.com/bmuenzenmeyer))
267
268#### Authors: 3
269
270- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
271- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
272- Brian Muenzenmeyer ([@bmuenzenmeyer](https://github.com/bmuenzenmeyer))
273
274---
275
276# v9.32.1 (Fri May 15 2020)
277
278:tada: This release contains work from a new contributor! :tada:
279
280Thank you, Till Weisser ([@whynotzoidberg](https://github.com/whynotzoidberg)), for all your work!
281
282#### 🐛 Bug Fix
283
284- Increase gitlog maximum buffer size to Infinity [#1212](https://github.com/intuit/auto/pull/1212) ([@whynotzoidberg](https://github.com/whynotzoidberg))
285- Increase gitlog maximum buffer size to Infinity ([@whynotzoidberg](https://github.com/whynotzoidberg))
286
287#### 🔩 Dependency Updates
288
289- Bump fp-ts from 2.5.4 to 2.6.0 [#1209](https://github.com/intuit/auto/pull/1209) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
290- Bump ts-jest from 25.4.0 to 25.5.1 [#1208](https://github.com/intuit/auto/pull/1208) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
291
292#### Authors: 2
293
294- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
295- Till Weisser ([@whynotzoidberg](https://github.com/whynotzoidberg))
296
297---
298
299# v9.31.2 (Mon May 11 2020)
300
301#### 🐛 Bug Fix
302
303- fix(auto): correct git porcelain error message [#1207](https://github.com/intuit/auto/pull/1207) ([@bmuenzenmeyer](https://github.com/bmuenzenmeyer))
304- fix(auto): correct git porcelain error message ([@bmuenzenmeyer](https://github.com/bmuenzenmeyer))
305
306#### 🔩 Dependency Updates
307
308- Bump @typescript-eslint/parser from 2.27.0 to 2.31.0 [#1198](https://github.com/intuit/auto/pull/1198) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
309- Bump eslint-config-prettier from 6.10.1 to 6.11.0 [#1197](https://github.com/intuit/auto/pull/1197) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
310- Bump jest from 25.4.0 to 25.5.4 [#1196](https://github.com/intuit/auto/pull/1196) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
311- Bump eslint-plugin-jest from 23.8.2 to 23.9.0 [#1195](https://github.com/intuit/auto/pull/1195) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
312- Bump @typescript-eslint/eslint-plugin from 2.27.0 to 2.31.0 [#1199](https://github.com/intuit/auto/pull/1199) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
313- Bump semver from 7.2.2 to 7.3.2 [#1200](https://github.com/intuit/auto/pull/1200) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
314- Bump pkg from 4.4.7 to 4.4.8 [#1201](https://github.com/intuit/auto/pull/1201) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
315- Bump file-type from 14.2.0 to 14.3.0 [#1202](https://github.com/intuit/auto/pull/1202) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
316- Bump prettier from 2.0.4 to 2.0.5 [#1203](https://github.com/intuit/auto/pull/1203) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
317
318#### Authors: 2
319
320- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
321- Brian Muenzenmeyer ([@bmuenzenmeyer](https://github.com/bmuenzenmeyer))
322
323---
324
325# v9.31.0 (Mon May 04 2020)
326
327#### 🚀 Enhancement
328
329- add --no-changelog option [#1193](https://github.com/intuit/auto/pull/1193) ([@hipstersmoothie](https://github.com/hipstersmoothie))
330
331#### 🐛 Bug Fix
332
333- add --no-changelog option ([@hipstersmoothie](https://github.com/hipstersmoothie))
334
335#### Authors: 1
336
337- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
338
339---
340
341# v9.30.5 (Sat May 02 2020)
342
343#### 🐛 Bug Fix
344
345- Fix PR detection bug [#1191](https://github.com/intuit/auto/pull/1191) ([@hipstersmoothie](https://github.com/hipstersmoothie))
346- make sure number exists to avoid "undefined" string ([@hipstersmoothie](https://github.com/hipstersmoothie))
347
348#### Authors: 1
349
350- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
351
352---
353
354# v9.30.4 (Sat May 02 2020)
355
356#### 🐛 Bug Fix
357
358- fix npm canary release w/o any tags [#1188](https://github.com/intuit/auto/pull/1188) ([@hipstersmoothie](https://github.com/hipstersmoothie))
359- improve error stack ([@hipstersmoothie](https://github.com/hipstersmoothie))
360- Bump @types/node-fetch from 2.5.5 to 2.5.7 ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
361- Bump log-symbols from 3.0.0 to 4.0.0 ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
362
363#### 🔩 Dependency Updates
364
365- Bump log-symbols from 3.0.0 to 4.0.0 [#1178](https://github.com/intuit/auto/pull/1178) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
366- Bump jest from 25.1.0 to 25.4.0 [#1183](https://github.com/intuit/auto/pull/1183) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
367- Bump @types/node-fetch from 2.5.5 to 2.5.7 [#1182](https://github.com/intuit/auto/pull/1182) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
368- Bump file-type from 14.1.4 to 14.2.0 [#1181](https://github.com/intuit/auto/pull/1181) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
369- Bump ts-jest from 25.3.0 to 25.4.0 [#1180](https://github.com/intuit/auto/pull/1180) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
370- Bump lint-staged from 10.1.6 to 10.1.7 [#1179](https://github.com/intuit/auto/pull/1179) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
371- Bump all-contributors-cli from 6.14.1 to 6.14.2 [#1177](https://github.com/intuit/auto/pull/1177) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
372- Bump @types/node from 13.11.0 to 13.13.4 [#1176](https://github.com/intuit/auto/pull/1176) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
373- Bump fp-ts from 2.5.3 to 2.5.4 [#1175](https://github.com/intuit/auto/pull/1175) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
374
375#### Authors: 2
376
377- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
378- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
379
380---
381
382# v9.30.0 (Wed Apr 22 2020)
383
384#### 🐛 Bug Fix
385
386- Bump endent from 1.4.1 to 2.0.1 ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
387
388#### 🔩 Dependency Updates
389
390- Bump lint-staged from 10.0.8 to 10.1.6 [#1167](https://github.com/intuit/auto/pull/1167) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
391- Bump @fortawesome/free-solid-svg-icons from 5.12.1 to 5.13.0 [#1169](https://github.com/intuit/auto/pull/1169) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
392- Bump @types/signale from 1.4.0 to 1.4.1 [#1168](https://github.com/intuit/auto/pull/1168) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
393- Bump endent from 1.4.1 to 2.0.1 [#1166](https://github.com/intuit/auto/pull/1166) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
394- Bump eslint-plugin-prettier from 3.1.2 to 3.1.3 [#1165](https://github.com/intuit/auto/pull/1165) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
395- Bump eslint-plugin-import from 2.20.1 to 2.20.2 [#1164](https://github.com/intuit/auto/pull/1164) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
396- Bump io-ts from 2.1.2 to 2.2.1 [#1163](https://github.com/intuit/auto/pull/1163) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
397- Bump eslint-plugin-jsdoc from 22.1.0 to 24.0.0 [#1162](https://github.com/intuit/auto/pull/1162) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
398
399#### Authors: 1
400
401- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
402
403---
404
405# v9.28.3 (Mon Apr 20 2020)
406
407#### 🐛 Bug Fix
408
409- fix quiet flag in npm plugin. was always on [#1161](https://github.com/intuit/auto/pull/1161) ([@hipstersmoothie](https://github.com/hipstersmoothie))
410
411#### Authors: 1
412
413- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
414
415---
416
417# v9.28.2 (Mon Apr 20 2020)
418
419#### 🐛 Bug Fix
420
421- bug in silent flag [#1160](https://github.com/intuit/auto/pull/1160) ([@hipstersmoothie](https://github.com/hipstersmoothie))
422
423#### Authors: 1
424
425- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
426
427---
428
429# v9.28.1 (Mon Apr 20 2020)
430
431#### 🐛 Bug Fix
432
433- add verbose logs when branch is behind [#1159](https://github.com/intuit/auto/pull/1159) ([@hipstersmoothie](https://github.com/hipstersmoothie))
434- add verbose logs when branch is behind ([@hipstersmoothie](https://github.com/hipstersmoothie))
435
436#### Authors: 1
437
438- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
439
440---
441
442# v9.28.0 (Fri Apr 17 2020)
443
444#### 🚀 Enhancement
445
446- Add --quiet flag [#1155](https://github.com/intuit/auto/pull/1155) ([@hipstersmoothie](https://github.com/hipstersmoothie))
447
448#### 🐛 Bug Fix
449
450- fix tests ([@hipstersmoothie](https://github.com/hipstersmoothie))
451- factor out reset into util ([@hipstersmoothie](https://github.com/hipstersmoothie))
452- better -dq logs for canary and next ([@hipstersmoothie](https://github.com/hipstersmoothie))
453- add quiet flag ([@hipstersmoothie](https://github.com/hipstersmoothie))
454
455#### Authors: 1
456
457- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
458
459---
460
461# v9.27.3 (Thu Apr 16 2020)
462
463#### 🐛 Bug Fix
464
465- upload-assets: update deprecated option [#1152](https://github.com/intuit/auto/pull/1152) ([@hipstersmoothie](https://github.com/hipstersmoothie))
466- update tests ([@hipstersmoothie](https://github.com/hipstersmoothie))
467- print link to release ([@hipstersmoothie](https://github.com/hipstersmoothie))
468
469#### Authors: 1
470
471- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
472
473---
474
475# v9.27.0 (Tue Apr 14 2020)
476
477#### 🐛 Bug Fix
478
479- update gitlog ([@hipstersmoothie](https://github.com/hipstersmoothie))
480- unneeded ts-ignore ([@hipstersmoothie](https://github.com/hipstersmoothie))
481- update enquirer usage ([@hipstersmoothie](https://github.com/hipstersmoothie))
482- Bump chalk from 3.0.0 to 4.0.0 ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
483
484#### 🔩 Dependency Updates
485
486- Bump gitlog from 3.3.4 to 4.0.0 [#1145](https://github.com/intuit/auto/pull/1145) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
487- Bump typescript from 3.7.5 to 3.8.3 [#1045](https://github.com/intuit/auto/pull/1045) ([@hipstersmoothie](https://github.com/hipstersmoothie) [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
488- Bump pkg from 4.4.6 to 4.4.7 [#1143](https://github.com/intuit/auto/pull/1143) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
489- Bump @typescript-eslint/eslint-plugin from 2.26.0 to 2.27.0 [#1139](https://github.com/intuit/auto/pull/1139) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
490- Bump chalk from 3.0.0 to 4.0.0 [#1140](https://github.com/intuit/auto/pull/1140) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
491
492#### Authors: 2
493
494- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
495- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
496
497---
498
499# v9.26.8 (Wed Apr 08 2020)
500
501#### 🐛 Bug Fix
502
503- Fix omitting merges from master into next when running "shipit" [#1137](https://github.com/intuit/auto/pull/1137) ([@hipstersmoothie](https://github.com/hipstersmoothie))
504- recreate logparse every time so we can dynamically tap ti ([@hipstersmoothie](https://github.com/hipstersmoothie))
505- improve release note logging ([@hipstersmoothie](https://github.com/hipstersmoothie))
506- reset git changes after next/canary ([@hipstersmoothie](https://github.com/hipstersmoothie))
507
508#### Authors: 1
509
510- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
511
512---
513
514# v9.26.7 (Tue Apr 07 2020)
515
516#### 🐛 Bug Fix
517
518- Skip next commit hooks [#1136](https://github.com/intuit/auto/pull/1136) ([@hipstersmoothie](https://github.com/hipstersmoothie))
519- dont run commit hooks when publishing next ([@hipstersmoothie](https://github.com/hipstersmoothie))
520- testing ([@hipstersmoothie](https://github.com/hipstersmoothie))
521
522#### Authors: 1
523
524- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
525
526---
527
528# v9.26.6 (Tue Apr 07 2020)
529
530#### 🐛 Bug Fix
531
532- Next improvements [#1135](https://github.com/intuit/auto/pull/1135) ([@hipstersmoothie](https://github.com/hipstersmoothie))
533- fix tests ([@hipstersmoothie](https://github.com/hipstersmoothie))
534- use TS-refactor of gitlog ([@hipstersmoothie](https://github.com/hipstersmoothie))
535- omit merge commits from next changelog ([@hipstersmoothie](https://github.com/hipstersmoothie))
536- combine duplicate merge commits ([@hipstersmoothie](https://github.com/hipstersmoothie))
537- dont omit unreleased commits ([@hipstersmoothie](https://github.com/hipstersmoothie))
538
539#### Authors: 1
540
541- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
542
543---
544
545# v9.26.5 (Tue Apr 07 2020)
546
547#### 🐛 Bug Fix
548
549- fix creating canary with no Latest Release [#1134](https://github.com/intuit/auto/pull/1134) ([@hipstersmoothie](https://github.com/hipstersmoothie))
550
551#### Authors: 1
552
553- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
554
555---
556
557# v9.26.4 (Mon Apr 06 2020)
558
559#### 🐛 Bug Fix
560
561- pr-check: succeed on pre-release branch PRs [#1133](https://github.com/intuit/auto/pull/1133) ([@hipstersmoothie](https://github.com/hipstersmoothie))
562
563#### Authors: 1
564
565- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
566
567---
568
569# v9.26.3 (Mon Apr 06 2020)
570
571#### 🐛 Bug Fix
572
573- Improve next branch preview changelog [#1132](https://github.com/intuit/auto/pull/1132) ([@hipstersmoothie](https://github.com/hipstersmoothie))
574
575#### 🔩 Dependency Updates
576
577- Bump @types/jest from 25.1.4 to 25.2.1 [#1130](https://github.com/intuit/auto/pull/1130) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
578- Bump graphql from 14.6.0 to 15.0.0 [#1129](https://github.com/intuit/auto/pull/1129) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
579
580#### Authors: 2
581
582- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
583- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
584
585---
586
587# v9.26.2 (Mon Apr 06 2020)
588
589#### 🐛 Bug Fix
590
591- ensure commits pushed directly to next branch are labelled correctly in next-PR changelog [#1123](https://github.com/intuit/auto/pull/1123) ([@hipstersmoothie](https://github.com/hipstersmoothie))
592
593#### Authors: 1
594
595- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
596
597---
598
599# v9.26.1 (Sun Apr 05 2020)
600
601#### 🐛 Bug Fix
602
603- fix: push to master w/--only-publish-with-release-label creating release [#1121](https://github.com/intuit/auto/pull/1121) ([@hipstersmoothie](https://github.com/hipstersmoothie))
604
605#### Authors: 1
606
607- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
608
609---
610
611# v9.26.0 (Sun Apr 05 2020)
612
613#### 🚀 Enhancement
614
615- Add most flags for version+changelog+release to shipit/latest [#1117](https://github.com/intuit/auto/pull/1117) ([@hipstersmoothie](https://github.com/hipstersmoothie))
616
617#### Authors: 1
618
619- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
620
621---
622
623# v9.25.4 (Sat Apr 04 2020)
624
625#### 🐛 Bug Fix
626
627- include first commit in changelogs [#1115](https://github.com/intuit/auto/pull/1115) ([@hipstersmoothie](https://github.com/hipstersmoothie))
628
629#### Authors: 1
630
631- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
632
633---
634
635# v9.25.3 (Sat Apr 04 2020)
636
637#### 🐛 Bug Fix
638
639- --dry-run improvements [#1114](https://github.com/intuit/auto/pull/1114) ([@hipstersmoothie](https://github.com/hipstersmoothie))
640
641#### 🏠 Internal
642
643- Turn on eslint rules that would have prevented last bug [#1112](https://github.com/intuit/auto/pull/1112) ([@hipstersmoothie](https://github.com/hipstersmoothie))
644
645#### Authors: 1
646
647- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
648
649---
650
651# v9.25.2 (Fri Apr 03 2020)
652
653#### 🐛 Bug Fix
654
655- Changelog bugs [#1111](https://github.com/intuit/auto/pull/1111) ([@hipstersmoothie](https://github.com/hipstersmoothie))
656
657#### Authors: 1
658
659- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
660
661---
662
663# v9.25.1 (Fri Apr 03 2020)
664
665#### 🐛 Bug Fix
666
667- Fix info command in fresh envs + list plugins in binary [#1110](https://github.com/intuit/auto/pull/1110) ([@hipstersmoothie](https://github.com/hipstersmoothie))
668
669#### Authors: 1
670
671- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
672
673---
674
675# v9.25.0 (Thu Apr 02 2020)
676
677#### 🚀 Enhancement
678
679- shipit: expose --only-publish-with-release-label [#1108](https://github.com/intuit/auto/pull/1108) ([@hipstersmoothie](https://github.com/hipstersmoothie))
680
681#### Authors: 1
682
683- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
684
685---
686
687# v9.24.0 (Thu Apr 02 2020)
688
689#### 🚀 Enhancement
690
691- Add `--list-plugins` flag to `info` command [#1103](https://github.com/intuit/auto/pull/1103) ([@hipstersmoothie](https://github.com/hipstersmoothie))
692
693#### Authors: 1
694
695- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
696
697---
698
699# v9.23.1 (Thu Apr 02 2020)
700
701#### 🐛 Bug Fix
702
703- next: add whitspace so markdown formats correctly [#1104](https://github.com/intuit/auto/pull/1104) ([@hipstersmoothie](https://github.com/hipstersmoothie))
704
705#### Authors: 1
706
707- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
708
709---
710
711# v9.23.0 (Wed Apr 01 2020)
712
713#### 🚀 Enhancement
714
715- Add Brew Plugin [#1099](https://github.com/intuit/auto/pull/1099) ([@hipstersmoothie](https://github.com/hipstersmoothie))
716
717#### Authors: 1
718
719- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
720
721---
722
723# v9.22.3 (Wed Apr 01 2020)
724
725#### 🔩 Dependency Updates
726
727- Bump @octokit/plugin-enterprise-compatibility from 1.2.1 to 1.2.2 [#1087](https://github.com/intuit/auto/pull/1087) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
728
729#### Authors: 1
730
731- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
732
733---
734
735# v9.22.1 (Fri Mar 27 2020)
736
737#### 🐛 Bug Fix
738
739- Exit with warning when canary or next is unimplemented [#1085](https://github.com/intuit/auto/pull/1085) ([@hipstersmoothie](https://github.com/hipstersmoothie))
740
741#### Authors: 1
742
743- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
744
745---
746
747# v9.22.0 (Fri Mar 27 2020)
748
749#### 🚀 Enhancement
750
751- Add --title flag to 'auto changelog' [#1084](https://github.com/intuit/auto/pull/1084) ([@hipstersmoothie](https://github.com/hipstersmoothie))
752
753#### Authors: 1
754
755- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
756
757---
758
759# v9.21.2 (Fri Mar 27 2020)
760
761#### 🐛 Bug Fix
762
763- always use tag version for release title, prevent using annotation [#1083](https://github.com/intuit/auto/pull/1083) ([@hipstersmoothie](https://github.com/hipstersmoothie))
764
765#### Authors: 1
766
767- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
768
769---
770
771# v9.21.1 (Fri Mar 27 2020)
772
773#### 🐛 Bug Fix
774
775- Respect Updated PR Titles [#1082](https://github.com/intuit/auto/pull/1082) ([@hipstersmoothie](https://github.com/hipstersmoothie))
776
777#### Authors: 1
778
779- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
780
781---
782
783# v9.20.0 (Wed Mar 18 2020)
784
785:tada: This release contains work from a new contributor! :tada:
786
787Thank you, Harris Borawski ([@hborawski](https://github.com/hborawski)), for all your work!
788
789#### 🚀 Enhancement
790
791- Cocoapods plugin [#1066](https://github.com/intuit/auto/pull/1066) ([@hborawski](https://github.com/hborawski) [@hipstersmoothie](https://github.com/hipstersmoothie))
792
793#### Authors: 2
794
795- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
796- Harris Borawski ([@hborawski](https://github.com/hborawski))
797
798---
799
800# v9.19.4 (Tue Mar 10 2020)
801
802#### 🔩 Dependency Updates
803
804- Bump @octokit/core from 2.4.0 to 2.4.2 [#1046](https://github.com/intuit/auto/pull/1046) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
805- Bump @types/jest from 24.0.25 to 25.1.4 [#1041](https://github.com/intuit/auto/pull/1041) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
806
807#### Authors: 1
808
809- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
810
811---
812
813# v9.19.3 (Mon Mar 09 2020)
814
815#### 🐛 Bug Fix
816
817- try credentialed remotes first [#1039](https://github.com/intuit/auto/pull/1039) ([@hipstersmoothie](https://github.com/hipstersmoothie))
818
819#### Authors: 1
820
821- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
822
823---
824
825# v9.19.2 (Sun Mar 08 2020)
826
827#### 🐛 Bug Fix
828
829- When checking if remote commits ignore git error message [#1038](https://github.com/intuit/auto/pull/1038) ([@hipstersmoothie](https://github.com/hipstersmoothie))
830
831#### Authors: 1
832
833- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
834
835---
836
837# v9.19.1 (Sat Mar 07 2020)
838
839#### 🐛 Bug Fix
840
841- Better GitHub Actions support + docs for github action + handle GITHUB_TOKEN [#1036](https://github.com/intuit/auto/pull/1036) ([@hipstersmoothie](https://github.com/hipstersmoothie))
842
843#### Authors: 1
844
845- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
846
847---
848
849# v9.19.0 (Sat Mar 07 2020)
850
851### Release Notes
852
853_From #996_
854
855The `gradle` plugin has enabled many Java and Android engineers to automate the versioning of their projects. While the old `gradle` plugin's features were primarily targeted at app developers, this release brings features that make `auto` ergonomic for library authors! :tada:
856
857## `-SNAPSHOT` Versioning
858
859A common versioning pattern for java projects is `-SNAPSHOT` Versioning. It is especially helpful for library authors and helps with testing their libraries.
860
861All you have to do to start using this feature is add `-SNAPSHOT` to your version in `build.gradle` or `gradle.properties` and `auto` will start using`-snapshot` Versioning. If you want to configure the snapshot suffix just set `snapshotSuffix` in `gradle.properties`.
862
863## Publish Support
864
865Another useful feature for library authors, `auto` will now call the `publish` task if it is configured for your project. :rocket:
866
867## `versionFile` deprecation
868
869Previously this plugin had to use a `versionFile` to keep track of the version of the project. Now it will parse the `gradle properties` command for this information.
870
871This is not a breaking change, you'll just have an extra file you can delete
872
873---
874
875#### 🚀 Enhancement
876
877- 🐘 Gradle Plugin: Add support for snapshot versioning, publishing, and less configuration [#996](https://github.com/intuit/auto/pull/996) ([@sugarmanz](https://github.com/sugarmanz) Jeremiah_Zucker@Intuit.com [@hipstersmoothie](https://github.com/hipstersmoothie))
878
879#### Authors: 3
880
881- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
882- Jeremiah (Jeremiah_Zucker@Intuit.com)
883- Jeremiah Zucker ([@sugarmanz](https://github.com/sugarmanz))
884
885---
886
887# v9.18.0 (Sat Mar 07 2020)
888
889### Release Notes
890
891_From #1033_
892
893Install `@auto-it/exec` to easily run bash scripts during the `auto` release pipeline! Right now it doesn't handle every hook in `auto` but it exposes enough to quickly write plugins.
894
895```jsonc
896{
897 "plugins": [
898 [
899 "exec",
900 {
901 "afterShipIt": "echo 'Do something cool'"
902 }
903 ]
904 // other plugins
905 ]
906}
907```
908
909Here is an example of a super light weight version of the `npm` and `gh-pages` plugins (Note: This misses out on a lot of features that are in the official plugins)
910
911```jsonc
912{
913 "plugins": [
914 [
915 "exec",
916 {
917 "version": "npm version $ARG_0",
918 "publish": "npm publish && git push --tags",
919 "afterRelease": "yarn docs && push-dir --dir=docs --branch=gh-pages"
920 }
921 ]
922 // other plugins
923 ]
924}
925```
926
927---
928
929#### 🚀 Enhancement
930
931- Add Exec Plugin [#1033](https://github.com/intuit/auto/pull/1033) ([@hipstersmoothie](https://github.com/hipstersmoothie))
932
933#### Authors: 1
934
935- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
936
937---
938
939# v9.17.1 (Fri Mar 06 2020)
940
941#### 🐛 Bug Fix
942
943- 📦 🐈 Yarn 2 Compatibility [#1029](https://github.com/intuit/auto/pull/1029) ([@hipstersmoothie](https://github.com/hipstersmoothie))
944
945#### Authors: 1
946
947- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
948
949---
950
951# v9.17.0 (Fri Mar 06 2020)
952
953#### 🚀 Enhancement
954
955- Add GitHub Pages Plugin [#1031](https://github.com/intuit/auto/pull/1031) ([@hipstersmoothie](https://github.com/hipstersmoothie))
956
957#### Authors: 1
958
959- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
960
961---
962
963# v9.16.7 (Fri Mar 06 2020)
964
965#### 🐛 Bug Fix
966
967- "version" would be wrong with label-less PRs + 'none' release types [#1032](https://github.com/intuit/auto/pull/1032) ([@hipstersmoothie](https://github.com/hipstersmoothie))
968
969#### Authors: 1
970
971- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
972
973---
974
975# v9.16.6 (Thu Mar 05 2020)
976
977#### 🐛 Bug Fix
978
979- add dep for parse-github-url ([@hipstersmoothie](https://github.com/hipstersmoothie))
980
981#### Authors: 1
982
983- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
984
985---
986
987# v9.16.5 (Thu Mar 05 2020)
988
989#### 🐛 Bug Fix
990
991- add bot-list dep to core ([@hipstersmoothie](https://github.com/hipstersmoothie))
992
993#### Authors: 1
994
995- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
996
997---
998
999# v9.16.4 (Thu Mar 05 2020)
1000
1001#### 🐛 Bug Fix
1002
1003- Make gitlog include merge commit files [#1028](https://github.com/intuit/auto/pull/1028) ([@hipstersmoothie](https://github.com/hipstersmoothie))
1004
1005#### Authors: 1
1006
1007- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1008
1009---
1010
1011# v9.16.0 (Thu Mar 05 2020)
1012
1013#### 🐛 Bug Fix
1014
1015- fix tests ([@hipstersmoothie](https://github.com/hipstersmoothie))
1016
1017#### Authors: 1
1018
1019- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1020
1021---
1022
1023# v9.15.10 (Thu Mar 05 2020)
1024
1025#### 🐛 Bug Fix
1026
1027- Fix loading canary versions of offical plugins ([@hipstersmoothie](https://github.com/hipstersmoothie))
1028
1029#### Authors: 1
1030
1031- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1032
1033---
1034
1035# v9.15.9 (Thu Mar 05 2020)
1036
1037#### 🐛 Bug Fix
1038
1039- fix typo ([@hipstersmoothie](https://github.com/hipstersmoothie))
1040- no need for 2 try/catches ([@hipstersmoothie](https://github.com/hipstersmoothie))
1041- better comment ([@hipstersmoothie](https://github.com/hipstersmoothie))
1042- test for ancestor in windows freindly way ([@hipstersmoothie](https://github.com/hipstersmoothie))
1043
1044#### Authors: 1
1045
1046- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1047
1048---
1049
1050# v9.15.7 (Tue Mar 03 2020)
1051
1052#### 🐛 Bug Fix
1053
1054- add license to all sub-packages ([@hipstersmoothie](https://github.com/hipstersmoothie))
1055
1056#### Authors: 1
1057
1058- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1059
1060---
1061
1062# v9.15.6 (Tue Mar 03 2020)
1063
1064#### 🐛 Bug Fix
1065
1066- format ([@hipstersmoothie](https://github.com/hipstersmoothie))
1067- info: handle when there is no previous version ([@hipstersmoothie](https://github.com/hipstersmoothie))
1068
1069#### Authors: 1
1070
1071- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1072
1073---
1074
1075# v9.15.5 (Tue Mar 03 2020)
1076
1077#### 🐛 Bug Fix
1078
1079- fix "Push to master" on next branch ([@hipstersmoothie](https://github.com/hipstersmoothie))
1080
1081#### Authors: 1
1082
1083- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1084
1085---
1086
1087# v9.15.4 (Mon Mar 02 2020)
1088
1089#### 🐛 Bug Fix
1090
1091- update tests ([@hipstersmoothie](https://github.com/hipstersmoothie))
1092- make --force configurable in the .autorc ([@hipstersmoothie](https://github.com/hipstersmoothie))
1093- fix lint ([@hipstersmoothie](https://github.com/hipstersmoothie))
1094- Don't release canary on skip-release by default, add force flag ([@hipstersmoothie](https://github.com/hipstersmoothie))
1095
1096#### Authors: 1
1097
1098- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1099
1100---
1101
1102# v9.15.3 (Mon Mar 02 2020)
1103
1104#### 🐛 Bug Fix
1105
1106- don't force publish canary/next for independent lerna projects ([@hipstersmoothie](https://github.com/hipstersmoothie))
1107- Bump @types/node-fetch from 2.5.4 to 2.5.5
1108
1109Bumps [@types/node-fetch](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node-fetch) from 2.5.4 to 2.5.5.
1110
1111- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
1112- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node-fetch)
1113
1114Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1115
1116- Bump tslib from 1.11.0 to 1.11.1
1117
1118Bumps [tslib](https://github.com/Microsoft/tslib) from 1.11.0 to 1.11.1.
1119
1120- [Release notes](https://github.com/Microsoft/tslib/releases)
1121- [Commits](https://github.com/Microsoft/tslib/compare/1.11.0...1.11.1)
1122
1123Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1124
1125#### Authors: 2
1126
1127- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
1128- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1129
1130---
1131
1132# v9.15.1 (Sun Mar 01 2020)
1133
1134#### 🐛 Bug Fix
1135
1136- only get default config in command that allow it, enables shipit to easily use sub-commands configs ([@hipstersmoothie](https://github.com/hipstersmoothie))
1137
1138#### Authors: 1
1139
1140- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1141
1142---
1143
1144# v9.15.0 (Sun Mar 01 2020)
1145
1146#### 🐛 Bug Fix
1147
1148- use fromEntries ponyfill until node 10 EOL ([@hipstersmoothie](https://github.com/hipstersmoothie))
1149- don't valide config with flag overrides ([@hipstersmoothie](https://github.com/hipstersmoothie))
1150- enable autorc configuration for some command flags ([@hipstersmoothie](https://github.com/hipstersmoothie))
1151- dont include intersections in valdation error path ([@hipstersmoothie](https://github.com/hipstersmoothie))
1152- dont match none labels. this fixes bug where releaseType none labels would get the internal label's description ([@hipstersmoothie](https://github.com/hipstersmoothie))
1153- fix label ordering for validation error paths ([@hipstersmoothie](https://github.com/hipstersmoothie))
1154- strip ansi codes from snapshots ([@hipstersmoothie](https://github.com/hipstersmoothie))
1155- layout validaiton erros with more space ([@hipstersmoothie](https://github.com/hipstersmoothie))
1156- fix tests ([@hipstersmoothie](https://github.com/hipstersmoothie))
1157- validate fully loaded configuration ([@hipstersmoothie](https://github.com/hipstersmoothie))
1158- print objects better ([@hipstersmoothie](https://github.com/hipstersmoothie))
1159- print arrays better ([@hipstersmoothie](https://github.com/hipstersmoothie))
1160- dont report redundant errors ([@hipstersmoothie](https://github.com/hipstersmoothie))
1161- add test to ensure command configuration doesn't throw errors ([@hipstersmoothie](https://github.com/hipstersmoothie))
1162- fix lint ([@hipstersmoothie](https://github.com/hipstersmoothie))
1163- add test to make sure auto exits with configuration errors ([@hipstersmoothie](https://github.com/hipstersmoothie))
1164- fix old tests ([@hipstersmoothie](https://github.com/hipstersmoothie))
1165- validate raw config ([@hipstersmoothie](https://github.com/hipstersmoothie))
1166- fix union type overriding ([@hipstersmoothie](https://github.com/hipstersmoothie))
1167- get array of objects working ([@hipstersmoothie](https://github.com/hipstersmoothie))
1168- recursively convert type to exact ([@hipstersmoothie](https://github.com/hipstersmoothie))
1169- make plugin configuration helper util ([@hipstersmoothie](https://github.com/hipstersmoothie))
1170- exit on invalid config ([@hipstersmoothie](https://github.com/hipstersmoothie))
1171- when validating stop at unknown top level keys ([@hipstersmoothie](https://github.com/hipstersmoothie))
1172- remove dead code, was never used anywher ([@hipstersmoothie](https://github.com/hipstersmoothie))
1173- validate autorc configuration + add validateConfig hook for plugins ([@hipstersmoothie](https://github.com/hipstersmoothie))
1174- refactor autorc type ([@hipstersmoothie](https://github.com/hipstersmoothie))
1175
1176#### Authors: 1
1177
1178- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1179
1180---
1181
1182# v9.14.0 (Tue Feb 25 2020)
1183
1184#### 🐛 Bug Fix
1185
1186- add scoped plugin support ([@hipstersmoothie](https://github.com/hipstersmoothie))
1187
1188#### Authors: 1
1189
1190- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1191
1192---
1193
1194# v9.13.1 (Mon Feb 24 2020)
1195
1196#### 🐛 Bug Fix
1197
1198- add fallback for when --is-ancestor fails ([@hipstersmoothie](https://github.com/hipstersmoothie))
1199- Bump tslib from 1.10.0 to 1.11.0
1200
1201Bumps [tslib](https://github.com/Microsoft/tslib) from 1.10.0 to 1.11.0.
1202
1203- [Release notes](https://github.com/Microsoft/tslib/releases)
1204- [Commits](https://github.com/Microsoft/tslib/compare/1.10.0...1.11.0)
1205
1206Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1207
1208#### Authors: 2
1209
1210- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
1211- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1212
1213---
1214
1215# v9.13.0 (Sat Feb 22 2020)
1216
1217#### 🐛 Bug Fix
1218
1219- When parsing owner/repo fallback to parsing 'origin' ([@hipstersmoothie](https://github.com/hipstersmoothie))
1220- add git version to 'auto info' output
1221
1222! ([@hipstersmoothie](https://github.com/hipstersmoothie))
1223
1224#### Authors: 1
1225
1226- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1227
1228---
1229
1230# v9.12.0 (Fri Feb 21 2020)
1231
1232#### 🐛 Bug Fix
1233
1234- add tests ([@hipstersmoothie](https://github.com/hipstersmoothie))
1235- ensure remote can be pushed to ([@hipstersmoothie](https://github.com/hipstersmoothie))
1236
1237#### Authors: 1
1238
1239- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1240
1241---
1242
1243# v9.11.0 (Fri Feb 21 2020)
1244
1245#### 🐛 Bug Fix
1246
1247- Add new command 'latest' for easier testing and more flexibility ([@hipstersmoothie](https://github.com/hipstersmoothie))
1248
1249#### Authors: 1
1250
1251- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1252
1253---
1254
1255# v9.10.8 (Fri Feb 21 2020)
1256
1257#### 🐛 Bug Fix
1258
1259- configure agent on request ([@hipstersmoothie](https://github.com/hipstersmoothie))
1260- Adding proxyagent to graphql ([@YogiKhan](https://github.com/YogiKhan))
1261
1262#### Authors: 2
1263
1264- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1265- yogesh khandelwal ([@YogiKhan](https://github.com/YogiKhan))
1266
1267---
1268
1269# v9.10.7 (Tue Feb 18 2020)
1270
1271#### 🐛 Bug Fix
1272
1273- filter out bots in first-time contributor plugins ([@hipstersmoothie](https://github.com/hipstersmoothie))
1274
1275#### Authors: 1
1276
1277- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1278
1279---
1280
1281# v9.10.6 (Mon Feb 17 2020)
1282
1283:tada: This release contains work from a new contributor! :tada:
1284
1285Thank you, null[@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]), for all your work!
1286
1287#### 🐛 Bug Fix
1288
1289- get node version in crash friendly way ([@hipstersmoothie](https://github.com/hipstersmoothie))
1290- fix build ([@hipstersmoothie](https://github.com/hipstersmoothie))
1291- Bump https-proxy-agent from 4.0.0 to 5.0.0
1292
1293Bumps [https-proxy-agent](https://github.com/TooTallNate/node-https-proxy-agent) from 4.0.0 to 5.0.0.
1294
1295- [Release notes](https://github.com/TooTallNate/node-https-proxy-agent/releases)
1296- [Commits](https://github.com/TooTallNate/node-https-proxy-agent/compare/4.0.0...5.0.0)
1297
1298Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1299
1300- Bump @octokit/core from 2.2.0 to 2.4.0
1301
1302Bumps [@octokit/core](https://github.com/octokit/core.js) from 2.2.0 to 2.4.0.
1303
1304- [Release notes](https://github.com/octokit/core.js/releases)
1305- [Commits](https://github.com/octokit/core.js/compare/v2.2.0...v2.4.0)
1306
1307Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1308
1309- Bump @types/semver from 6.2.0 to 7.1.0
1310
1311Bumps [@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver) from 6.2.0 to 7.1.0.
1312
1313- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
1314- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/semver)
1315
1316Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1317
1318#### Authors: 2
1319
1320- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
1321- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1322
1323---
1324
1325# v9.10.5 (Thu Feb 13 2020)
1326
1327:tada: This release contains work from a new contributor! :tada:
1328
1329Thank you, null[@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]), for all your work!
1330
1331#### 🐛 Bug Fix
1332
1333- fix build ([@hipstersmoothie](https://github.com/hipstersmoothie))
1334- Bump @octokit/rest from 16.38.3 to 16.43.1
1335
1336Bumps [@octokit/rest](https://github.com/octokit/rest.js) from 16.38.3 to 16.43.1.
1337
1338- [Release notes](https://github.com/octokit/rest.js/releases)
1339- [Commits](https://github.com/octokit/rest.js/compare/v16.38.3...v16.43.1)
1340
1341Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1342
1343#### Authors: 2
1344
1345- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
1346- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1347
1348---
1349
1350# v9.10.4 (Thu Feb 06 2020)
1351
1352#### 🐛 Bug Fix
1353
1354- dont exit process when calling info in core ([@hipstersmoothie](https://github.com/hipstersmoothie))
1355
1356#### Authors: 1
1357
1358- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1359
1360---
1361
1362# v9.10.3 (Thu Feb 06 2020)
1363
1364#### 🐛 Bug Fix
1365
1366- add user login ([@hipstersmoothie](https://github.com/hipstersmoothie))
1367- add info about token permission ([@hipstersmoothie](https://github.com/hipstersmoothie))
1368
1369#### Authors: 1
1370
1371- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1372
1373---
1374
1375# v9.10.2 (Thu Feb 06 2020)
1376
1377#### 🐛 Bug Fix
1378
1379- handle repos with large amounts of labels ([@hipstersmoothie](https://github.com/hipstersmoothie))
1380
1381#### Authors: 1
1382
1383- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1384
1385---
1386
1387# v9.10.0 (Thu Feb 06 2020)
1388
1389#### 🐛 Bug Fix
1390
1391- remove space ([@hipstersmoothie](https://github.com/hipstersmoothie))
1392- add "info" command ([@hipstersmoothie](https://github.com/hipstersmoothie))
1393
1394#### Authors: 1
1395
1396- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1397
1398---
1399
1400# v9.8.3 (Thu Jan 30 2020)
1401
1402#### 🐛 Bug Fix
1403
1404- move ICommit to "core" to fix external plugin TS build errors ([@hipstersmoothie](https://github.com/hipstersmoothie))
1405
1406#### Authors: 1
1407
1408- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1409
1410---
1411
1412# v9.8.1 (Wed Jan 29 2020)
1413
1414#### 🐛 Bug Fix
1415
1416- more descriptive message ([@hipstersmoothie](https://github.com/hipstersmoothie))
1417- better error message running release in repo w/o tags ([@hipstersmoothie](https://github.com/hipstersmoothie))
1418
1419#### Authors: 1
1420
1421- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1422
1423---
1424
1425# v9.8.0 (Mon Jan 27 2020)
1426
1427#### 🐛 Bug Fix
1428
1429- make unique GitHub releases for each package published in lerna independent monorepo ([@hipstersmoothie](https://github.com/hipstersmoothie))
1430- create new hook makeRelease and move current behavior into default tap ([@hipstersmoothie](https://github.com/hipstersmoothie))
1431
1432#### Authors: 1
1433
1434- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1435
1436---
1437
1438# v9.7.0 (Mon Jan 27 2020)
1439
1440#### 🐛 Bug Fix
1441
1442- enhance BeforeShipit hook to include the type of release that will be made ([@hipstersmoothie](https://github.com/hipstersmoothie))
1443
1444#### Authors: 1
1445
1446- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1447
1448---
1449
1450# v9.5.0 (Mon Jan 27 2020)
1451
1452:tada: This release contains work from a new contributor! :tada:
1453
1454Thank you, null[@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]), for all your work!
1455
1456#### 🐛 Bug Fix
1457
1458- fix lint ([@hipstersmoothie](https://github.com/hipstersmoothie))
1459- add next steps ([@hipstersmoothie](https://github.com/hipstersmoothie))
1460- Overhaul "auto init" experience + make it pluggable ([@hipstersmoothie](https://github.com/hipstersmoothie))
1461- fix build ([@hipstersmoothie](https://github.com/hipstersmoothie))
1462- fix test ([@hipstersmoothie](https://github.com/hipstersmoothie))
1463- Bump @octokit/plugin-throttling from 2.7.1 to 3.2.0
1464
1465Bumps [@octokit/plugin-throttling](https://github.com/octokit/plugin-throttling.js) from 2.7.1 to 3.2.0.
1466
1467- [Release notes](https://github.com/octokit/plugin-throttling.js/releases)
1468- [Commits](https://github.com/octokit/plugin-throttling.js/compare/v2.7.1...v3.2.0)
1469
1470Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@hipstersmoothie](https://github.com/hipstersmoothie))
1471
1472- Bump @octokit/plugin-retry from 2.2.0 to 3.0.1
1473
1474Bumps [@octokit/plugin-retry](https://github.com/octokit/plugin-retry.js) from 2.2.0 to 3.0.1.
1475
1476- [Release notes](https://github.com/octokit/plugin-retry.js/releases)
1477- [Commits](https://github.com/octokit/plugin-retry.js/compare/v2.2.0...v3.0.1)
1478
1479Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1480
1481- Bump @octokit/rest from 16.37.0 to 16.38.3
1482
1483Bumps [@octokit/rest](https://github.com/octokit/rest.js) from 16.37.0 to 16.38.3.
1484
1485- [Release notes](https://github.com/octokit/rest.js/releases)
1486- [Commits](https://github.com/octokit/rest.js/compare/v16.37.0...v16.38.3)
1487
1488Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1489
1490#### Authors: 2
1491
1492- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
1493- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1494
1495---
1496
1497# v9.4.0 (Sat Jan 25 2020)
1498
1499#### 🐛 Bug Fix
1500
1501- format detail a little better ([@hipstersmoothie](https://github.com/hipstersmoothie))
1502- Add html details option to canary hook + Use in npm plugin ([@hipstersmoothie](https://github.com/hipstersmoothie))
1503
1504#### Authors: 1
1505
1506- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1507
1508---
1509
1510# v9.3.4 (Sat Jan 25 2020)
1511
1512#### 🐛 Bug Fix
1513
1514- fix test ([@hipstersmoothie](https://github.com/hipstersmoothie))
1515- add better messaging when pr number cannot be detected ([@hipstersmoothie](https://github.com/hipstersmoothie))
1516
1517#### Authors: 1
1518
1519- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1520
1521---
1522
1523# v9.3.3 (Fri Jan 24 2020)
1524
1525#### 🐛 Bug Fix
1526
1527- Add :package: emoji to canary PR message to make it more noticeable ([@ericclemmons](https://github.com/ericclemmons))
1528
1529#### Authors: 1
1530
1531- Eric Clemmons ([@ericclemmons](https://github.com/ericclemmons))
1532
1533---
1534
1535# v9.3.2 (Fri Jan 24 2020)
1536
1537#### 🐛 Bug Fix
1538
1539- better logging in dry runs ([@hipstersmoothie](https://github.com/hipstersmoothie))
1540
1541#### Authors: 1
1542
1543- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1544
1545---
1546
1547# v9.3.1 (Fri Jan 24 2020)
1548
1549#### 🐛 Bug Fix
1550
1551- add test ([@hipstersmoothie](https://github.com/hipstersmoothie))
1552- Surface plugin syntax errors to user ([@hipstersmoothie](https://github.com/hipstersmoothie))
1553
1554#### Authors: 1
1555
1556- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1557
1558---
1559
1560# v9.2.2 (Fri Jan 24 2020)
1561
1562#### 🐛 Bug Fix
1563
1564- Fix error on empty pr body ([@reckter](https://github.com/reckter))
1565
1566#### Authors: 1
1567
1568- Hannes Güdelhöfer ([@reckter](https://github.com/reckter))
1569
1570---
1571
1572# v9.2.1 (Fri Jan 24 2020)
1573
1574#### 🐛 Bug Fix
1575
1576- fallback to 0.0.0 in git-tag plugin with no previous releases ([@hipstersmoothie](https://github.com/hipstersmoothie))
1577
1578#### Authors: 1
1579
1580- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1581
1582---
1583
1584# v9.2.0 (Thu Jan 23 2020)
1585
1586#### 🐛 Bug Fix
1587
1588- fix lint warning ([@hipstersmoothie](https://github.com/hipstersmoothie))
1589- Add ability to manage sub-package contributor lists ([@hipstersmoothie](https://github.com/hipstersmoothie))
1590
1591#### Authors: 1
1592
1593- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1594
1595---
1596
1597# v9.1.2 (Thu Jan 23 2020)
1598
1599#### 🐛 Bug Fix
1600
1601- fix omitting renovate release notes when a user manually rebases the renovate PR ([@hipstersmoothie](https://github.com/hipstersmoothie))
1602
1603#### Authors: 1
1604
1605- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1606
1607---
1608
1609# v9.1.1 (Thu Jan 23 2020)
1610
1611#### 🐛 Bug Fix
1612
1613- Fix onlyPublishWithReleaseLabel w/o labels ([@hipstersmoothie](https://github.com/hipstersmoothie))
1614
1615#### Authors: 1
1616
1617- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1618
1619---
1620
1621# v9.1.0 (Tue Jan 21 2020)
1622
1623#### 🐛 Bug Fix
1624
1625- upgrade enquirer ([@hipstersmoothie](https://github.com/hipstersmoothie))
1626- canary: try to match commit to PR if not found in env ([@hipstersmoothie](https://github.com/hipstersmoothie))
1627- Bump @types/node from 12.12.21 to 13.1.8
1628
1629Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 12.12.21 to 13.1.8.
1630
1631- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
1632- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
1633
1634Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1635
1636- Bump @octokit/rest from 16.36.0 to 16.37.0
1637
1638Bumps [@octokit/rest](https://github.com/octokit/rest.js) from 16.36.0 to 16.37.0.
1639
1640- [Release notes](https://github.com/octokit/rest.js/releases)
1641- [Commits](https://github.com/octokit/rest.js/compare/v16.36.0...v16.37.0)
1642
1643Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1644
1645#### Authors: 2
1646
1647- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
1648- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1649
1650---
1651
1652# v9.0.1 (Mon Jan 13 2020)
1653
1654#### 🐛 Bug Fix
1655
1656- handle PR numbers that don't exist in repo/fork ([@hipstersmoothie](https://github.com/hipstersmoothie))
1657
1658#### Authors: 1
1659
1660- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1661
1662---
1663
1664# v9.0.0 (Mon Jan 13 2020)
1665
1666#### 🐛 Bug Fix
1667
1668- Bump env-ci from 4.5.2 to 5.0.1
1669
1670Bumps [env-ci](https://github.com/pvdlg/env-ci) from 4.5.2 to 5.0.1.
1671
1672- [Release notes](https://github.com/pvdlg/env-ci/releases)
1673- [Commits](https://github.com/pvdlg/env-ci/compare/v4.5.2...v5.0.1)
1674
1675Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1676
1677- Bump @octokit/rest from 16.35.2 to 16.36.0
1678
1679Bumps [@octokit/rest](https://github.com/octokit/rest.js) from 16.35.2 to 16.36.0.
1680
1681- [Release notes](https://github.com/octokit/rest.js/releases)
1682- [Commits](https://github.com/octokit/rest.js/compare/v16.35.2...v16.36.0)
1683
1684Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1685
1686#### Authors: 1
1687
1688- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
1689
1690---
1691
1692# v8.8.0 (Thu Jan 02 2020)
1693
1694#### 🐛 Bug Fix
1695
1696- Update existing test so behavior matches name ([@bnigh](https://github.com/bnigh))
1697- Add tests to verify changelog section assignment behavior ([@bnigh](https://github.com/bnigh))
1698
1699#### Authors: 1
1700
1701- [@bnigh](https://github.com/bnigh)
1702
1703---
1704
1705# v8.7.3 (Fri Dec 20 2019)
1706
1707#### 🐛 Bug Fix
1708
1709- check origin head instead of local branch ([@hipstersmoothie](https://github.com/hipstersmoothie))
1710
1711#### Authors: 1
1712
1713- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1714
1715---
1716
1717# v8.7.2 (Fri Dec 20 2019)
1718
1719#### 🐛 Bug Fix
1720
1721- find the last greatest tag to help with botched releases ([@hipstersmoothie](https://github.com/hipstersmoothie))
1722
1723#### Authors: 1
1724
1725- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1726
1727---
1728
1729# v8.7.1 (Thu Dec 19 2019)
1730
1731#### 🐛 Bug Fix
1732
1733- add debug info ([@hipstersmoothie](https://github.com/hipstersmoothie))
1734
1735#### Authors: 1
1736
1737- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1738
1739---
1740
1741# v8.7.0 (Thu Dec 19 2019)
1742
1743#### 🐛 Bug Fix
1744
1745- fix lint ([@hipstersmoothie](https://github.com/hipstersmoothie))
1746- add context of what type of release was made during shipit ([@hipstersmoothie](https://github.com/hipstersmoothie))
1747
1748#### Authors: 1
1749
1750- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1751
1752---
1753
1754# v8.6.3 (Thu Dec 19 2019)
1755
1756#### 🐛 Bug Fix
1757
1758- fix execpromise logs ([@hipstersmoothie](https://github.com/hipstersmoothie))
1759- determine next version using by omitting tags from master ([@hipstersmoothie](https://github.com/hipstersmoothie))
1760
1761#### Authors: 1
1762
1763- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1764
1765---
1766
1767# v8.6.2 (Wed Dec 18 2019)
1768
1769#### 🐛 Bug Fix
1770
1771- update snapshots ([@hipstersmoothie](https://github.com/hipstersmoothie))
1772- fix test ([@hipstersmoothie](https://github.com/hipstersmoothie))
1773- only access auto login if it all exists ([@hipstersmoothie](https://github.com/hipstersmoothie))
1774
1775#### Authors: 1
1776
1777- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1778
1779---
1780
1781# v8.6.1 (Wed Dec 18 2019)
1782
1783#### 🐛 Bug Fix
1784
1785- fix tests ([@hipstersmoothie](https://github.com/hipstersmoothie))
1786- fix build ([@hipstersmoothie](https://github.com/hipstersmoothie))
1787- canary hook can return void to not bail ([@hipstersmoothie](https://github.com/hipstersmoothie))
1788
1789#### Authors: 1
1790
1791- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1792
1793---
1794
1795# v8.6.0 (Tue Dec 17 2019)
1796
1797#### 🐛 Bug Fix
1798
1799- make branch at last tag instead of head ([@hipstersmoothie](https://github.com/hipstersmoothie))
1800- finish update ([@hipstersmoothie](https://github.com/hipstersmoothie))
1801- update versioning prelabel ([@hipstersmoothie](https://github.com/hipstersmoothie))
1802- Bump version to: v8.5.0 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
1803- Update CHANGELOG.md \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
1804- add ability to manage version branches ([@hipstersmoothie](https://github.com/hipstersmoothie))
1805
1806#### Authors: 1
1807
1808- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1809
1810---
1811
1812# v8.5.0 (Tue Dec 17 2019)
1813
1814#### 🐛 Bug Fix
1815
1816- Bump version to: v8.2.0 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
1817- add ability to manage version branches ([@hipstersmoothie](https://github.com/hipstersmoothie))
1818- Update CHANGELOG.md \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
1819- Bump version to: v8.3.0 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
1820- version: detect prerelease branch ([@hipstersmoothie](https://github.com/hipstersmoothie))
1821- release: detect prerelease branch + be smarter about commit range ([@hipstersmoothie](https://github.com/hipstersmoothie))
1822- Bump version to: v8.1.1 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
1823- let modify config actually do something ([@hipstersmoothie](https://github.com/hipstersmoothie))
1824- ignore unknown labels during bump calc + fix none type release skipping ([@hipstersmoothie](https://github.com/hipstersmoothie))
1825- Bump version to: v8.4.0 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
1826- fix and add tests ([@hipstersmoothie](https://github.com/hipstersmoothie))
1827- release: add flag to publish prerelease ([@hipstersmoothie](https://github.com/hipstersmoothie))
1828- Bump version to: v8.1.3 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
1829- Bump version to: v8.1.2 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
1830- add test ([@hipstersmoothie](https://github.com/hipstersmoothie))
1831- omit next branch PR Title from being in release notes ([@hipstersmoothie](https://github.com/hipstersmoothie))
1832- Bump https-proxy-agent from 3.0.1 to 4.0.0
1833
1834Bumps [https-proxy-agent](https://github.com/TooTallNate/node-https-proxy-agent) from 3.0.1 to 4.0.0.
1835
1836- [Release notes](https://github.com/TooTallNate/node-https-proxy-agent/releases)
1837- [Commits](https://github.com/TooTallNate/node-https-proxy-agent/compare/3.0.1...4.0.0)
1838
1839Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1840
1841- Bump @octokit/rest from 16.35.0 to 16.35.2
1842
1843Bumps [@octokit/rest](https://github.com/octokit/rest.js) from 16.35.0 to 16.35.2.
1844
1845- [Release notes](https://github.com/octokit/rest.js/releases)
1846- [Commits](https://github.com/octokit/rest.js/compare/v16.35.0...v16.35.2)
1847
1848Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1849
1850- Bump semver from 6.3.0 to 7.0.0
1851
1852Bumps [semver](https://github.com/npm/node-semver) from 6.3.0 to 7.0.0.
1853
1854- [Release notes](https://github.com/npm/node-semver/releases)
1855- [Changelog](https://github.com/npm/node-semver/blob/master/CHANGELOG.md)
1856- [Commits](https://github.com/npm/node-semver/compare/v6.3.0...v7.0.0)
1857
1858Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1859
1860#### Authors: 2
1861
1862- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
1863- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1864
1865---
1866
1867# v8.5.0 (Tue Dec 17 2019)
1868
1869#### 🐛 Bug Fix
1870
1871- Bump version to: v8.2.0 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
1872- add ability to manage version branches ([@hipstersmoothie](https://github.com/hipstersmoothie))
1873- Update CHANGELOG.md \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
1874- Bump version to: v8.3.0 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
1875- version: detect prerelease branch ([@hipstersmoothie](https://github.com/hipstersmoothie))
1876- release: detect prerelease branch + be smarter about commit range ([@hipstersmoothie](https://github.com/hipstersmoothie))
1877- Bump version to: v8.1.1 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
1878- let modify config actually do something ([@hipstersmoothie](https://github.com/hipstersmoothie))
1879- ignore unknown labels during bump calc + fix none type release skipping ([@hipstersmoothie](https://github.com/hipstersmoothie))
1880- Bump version to: v8.4.0 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
1881- fix and add tests ([@hipstersmoothie](https://github.com/hipstersmoothie))
1882- release: add flag to publish prerelease ([@hipstersmoothie](https://github.com/hipstersmoothie))
1883- Bump version to: v8.1.3 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
1884- Bump version to: v8.1.2 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
1885- add test ([@hipstersmoothie](https://github.com/hipstersmoothie))
1886- omit next branch PR Title from being in release notes ([@hipstersmoothie](https://github.com/hipstersmoothie))
1887- Bump https-proxy-agent from 3.0.1 to 4.0.0
1888
1889Bumps [https-proxy-agent](https://github.com/TooTallNate/node-https-proxy-agent) from 3.0.1 to 4.0.0.
1890
1891- [Release notes](https://github.com/TooTallNate/node-https-proxy-agent/releases)
1892- [Commits](https://github.com/TooTallNate/node-https-proxy-agent/compare/3.0.1...4.0.0)
1893
1894Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1895
1896- Bump @octokit/rest from 16.35.0 to 16.35.2
1897
1898Bumps [@octokit/rest](https://github.com/octokit/rest.js) from 16.35.0 to 16.35.2.
1899
1900- [Release notes](https://github.com/octokit/rest.js/releases)
1901- [Commits](https://github.com/octokit/rest.js/compare/v16.35.0...v16.35.2)
1902
1903Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1904
1905- Bump semver from 6.3.0 to 7.0.0
1906
1907Bumps [semver](https://github.com/npm/node-semver) from 6.3.0 to 7.0.0.
1908
1909- [Release notes](https://github.com/npm/node-semver/releases)
1910- [Changelog](https://github.com/npm/node-semver/blob/master/CHANGELOG.md)
1911- [Commits](https://github.com/npm/node-semver/compare/v6.3.0...v7.0.0)
1912
1913Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1914
1915#### Authors: 2
1916
1917- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
1918- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1919
1920---
1921
1922# v8.4.0 (Mon Dec 16 2019)
1923
1924#### 🐛 Bug Fix
1925
1926- version: detect prerelease branch ([@hipstersmoothie](https://github.com/hipstersmoothie))
1927
1928#### Authors: 1
1929
1930- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1931
1932---
1933
1934# v8.3.0 (Mon Dec 16 2019)
1935
1936#### 🐛 Bug Fix
1937
1938- release: detect prerelease branch + be smarter about commit range ([@hipstersmoothie](https://github.com/hipstersmoothie))
1939- Bump @octokit/rest from 16.35.0 to 16.35.2
1940
1941Bumps [@octokit/rest](https://github.com/octokit/rest.js) from 16.35.0 to 16.35.2.
1942
1943- [Release notes](https://github.com/octokit/rest.js/releases)
1944- [Commits](https://github.com/octokit/rest.js/compare/v16.35.0...v16.35.2)
1945
1946Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1947
1948- Bump https-proxy-agent from 3.0.1 to 4.0.0
1949
1950Bumps [https-proxy-agent](https://github.com/TooTallNate/node-https-proxy-agent) from 3.0.1 to 4.0.0.
1951
1952- [Release notes](https://github.com/TooTallNate/node-https-proxy-agent/releases)
1953- [Commits](https://github.com/TooTallNate/node-https-proxy-agent/compare/3.0.1...4.0.0)
1954
1955Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1956
1957- Bump semver from 6.3.0 to 7.0.0
1958
1959Bumps [semver](https://github.com/npm/node-semver) from 6.3.0 to 7.0.0.
1960
1961- [Release notes](https://github.com/npm/node-semver/releases)
1962- [Changelog](https://github.com/npm/node-semver/blob/master/CHANGELOG.md)
1963- [Commits](https://github.com/npm/node-semver/compare/v6.3.0...v7.0.0)
1964
1965Signed-off-by: dependabot-preview[bot] <support@dependabot.com> ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
1966
1967#### Authors: 2
1968
1969- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
1970- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1971
1972---
1973
1974# v8.2.0 (Sun Dec 15 2019)
1975
1976#### 🐛 Bug Fix
1977
1978- fix and add tests ([@hipstersmoothie](https://github.com/hipstersmoothie))
1979- release: add flag to publish prerelease ([@hipstersmoothie](https://github.com/hipstersmoothie))
1980
1981#### Authors: 1
1982
1983- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1984
1985---
1986
1987# v8.1.3 (Sat Dec 14 2019)
1988
1989#### 🐛 Bug Fix
1990
1991- add test ([@hipstersmoothie](https://github.com/hipstersmoothie))
1992- omit next branch PR Title from being in release notes ([@hipstersmoothie](https://github.com/hipstersmoothie))
1993
1994#### Authors: 1
1995
1996- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
1997
1998---
1999
2000# v8.1.2 (Sat Dec 14 2019)
2001
2002#### 🐛 Bug Fix
2003
2004- add test ([@hipstersmoothie](https://github.com/hipstersmoothie))
2005- ignore unknown labels during bump calc + fix none type release skipping ([@hipstersmoothie](https://github.com/hipstersmoothie))
2006- let modify config actually do something ([@hipstersmoothie](https://github.com/hipstersmoothie))
2007
2008#### Authors: 1
2009
2010- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
2011
2012---
2013
2014# v8.1.0 (Sat Dec 14 2019)
2015
2016#### 🐛 Bug Fix
2017
2018- fix bug where merging a none would skip previously meged semver label, ex: merge next into master and next has a none label ([@hipstersmoothie](https://github.com/hipstersmoothie))
2019
2020#### Authors: 1
2021
2022- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
2023
2024---
2025
2026# v8.0.0 (Wed Dec 11 2019)
2027
2028#### 🐛 Bug Fix
2029
2030- change skip-release releaseType to just skip ([@hipstersmoothie](https://github.com/hipstersmoothie))
2031- add hash ([@hipstersmoothie](https://github.com/hipstersmoothie))
2032- fix tests ([@hipstersmoothie](https://github.com/hipstersmoothie))
2033- fix sub-pacakge changelogs ([@hipstersmoothie](https://github.com/hipstersmoothie))
2034- only grant contributions for work in commit ([@hipstersmoothie](https://github.com/hipstersmoothie))
2035- display message when commit is omitted ([@hipstersmoothie](https://github.com/hipstersmoothie))
2036- fix bug where author would get matched incorrectly ([@hipstersmoothie](https://github.com/hipstersmoothie))
2037- handle unknown tag when supplying --from and --to ([@hipstersmoothie](https://github.com/hipstersmoothie))
2038- add tests ([@hipstersmoothie](https://github.com/hipstersmoothie))
2039- omit commits that have already been released ([@hipstersmoothie](https://github.com/hipstersmoothie))
2040- do not call afterRelease hooks during dry run ([@hipstersmoothie](https://github.com/hipstersmoothie))
2041- update docs ([@hipstersmoothie](https://github.com/hipstersmoothie))
2042- switch from dedent to endent to fix multitemplate indentation ([@hipstersmoothie](https://github.com/hipstersmoothie))
2043- add release notes to prerelease PRs ([@hipstersmoothie](https://github.com/hipstersmoothie))
2044- remove false type ([@hipstersmoothie](https://github.com/hipstersmoothie))
2045- post comment prerelase version on prerelease version PR branches ([@hipstersmoothie](https://github.com/hipstersmoothie))
2046- allow any "N > 2" of --verbose flags for very verbose ([@hipstersmoothie](https://github.com/hipstersmoothie))
2047- Deprecate "--very-verbose, -w" in favor of "-vv" ([@hipstersmoothie](https://github.com/hipstersmoothie))
2048- more logs ([@hipstersmoothie](https://github.com/hipstersmoothie))
2049- fix canary calcs ([@hipstersmoothie](https://github.com/hipstersmoothie))
2050- reset versions ([@hipstersmoothie](https://github.com/hipstersmoothie))
2051- Bump version to: v8.0.0-next.8 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
2052- change to more explicit property name ([@hipstersmoothie](https://github.com/hipstersmoothie))
2053- Bump version to: v8.0.0-next.7 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
2054- move to top level util for ease of testing ([@hipstersmoothie](https://github.com/hipstersmoothie))
2055- fix lint ([@hipstersmoothie](https://github.com/hipstersmoothie))
2056- add email fallback back in ([@hipstersmoothie](https://github.com/hipstersmoothie))
2057- add test for none ([@hipstersmoothie](https://github.com/hipstersmoothie))
2058- add none release type ([@hipstersmoothie](https://github.com/hipstersmoothie))
2059- allow user to overwrite base label ([@hipstersmoothie](https://github.com/hipstersmoothie))
2060- check for depreacted config ([@hipstersmoothie](https://github.com/hipstersmoothie))
2061- get label refactor working ([@hipstersmoothie](https://github.com/hipstersmoothie))
2062- Bump version to: v8.0.0-next.6 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
2063- move determineNextVersion to core ([@hipstersmoothie](https://github.com/hipstersmoothie))
2064- move git clean check to core ([@hipstersmoothie](https://github.com/hipstersmoothie))
2065- Bump version to: v8.0.0-next.5 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
2066- Bump version to: v8.0.0-next.4 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
2067- change getPreviousVersion hook args. can access prefixRelease from root class instead ([@hipstersmoothie](https://github.com/hipstersmoothie))
2068- Bump version to: v8.0.0-next.3 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
2069- implment dry-run flag for next command ([@hipstersmoothie](https://github.com/hipstersmoothie))
2070- Bump version to: v8.0.0-next.2 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
2071- fix test ([@hipstersmoothie](https://github.com/hipstersmoothie))
2072- shipit: add flag to only publish to 'latest' tag when "release" label is present ([@hipstersmoothie](https://github.com/hipstersmoothie))
2073- Bump version to: v8.0.0-next.1 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
2074- allow user to configure what branches are treated as prerelease branches ([@hipstersmoothie](https://github.com/hipstersmoothie))
2075- Bump version to: v8.0.0-next.0 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
2076- remove prerelease label when released ([@hipstersmoothie](https://github.com/hipstersmoothie))
2077- remove old use of prerelease label + add prerelease label to released plugin ([@hipstersmoothie](https://github.com/hipstersmoothie))
2078- Bump version to: v7.17.0-next.1 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
2079- Bump version to: v7.17.0-next.0 \[skip ci\] ([@hipstersmoothie](https://github.com/hipstersmoothie))
2080- must set git user before publishing so we know we can commit ([@hipstersmoothie](https://github.com/hipstersmoothie))
2081- call next from shipit on next branch ([@hipstersmoothie](https://github.com/hipstersmoothie))
2082- get next branch release working ([@hipstersmoothie](https://github.com/hipstersmoothie))
2083
2084#### Authors: 1
2085
2086- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))