forked from buildbot/buildbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch releasenote generation to towncrier
- Loading branch information
Showing
7 changed files
with
42 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
## Remove this paragraph | ||
Please have a look at our developer documentation before submitting your Pull Request. | ||
|
||
http://trac.buildbot.net/wiki/Development | ||
And especially: | ||
http://trac.buildbot.net/wiki/SubmittingPatches | ||
|
||
## Contributor Checklist: | ||
|
||
* [ ] I have updated the unit tests | ||
* [ ] I have created a file in the master/buildbot/newsfragment directory (and read the README.txt in that directory) | ||
* [ ] I have updated the appropriate documentation | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
This is the directory for news fragments used by towncrier: https://github.com/hawkowl/towncrier | ||
|
||
towncrier has a few standard types of news fragments, signified by the file extension. These are: | ||
|
||
.feature: Signifying a new feature. | ||
.bugfix: Signifying a bug fix. | ||
.doc: Signifying a documentation improvement. | ||
.removal: Signifying a deprecation or removal of public API. | ||
|
||
The core of the filename can be the fixed issue number of any uniq text relative to your work. | ||
Buildbot project does not require a tracking ticket to be made for each contribution even if this is appreciated. | ||
|
||
Please point to the bug using syntax: (:bug:`NNN`) | ||
please point to classes using syntax: :py:class:`~buildbot.reporters.http.HttpStatusBase` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
New :bb:reporter:`GerritVerifyStatusPush` can send multiple review status for the same Gerrit change. |
2 changes: 2 additions & 0 deletions
2
master/buildbot/newsfragments/no_pass_for_dockerworker.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
``password`` in :py:class:`~buildbot.plugins.worker.DockerLatentWorker` and :py:class:`~buildbot.plugins.worker.HyperLatentWorker`, can be None. | ||
In that case, they will be auto-generated from random number. |
2 changes: 2 additions & 0 deletions
2
master/buildbot/newsfragments/stashreporter_parameters.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
:bb:reporter:`StashStatusPush` now accepts ``key``, ``buildName``, ``endDescription``, ``startDescription``, and ``verbose`` parameters to control the JSON sent to Stash. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[towncrier] | ||
package_dir = master | ||
package = buildbot | ||
; The filename that it will write to, relative to the current dir | ||
filename = master/docs/relnotes/index.rst |