-
Notifications
You must be signed in to change notification settings - Fork 42
/
CHANGES
231 lines (146 loc) · 4.32 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
Changelog
=========
0.6.4
-----
- Another fix for python3
0.6.3
-----
- Fix admin panel for python3
0.6.2
-----
- use AnyControlEndpointMatcher to protect control access for everything
- Allow to specify volumes to mount in docker
0.6.1
-----
- publish universal wheels
- Fixed possibility to use different docker image and container size according to a property for hyper.
0.6.0
-----
- Fixed possibility to use different docker image according to a property
- Added support for virtual builders.
- Fix build with node6.
- Python3 compatibility fixes.
0.5.0
-----
- Added possibility to use Buildbot steps directly in the .bbtravis.yml.
- Added possibility to use Interpolate from within step definition.
- Global environment is no more part of the triggered build reason.
0.4.4
-----
- add TreeStableTimer configurability. This avoids to create one build per commit but rather one build per push/merge.
0.4.3
-----
- upgrade compatibility fixes. Fix case were tags are duplicated in the config
0.4.2
-----
- README fixes for pypi page
0.4.1
-----
- Minor dependencies fix to create a stable docker container
0.4.0
-----
- Support for Hyper latent workers
- Support for admin authentiation
- Support for GitHub Pull requests
0.3.0
-----
- Support for configuration of workers and auth via administration UI
0.1.1
-----
Release of buildbot_travis based on buildbot nine beta1
Basic support for github
0.1.0
-----
First release of buildbot_travis based on buildbot nine
This version was hard to use as buildbot nine was not available in pip
0.0.19 (unreleased)
-------------------
- Nothing changed yet.
0.0.18 (2012-11-12)
-------------------
- Fix borked release.
0.0.17 (2012-11-12)
-------------------
- Update to use the latest trigger API (as it was changed in 0.8.7).
- Add web UI for registering new projects.
0.0.16 (2012-11-01)
-------------------
- Remove the ``name`` args from the pollers - they were removed in time for 0.8.7.
0.0.15 (2012-11-01)
-------------------
- Now fully support the ``matrix`` options allowing finer control over the
implied matrix generated from the list of runtimes and environment
variables::
python:
- 2.6
- 2.7
env:
- FLAVOUR=apple
- FLAVOUR=orange
matrix:
exclude:
- python: 2.7
env: FLAVOUR=orange
include:
- python: 2.7
env: FLAVOUR=banana
This will do an additional build of the ``banana`` build but only for python
2.7. And it will turn off the build for the ``orange`` flavour, again only
for python 2.7.
- Mail notification can't send a change notification if it doesn't have
anything to compare to (to detect the change). So it doesn't try to.
0.0.14 (2012-06-11)
-------------------
- UI hints during graceful shutdown
0.0.13 (2012-06-11)
-------------------
- Only show pending builds on the right page :P
0.0.12 (2012-06-07)
-------------------
- Nothing changed yet.
0.0.11 (2012-06-07)
-------------------
- Fix manifest to include templates
0.0.10 (2012-06-07)
-------------------
- Nothing changed yet.
0.0.9 (2012-06-07)
------------------
- Add a ``nextBuild`` handler that stops there being spawner builds without
runner capacity.
- Add some default ignores.
- Use SingleBranchScheduler / AnyBranchScheduler
- Show pending builds in web ui.
0.0.8 (2012-06-06)
------------------
- Fix unskinned 'building' view on ``/projects/wibble/`` url handler.
0.0.7 (2012-06-06)
------------------
- Brown paper bag release.
0.0.6 (2012-06-06)
------------------
- The pollers are now named - this allows them to be triggered by a change
hook.
0.0.5 (2012-06-05)
------------------
- SVN poller configuration is subclassable
0.0.4 (2012-06-05)
------------------
- Custom MailNotifier that makes use of .travis.yml
0.0.3 (2012-06-05)
------------------
- Nothing changed yet.
0.0.2 (2012-05-30)
------------------
- Nothing changed yet.
0.0.1 (2012-04-22)
------------------
- Builds triggered by spawner build step get marked with a ``spawned_by``
property so we can relate them to their parent builds.
- Add a HtmlResource for showing ``/console`` style views of builds.
- Take advantage of features in Buildbot 0.8.6 and later.
- Fix hideStepIf and flunking options
- Custom steps should be interruptable
0.0.0 (2012-04-11)
------------------
- Initial release