Caution
Buildbot no longer supports Python 2.7 on the Buildbot master.
5.47. Release Notes for Buildbot 0.8.11¶
The following are the release notes for Buildbot 0.8.11. This version was released on the 20th of April, 2015.
5.47.1. Master¶
Requirements:
- Buildbot works python-dateutil >= 1.5 
5.47.1.1. Features¶
- GitHub change hook now supports application/json format. 
- Buildbot is now compatible with Gerrit v2.6 and higher. - To make this happen, the return result of - reviewCBand- summaryCBcallback has changed from- (message, verified, review) - to - {'message': message, 'labels': {'label-name': value, ... } } - The implications are: - there are some differences in behaviour: only those labels that were provided will be updated 
- Gerrit server must be able to provide a version, if it can’t the - GerritStatusPushwill not work
 - Note - If you have an old style - reviewCBand/or- summaryCBimplemented, these will still work, however there could be more labels updated than anticipated.- More detailed information is available in - GerritStatusPushsection.
- Buildbot now supports plugins. They allow Buildbot to be extended by using components distributed independently from the main code. They also provide for a unified way to access all components. When previously the following construction was used: - from buildbot.kind.other.bits import ComponentClass ... ComponentClass ... - the following construction achieves the same result: - from buildbot.plugins import kind ... kind.ComponentClass ... - Kinds of components that are available this way are described in Plugin Infrastructure in Buildbot. - Note - While the components can be still directly imported as - buildbot.kind.other.bits, this might not be the case after Buildbot v1.0 is released.
- GitPollernow supports detecting new branches
- MasterShellCommandnow renders the- pathargument.
- ShellMixin: the- workdircan now be overridden in the call to- makeRemoteShellCommand.
- GitHub status target now allows to specify a different base URL for the API (usefule for GitHub enterprise installations). This feature requires txgithub of version 0.2.0 or better. 
- GitHub change hook now supports payload validation using shared secret, see the GitHub hook documentation for details. 
- Added StashStatusPush status hook for Atlassian Stash 
- Builders can now have multiple “tags” associated with them. Tags can be used in various status classes as filters (eg, on the waterfall page). 
- MailNotifierno longer forces SSL 3.0 when- useTlsis true.
- GitHub change hook now supports function as codebase argument. 
- GitHub change hook now supports pull_request events. 
- Trigger: the- getSchedulersAndPropertiescustomization method has been backported from Nine. This provides a way to dynamically specify which schedulers (and the properties for that scheduler) to trigger at runtime.
5.47.1.2. Fixes¶
- GitHub change hook now correctly responds to ping events. 
- buildbot.steps.httpsteps now correctly have- urlparameter renderable
- MasterShellCommandnow correctly logs the working directory where it was run.
- With Git(), force the updating submodules to ensure local changes by the build are overwritten. This both ensures more consistent builds and avoids errors when updating submodules. 
- With Git(), make sure ‘git submodule sync’ is called before ‘git submodule update’ to update stale remote urls (bug #2155). 
5.47.1.3. Deprecations, Removals, and Non-Compatible Changes¶
- The builder parameter “category” is deprecated and is replaced by a parameter called “tags”. 
5.47.1.4. Changes for Developers¶
- Trigger:- createTriggerPropertiesnow takes one argument (the properties to generate).
- Trigger:- getSchedulersmethod is no longer used and was removed.
5.47.2. Slave¶
5.47.2.1. Features¶
5.47.2.2. Fixes¶
5.47.2.3. Deprecations, Removals, and Non-Compatible Changes¶
5.47.3. Details¶
For a more detailed description of the changes made in this version, see the git log itself:
git log v0.8.10..532cf49