scheduler.Nightly: improve docs slightly
[buildbot.git] / NEWS
blob232e0dfda66af857aba551263ec8b82401b0bb60
1 User visible changes in Buildbot.
3 * Release ?.?.? (?)
5 ** Things You Need To Know
7 *** The Great BuildStep Renaming
9 All BuildSteps have moved from being classes in buildbot.process.step to
10 separate modules in buildbot.steps.* . They have been split out into separate
11 categories: for example, the source checkout steps are now
12 buildbot.steps.source.CVS, buildbot.steps.source.Darcs, etc. The most
13 commonly used one is probably buildbot.steps.shell.ShellCommand . The
14 python-specific steps are in buildbot.steps.python, and the Twisted-specific
15 steps are in buildbot.steps.python_twisted .
17 The old names are deprecated and will be removed altogether in the next
18 release.
20 ** new features
22 *** Locks now take maxCount=N to allow multiple simultaneous owners
24 This allows Locks to be non-exclusive but still limit concurrency. Thanks to
25 James Knight for the patch. Closes SF#1434997.
27 *** filetransfer steps
29 buildbot.steps.transfer.FileUpload is a buildstep that will move files from
30 the slave to the master. Likewise, FileDownload will move files from the
31 master down to the buildslave. Many thanks to Albert Hofkamp for contributing
32 these classes. Closes SF#1504631.
34 *** pyflakes step
36 buildbot.steps.python.PyFlakes will run the simple 'pyflakes' static analysis
37 tool and parse the results to tell you about undefined names, unused imports,
38 etc.
40 *** Monotone support
42 Nathaniel Smith has contributed initial support for the Monotone version
43 control system. The code still needs docs and tests, but on the other hand it
44 has been in use by the Monotone buildbot for a long time now, so it is
45 probably fairly stable.
47 *** Tinderbox support
49 Ben Hearsum and the Mozilla crew have contributed some classes to allow
50 Buildbot to work with Tinderbox clients. One piece is
51 buildbot.changes.bonsaipoller.BonsaiPoller, which is a ChangeSource that
52 polls a Bonsai server (which is a kind of web-vased viewcvs CGI script) to
53 discover source code changes. The other piece is
54 buildbot.status.tinderbox.TinderboxMailNotifier, which is a status plugin
55 that sends email in the same format as Tinderbox does, which allows a number
56 of Tinderbox tools to be driven by Buildbot instead.
58 *** SVN Poller
60 Niklaus Giger contributed a ChangeSource (buildbot.changes.svnpoller) which
61 polls a remote SVN repository on a periodic basis. This is useful when, for
62 whatever reason, you cannot add a post-commit hook script to the repository.
63 This obsoletes the external contrib/svn_watcher.py script.
65 ** notes for plugin developers
67 *** IStatusLog.readlines()
69 This new method makes it easier for a status plugin (or a
70 BuildStep.createSummary method) to walk through a StatusLog one line at a
71 time. For example, if you wanted to create an extra logfile that just
72 contained all the GCC warnings from the main log, you could use the
73 following:
75     def createSummary(self, log):
76         warnings = []
77         for line in log.readlines():
78             if "warning:" in line:
79                 warnings.append()
80         self.addCompleteLog('warnings', "".join(warnings))
82 The "BuildStep LogFiles" section of the user's manual contains more
83 information. This method is not particularly memory-efficient yet (it reads
84 the whole logfile into memory first, then splits it into lines); this will be
85 improved in a future release.
87 ** bug fixes
89 *** Update source.SVN to work with the new SVN-1.4.0
91 The latest subversion changed the behavior in an unusual situation which
92 caused the unit tests to fail. This was unlikely to cause a problem in actual
93 usage, but the tests have been updated to pass with the new version.
95 *** update svn_buildbot.py to avoid mangling filenames
97 Older versions of this script were stripping the wrong number of columns from
98 the output of 'svnlook changed', and would sometimes mangle filenames. This
99 has been fixed. Closes SF#1545146.
101 *** logfiles= caused subsequent build failures under Windows
103 Earlier versions of buildbot didn't explicitly close any logfiles= file
104 handles when the build finished. On windows (where you cannot delete a file
105 that someone is reading), this could cause the next build to fail as the
106 source checkout step was unable to delete the old working directory. This has
107 been fixed. Closes SF#1568415.
109 *** logfiles= didn't work on OS-X
111 Macintosh OS-X has a different behavior when reading files that have reached
112 EOF, the result was that logfiles= sometimes didn't work. Thanks to Mark Rowe
113 for the patch.
116 * Release 0.7.4 (23 Aug 2006)
118 ** Things You Need To Know
120 The PBChangeSource's prefix= argument has changed, you probably need to add a
121 slash now. This is mostly used by sites which use Subversion and
122 svn_buildbot.py.
124 The subcommands that are used to create a buildmaster or a buildslave have
125 changed. They used to be called 'buildbot master' and 'buildbot slave'. Now
126 they are called 'buildbot create-master' and 'buildbot create-slave'. Zipf's
127 Law suggests that these are more appropriate names for these
128 infrequently-used commands.
130 The syntax for the c['manhole'] feature has changed.
132 ** new features
134 *** full Perforce support
136 SF#1473939: large patch from Scott Lamb, with docs and unit tests! This
137 includes both the step.P4 source-checkout BuildStep, and the changes.p4poller
138 ChangeSource you'll want to feed it. P4 is now supported just as well as all
139 the other VC systems. Thanks Scott!
141 *** SSH-based Manhole
143 The 'manhole' feature allows buildbot developers to get access to a python
144 read/eval/print loop (REPL) inside the buildmaster through a network
145 connection. Previously, this ran over unencrypted telnet, using a simple
146 username/password for access control. The new release defaults to encrypted
147 SSH access, using either username/password or an authorized_keys file (just
148 like sshd). There also exists an unencrypted telnet form, but its use is
149 discouraged. The syntax for setting up a manhole has changed, so master.cfg
150 files that use them must be updated. The "Debug options" section in the
151 user's manual provides a complete description.
153 *** Multiple Logfiles
155 BuildSteps can watch multiple log files in realtime, not just stdout/stderr.
156 This works in a similar fashion to 'tail -f': the file is polled once per
157 second, and any new data is sent to the buildmaster.
159 This requires a buildslave running 0.7.4 or later, and a warning message is
160 produced if used against an old buildslave (which will otherwise produce no
161 data). Use "logfiles={'name': 'filename'}" to take advantage of this feature
162 from master.cfg, and see the "ShellCommand" section of the user's manual for
163 full documentation.
165 The 'Trial' buildstep has been updated to use this, to display
166 _trial_temp/test.log in realtime. It also knows to fall back to the previous
167 "cat" command if the buildslave is too old.
169 *** BuildStep URLs
171 BuildSteps can now add arbitrary URLs which will be displayed on the
172 Waterfall page in the same place that Logs are presented. This is intended to
173 provide a link to generated HTML pages, such as the output of a code coverage
174 tool. The step is responsible for somehow uploading the HTML to a web server:
175 this feature merely provides an easy way to present the HREF link to the
176 user. See the "BuildStep URLs" section of the user's manual for details and
177 examples.
179 *** LogObservers
181 BuildSteps can now attach LogObservers to various logfiles, allowing them to
182 get real-time log output. They can use this to watch for progress-indicating
183 events (like counting the number of files compiled, or the number of tests
184 which have run), and update both ETA/progress-tracking and step text. This
185 allows for more accurate ETA information, and more information passed to the
186 user about how much of the process has completed.
188 The 'Trial' buildstep has been updated to use this for progress tracking, by
189 counting how many test cases have run.
191 ** new documentation
193 What classes are useful in your master.cfg file? A table of them has been
194 added to the user's manual, in a section called "Index of Useful Classes".
196 Want a list of all the keys in master.cfg? Look in the "Index of master.cfg
197 keys" section.
199 A number of pretty diagrams have been added to the "System Architecture"
200 portion of the manual, explaining how all the buildbot pieces fit together.
202 An HTML form of the user's manual is now shipped in the source tarball. This
203 makes it a bit bigger: sorry about that. The old PyCon-2003 paper has been
204 removed from the distribution, as it is mostly supplanted by the user's
205 manual by this point.
207 ** bugfixes
209 SF#1217699 + SF#1381867: The prefix= argument to PBChangeSource has been
210 changed: now it does just a simple string-prefix match and strip. The
211 previous behavior was buggy and unhelpful. NOTE: if you were using prefix=
212 before, you probably need to add a slash to the end of it.
214 SF#1398174: ignore SVN property changes better, fixed by Olivier Bonnet
216 SF#1452801: don't double-escape the build URL, fixed by Olivier Bonnet
218 SF#1401121: add support for running py2exe on windows, by Mark Hammond
220 reloading unchanged config files with WithProperties shouldn't change anything.
222 All svn commands now include --non-interactive so they won't ask for
223 passwords. Instead, the command will fail if it cannot be performed without
224 user input.
226 Deprecation warnings with newer versions of Twisted have been hushed.
228 ** compatibility
230 I haven't actually removed support for Twisted-1.3.0 yet, but I'd like to.
232 The step_twisted default value for --reporter matches modern Twisteds,
233 though, and won't work under 1.3.0.
235 ShellCommand.flunkOnFailure now defaults to True, so any shell command which
236 fails counts as a build failure. Set this to False if you don't want this
237 behavior.
239 ** minor features
241 contrib/darcs_buildbot.py contains a new script suitable for use in a darcs
242 commit-hook.
244 Hovering a cursor over the yellow "Build #123" box in the Waterfall display
245 will pop up an HTML tooltip to show the reason for the build. Thanks to Zandr
246 Milewski for the suggestion.
248 contrib/CSS/*.css now contains several contributed stylesheets to make the
249 Waterfall display a bit less ugly. Thanks to John O'Duinn for gathering them.
251 ShellCommand and its derivatives can now accept either a string or a list of
252 strings in the description= and descriptionDone= arguments. Thanks to Paul
253 Winkler for the catch.
256 * Release 0.7.3 (23 May 2006)
258 ** compatibility
260 This release is compatible with Twisted-1.3.0, but the next one will not be.
261 Please upgrade to at least Twisted-2.0.x soon, as the next buildbot release
262 will require it.
264 ** new features
266 *** Mercurial support
268 Support for Mercurial version control system (http://selenic.com/mercurial)
269 has been added. This adds a buildbot.process.step.Mercurial BuildStep. A
270 suitable hook script to deliver changes to the buildmaster is still missing.
272 *** 'buildbot restart' command
274 The 'buildbot restart BASEDIR' command will perform a 'buildbot stop' and
275 'buildbot start', and will attempt to wait for the buildbot process to shut
276 down in between. This is useful when you need to upgrade the code on your
277 buildmaster or buildslave and want to take it down for a minimum amount of
278 time.
280 *** build properties
282 Each build now has a set of named "Build Properties", which can be set by
283 steps and interpolated into ShellCommands. The 'revision' and 'got_revision'
284 properties are the most interesting ones available at this point, and can be
285 used e.g. to get the VC revision number into the filename of a generated
286 tarball. See the user's manual section entited "Build Properties" for more
287 details.
289 ** minor features
291 *** IRC now takes password= argument
293 Useful for letting your bot claim a persistent identity.
295 *** svn_buildbot.py is easier to modify to understand branches
296 *** BuildFactory has a new .addStep method
297 *** p4poller has new arguments
298 *** new contrib scripts: viewcvspoll, svnpoller, svn_watcher
300 These poll an external VC repository to watch for changes, as opposed to
301 adding a hook script to the repository that pushes changes into the
302 buildmaster. This means higher latency but may be easier to configure,
303 especially if you do not have authority on the repository host.
305 *** VC build property 'got_revision'
307 The 'got_revision' property reports what revision a VC step actually
308 acquired, which may be useful to know when building from HEAD.
310 *** improved CSS in Waterfall
312 The Waterfall display has a few new class= tags, which may make it easier to
313 write custom CSS to make it look prettier.
315 *** robots_txt= argument in Waterfall
317 You can now pass a filename to the robots_txt= argument, which will be served
318 as the "robots.txt" file. This can be used to discourage search engine
319 spiders from crawling through the numerous build-status pages.
321 ** bugfixes
323 *** tests more likely to pass on non-English systems
325 The unit test suite now sets $LANG='C' to make subcommands emit error
326 messages in english instead of whatever native language is in use on the
327 host. This improves the chances that the unit tests will pass on such
328 systems. This affects certain VC-related subcommands too.
330 test_vc was assuming that the system time was expressed with a numeric
331 timezone, which is not always the case, especially under windows. This
332 probably works better now than it did before. This only affects the CVS
333 tests.
335 'buildbot try' (for CVS) now uses UTC instead of the local timezone. The
336 'got_revision' property is also expressed in UTC. Both should help deal with
337 buggy versions of CVS that don't parse numeric timezones properly.
340 * Release 0.7.2 (17 Feb 2006)
342 ** new features
344 *** all TCP port numbers in config file now accept a strports string
346 Sometimes it is useful to restrict certain TCP ports that the buildmaster
347 listens on to use specific network interfaces. In particular, if the
348 buildmaster and SVN repository live on the same machine, you may want to
349 restrict the PBChangeSource to only listen on the loopback interface,
350 insuring that no external entities can inject Changes into the buildbot.
351 Likewise, if you are using something like Apache's reverse-proxy feature to
352 provide access to the buildmaster's HTML status page, you might want to hide
353 the real Waterfall port by having it only bind to the loopback interface.
355 To accomplish this, use a string like "tcp:12345:interface=127.0.0.1" instead
356 of a number like 12345. These strings are called "strports specification
357 strings", and are documented in twisted's twisted.application.strports module
358 (you can probably type 'pydoc twisted.application.strports' to see this
359 documentation). Pretty much everywhere the buildbot takes a port number will
360 now accept a strports spec, and any bare numbers are translated into TCP port
361 numbers (listening on all network interfaces) for compatibility.
363 *** buildslave --umask control
365 Twisted's daemonization utility (/usr/bin/twistd) automatically sets the
366 umask to 077, which means that all files generated by both the buildmaster
367 and the buildslave will only be readable by the account under which the
368 respective daemon is running. This makes it unnecessarily difficult to share
369 build products (e.g. by symlinking ~/public_html/current_docs/ to a directory
370 within the slave's build directory where each build puts the results of a
371 "make docs" step).
373 The 'buildbot slave <PARAMS>' command now accepts a --umask argument, which
374 can be used to override the umask set by twistd. If you create the buildslave
375 with '--umask=022', then all build products will be world-readable, making it
376 easier for other processes (run under other accounts) to access them.
378 ** bug fixes
380 The 0.7.1 release had a bug whereby reloading the config file could break all
381 configured Schedulers, causing them to raise an exception when new changes
382 arrived but not actually schedule a new build. This has been fixed.
384 Fixed a bug which caused the AnyBranchScheduler to explode when branch==None.
385 Thanks to Kevin Turner for the catch. I also think I fixed a bug whereby the
386 TryScheduler would explode when it was given a Change (which it is supposed
387 to simply ignore).
389 The Waterfall display now does more quoting of names (including Builder
390 names, BuildStep names, etc), so it is more likely that these names can
391 contain unusual characters like spaces, quotes, and slashes. There may still
392 be some problems with these kinds of names, however.. please report any bugs
393 to the mailing list.
396 * Release 0.7.1 (26 Nov 2005)
398 ** new features
400 *** scheduler.Nightly
402 Dobes Vandermeer contributed a cron-style 'Nightly' scheduler. Unlike the
403 more-primitive Periodic class (which only lets you specify the duration
404 between build attempts), Nightly lets you schedule builds for specific times
405 of day, week, month, or year. The interface is very much like the crontab(5)
406 file. See the buildbot.scheduler.Nightly docstring for complete details.
408 ** minor new features
410 *** step.Trial can work with Trial from Twisted >2.1.0
412 The 'Trial' step now accepts the trialMode= argument, which should be a list
413 of strings to be added to trial's argv array. This defaults to ["-to"], which
414 is appropriate for the Trial that ships in Twisted-2.1.0 and earlier, and
415 tells Trial to emit non-colorized verbose output. To use this step with
416 trials from later versions of Twisted, this should be changed to
417 ["--reporter=bwverbose"].
419 In addition, you can now set other Trial command-line parameters through the
420 trialArgs= argument. This is a list of strings, and defaults to an empty list.
422 *** Added a 'resubmit this build' button to the web page
424 *** Make the VC-checkout step's description more useful
426 Added the word "[branch]" to the VC step's description (used in the Step's
427 box on the Waterfall page, among others) when we're checking out a
428 non-default branch. Also add "rNNN" where appropriate to indicate which
429 revision is being checked out. Thanks to Brad Hards and Nathaniel Smith for
430 the suggestion.
432 ** bugs fixed
434 Several patches from Dobes Vandermeer: Escape the URLs in email, in case they
435 have spaces and such. Fill otherwise-empty <td> elements, as a workaround for
436 buggy browsers that might optimize them away. Also use binary mode when
437 opening status pickle files, to make windows work better. The
438 AnyBranchScheduler now works even when you don't provide a fileIsImportant=
439 argument.
441 Stringify the base revision before stuffing it into a 'try' jobfile, helping
442 SVN and Arch implement 'try' builds better. Thanks to Steven Walter for the
443 patch.
445 Fix the compare_attrs list in PBChangeSource, FreshCVSSource, and Waterfall.
446 Before this, certain changes to these objects in the master.cfg file were
447 ignored, such that you would have to stop and re-start the buildmaster to
448 make them take effect.
450 The config file is now loaded serially, shutting down old (or replaced)
451 Status/ChangeSource plugins before starting new ones. This fixes a bug in
452 which changing an aspect of, say, the Waterfall display would cause an
453 exception as both old and new instances fight over the same TCP port. This
454 should also fix a bug whereby new Periodic Schedulers could fire a build
455 before the Builders have finished being added.
457 There was a bug in the way Locks were handled when the config file was
458 reloaded: changing one Builder (but not the others) and reloading master.cfg
459 would result in multiple instances of the same Lock object, so the Locks
460 would fail to prevent simultaneous execution of Builds or Steps. This has
461 been fixed.
463 ** other changes
465 For a long time, certain StatusReceiver methods (like buildStarted and
466 stepStarted) have been able to return another StatusReceiver instance
467 (usually 'self') to indicate that they wish to subscribe to events within the
468 new object. For example, if the buildStarted() method returns 'self', the
469 status receiver will also receive events for the new build, like
470 stepStarted() and buildETAUpdate(). Returning a 'self' from buildStarted() is
471 equivalent to calling build.subscribe(self).
473 Starting with buildbot-0.7.1, this auto-subscribe convenience will also
474 register to automatically unsubscribe the target when the build or step has
475 finished, just as if build.unsubscribe(self) had been called. Also, the
476 unsubscribe() method has been changed to not explode if the same receiver is
477 unsubscribed multiple times. (note that it will still explode is the same
478 receiver is *subscribed* multiple times, so please continue to refrain from
479 doing that).
482 * Release 0.7.0 (24 Oct 2005)
484 ** new features
486 *** new c['schedulers'] config-file element (REQUIRED)
488 The code which decides exactly *when* a build is performed has been massively
489 refactored, enabling much more flexible build scheduling. YOU MUST UPDATE
490 your master.cfg files to match: in general this will merely require you to
491 add an appropriate c['schedulers'] entry. Any old ".treeStableTime" settings
492 on the BuildFactory instances will now be ignored. The user's manual has
493 complete details with examples of how the new Scheduler classes work.
495 *** c['interlocks'] removed, Locks and Dependencies now separate items
497 The c['interlocks'] config element has been removed, and its functionality
498 replaced with two separate objects. Locks are used to tell the buildmaster
499 that certain Steps or Builds should not run at the same time as other Steps
500 or Builds (useful for test suites that require exclusive access to some
501 external resource: of course the real fix is to fix the tests, because
502 otherwise your developers will be suffering from the same limitations). The
503 Lock object is created in the config file and then referenced by a Step
504 specification tuple or by the 'locks' key of the Builder specification
505 dictionary. Locks come in two flavors: MasterLocks are buildmaster-wide,
506 while SlaveLocks are specific to a single buildslave.
508 When you want to have one Build run or not run depending upon whether some
509 other set of Builds have passed or failed, you use a special kind of
510 Scheduler defined in the scheduler.Dependent class. This scheduler watches an
511 upstream Scheduler for builds of a given source version to complete, and only
512 fires off its own Builders when all of the upstream's Builders have built
513 that version successfully.
515 Both features are fully documented in the user's manual.
517 *** 'buildbot try'
519 The 'try' feature has finally been added. There is some configuration
520 involved, both in the buildmaster config and on the developer's side, but
521 once in place this allows the developer to type 'buildbot try' in their
522 locally-modified tree and to be given a report of what would happen if their
523 changes were to be committed. This works by computing a (base revision,
524 patch) tuple that describes the developer's tree, sending that to the
525 buildmaster, then running a build with that source on a given set of
526 Builders. The 'buildbot try' tool then emits status messages until the builds
527 have finished.
529 'try' exists to allow developers to run cross-platform tests on their code
530 before committing it, reducing the chances they will inconvenience other
531 developers by breaking the build. The UI is still clunky, but expect it to
532 change and improve over the next few releases.
534 Instructions for developers who want to use 'try' (and the configuration
535 changes necessary to enable its use) are in the user's manual.
537 *** Build-On-Branch
539 When suitably configured, the buildbot can be used to build trees from a
540 variety of related branches. You can set up Schedulers to build a tree using
541 whichever branch was last changed, or users can request builds of specific
542 branches through IRC, the web page, or (eventually) the CLI 'buildbot force'
543 subcommand.
545 The IRC 'force' command now takes --branch and --revision arguments (not that
546 they always make sense). Likewise the HTML 'force build' button now has an
547 input field for branch and revision. Your build's source-checkout step must
548 be suitably configured to support this: for SVN it involves giving both a
549 base URL and a default branch. Other VC systems are configured differently.
550 The ChangeSource must also provide branch information: the 'buildbot
551 sendchange' command now takes a --branch argument to help hook script writers
552 accomplish this.
554 *** Multiple slaves per Builder
556 You can now attach multiple buildslaves to each Builder. This can provide
557 redundancy or primitive load-balancing among many machines equally capable of
558 running the build. To use this, define a key in the Builder specification
559 dictionary named 'slavenames' with a list of buildslave names (instead of the
560 usual 'slavename' that contains just a single slavename).
562 *** minor new features
564 The IRC and email status-reporting facilities now provide more specific URLs
565 for particular builds, in addition to the generic buildmaster home page. The
566 HTML per-build page now has more information.
568 The Twisted-specific test classes have been modified to match the argument
569 syntax preferred by Trial as of Twisted-2.1.0 and newer. The generic trial
570 steps are still suitable for the Trial that comes with older versions of
571 Twisted, but may produce deprecation warnings or errors when used with the
572 latest Trial.
574 ** bugs fixed
576 DNotify, used by the maildir-watching ChangeSources, had problems on some
577 64-bit systems relating to signed-vs-unsigned constants and the DN_MULTISHOT
578 flag. A workaround was provided by Brad Hards.
580 The web status page should now be valid XHTML, thanks to a patch by Brad
581 Hards. The charset parameter is specified to be UTF-8, so VC comments,
582 builder names, etc, should probably all be in UTF-8 to be displayed properly.
584 ** creeping version dependencies
586 The IRC 'force build' command now requires python2.3 (for the shlex.split
587 function).
590 * Release 0.6.6 (23 May 2005)
592 ** bugs fixed
594 The 'sendchange', 'stop', and 'sighup' subcommands were broken, simple bugs
595 that were not caught by the test suite. Sorry.
597 The 'buildbot master' command now uses "raw" strings to create .tac files
598 that will still function under windows (since we must put directory names
599 that contain backslashes into that file).
601 The keep-on-disk behavior added in 0.6.5 included the ability to upgrade old
602 in-pickle LogFile instances. This upgrade function was not added to the
603 HTMLLogFile class, so an exception would be raised when attempting to load or
604 display any build with one of these logs (which are normally used only for
605 showing build exceptions). This has been fixed.
607 Several unnecessary imports were removed, so the Buildbot should function
608 normally with just Twisted-2.0.0's "Core" module installed. (of course you
609 will need TwistedWeb, TwistedWords, and/or TwistedMail if you use status
610 targets that require them). The test suite should skip all tests that cannot
611 be run because of missing Twisted modules.
613 The master/slave's basedir is now prepended to sys.path before starting the
614 daemon. This used to happen implicitly (as a result of twistd's setup
615 preamble), but 0.6.5 internalized the invocation of twistd and did not copy
616 this behavior. This change restores the ability to access "private.py"-style
617 modules in the basedir from the master.cfg file with a simple "import
618 private" statement. Thanks to Thomas Vander Stichele for the catch.
621 * Release 0.6.5 (18 May 2005)
623 ** deprecated config keys removed
625 The 'webPortnum', 'webPathname', 'irc', and 'manholePort' config-file keys,
626 which were deprecated in the previous release, have now been removed. In
627 addition, Builders must now always be configured with dictionaries: the
628 support for configuring them with tuples has been removed.
630 ** master/slave creation and startup changed
632 The buildbot no longer uses .tap files to store serialized representations of
633 the buildmaster/buildslave applications. Instead, this release now uses .tac
634 files, which are human-readable scripts that create new instances (rather
635 than .tap files, which were pickles of pre-created instances). 'mktap
636 buildbot' is gone.
638 You will need to update your buildbot directories to handle this. The
639 procedure is the same as creating a new buildmaster or buildslave: use
640 'buildbot master BASEDIR' or 'buildbot slave BASEDIR ARGS..'. This will
641 create a 'buildbot.tac' file in the target directory. The 'buildbot start
642 BASEDIR' will use twistd to start the application.
644 The 'buildbot start' command now looks for a Makefile.buildbot, and if it
645 finds one (and /usr/bin/make exists), it will use it to start the application
646 instead of calling twistd directly. This allows you to customize startup,
647 perhaps by adding environment variables. The setup commands create a sample
648 file in Makefile.sample, but you must copy this to Makefile.buildbot to
649 actually use it. The previous release looked for a bare 'Makefile', and also
650 installed a 'Makefile', so you were always using the customized approach,
651 even if you didn't ask for it. That old Makefile launched the .tap file, so
652 changing names was also necessary to make sure that the new 'buildbot start'
653 doesn't try to run the old .tap file.
655 'buildbot stop' now uses os.kill instead of spawning an external process,
656 making it more likely to work under windows. It waits up to 5 seconds for the
657 daemon to go away, so you can now do 'buildbot stop BASEDIR; buildbot start
658 BASEDIR' with less risk of launching the new daemon before the old one has
659 fully shut down. Likewise, 'buildbot start' imports twistd's internals
660 directly instead of spawning an external copy, so it should work better under
661 windows.
663 ** new documentation
665 All of the old Lore-based documents were converted into a new Texinfo-format
666 manual, and considerable new text was added to describe the installation
667 process. The docs are not yet complete, but they're slowly shaping up to form
668 a proper user's manual.
670 ** new features
672 Arch checkouts can now use precise revision stamps instead of always using
673 the latest revision. A separate Source step for using Bazaar (an alternative
674 Arch client) instead of 'tla' was added. A Source step for Cogito (the new
675 linux kernel VC system) was contributed by Brandon Philips. All Source steps
676 now accept a retry= argument to indicate that failing VC checkouts should be
677 retried a few times (SF#1200395), note that this requires an updated
678 buildslave.
680 The 'buildbot sendchange' command was added, to be used in VC hook scripts to
681 send changes at a pb.PBChangeSource . contrib/arch_buildbot.py was added to
682 use this tool; it should be installed using the 'Arch meta hook' scheme.
684 Changes can now accept a branch= parameter, and Builders have an
685 isBranchImportant() test that acts like isFileImportant(). Thanks to Thomas
686 Vander Stichele. Note: I renamed his tag= to branch=, in anticipation of an
687 upcoming feature to build specific branches. "tag" seemed too CVS-centric.
689 LogFiles have been rewritten to stream the incoming data directly to disk
690 rather than keeping a copy in memory all the time (SF#1200392). This
691 drastically reduces the buildmaster's memory requirements and makes 100MB+
692 log files feasible. The log files are stored next to the serialized Builds,
693 in files like BASEDIR/builder-dir/12-log-compile-output, so you'll want a
694 cron job to delete old ones just like you do with old Builds. Old-style
695 Builds from 0.6.4 and earlier are converted when they are first read, so the
696 first load of the Waterfall display after updating to this release may take
697 quite some time.
699 ** build process updates
701 BuildSteps can now return a status of EXCEPTION, which terminates the build
702 right away. This allows exceptions to be caught right away, but still make
703 sure the build stops quickly.
705 ** bug fixes
707 Some more windows incompatibilities were fixed. The test suite now has two
708 failing tests remaining, both of which appear to be Twisted issues that
709 should not affect normal operation.
711 The test suite no longer raises any deprecation warnings when run against
712 twisted-2.0 (except for the ones which come from Twisted itself).
715 * Release 0.6.4 (28 Apr 2005)
717 ** major bugs fixed
719 The 'buildbot' tool in 0.6.3, when used to create a new buildmaster, failed
720 unless it found a 'changes.pck' file. As this file is created by a running
721 buildmaster, this made 0.6.3 completely unusable for first-time
722 installations. This has been fixed.
724 ** minor bugs fixed
726 The IRC bot had a bug wherein asking it to watch a certain builder (the "I'll
727 give a shout when the build finishes" message) would cause an exception, so
728 it would not, in fact, shout. The HTML page had an exception in the "change
729 sources" page (reached by following the "Changes" link at the top of the
730 column that shows the names of commiters). Re-loading the config file while
731 builders were already attached would result in a benign error message. The
732 server side of the PBListener status client had an exception when providing
733 information about a non-existent Build (e.g., when the client asks for the
734 Build that is currently running, and the server says "None").
736 These bugs have all been fixed.
738 The unit tests now pass under python2.2; they were failing before because of
739 some 2.3isms that crept in. More unit tests which failed under windows now
740 pass, only one (test_webPathname_port) is still failing.
742 ** 'buildbot' tool looks for a .buildbot/options file
744 The 'statusgui' and the 'debugclient' subcommands can both look for a
745 .buildbot/ directory, and an 'options' file therein, to extract default
746 values for the location of the buildmaster. This directory is searched in the
747 current directory, its parent, etc, all the way up to the filesystem root
748 (assuming you own the directories in question). It also look in ~/.buildbot/
749 for this file. This feature allows you to put a .buildbot at the top of your
750 working tree, telling any 'buildbot' invocations you perform therein how to
751 get to the buildmaster associated with that tree's project.
753 Windows users get something similar, using %APPDATA%/buildbot instead of
754 ~/.buildbot .
756 ** windows ShellCommands are launched with 'cmd.exe'
758 The buildslave has been modified to run all list-based ShellCommands by
759 prepending [os.environ['COMSPEC'], '/c'] to the argv list before execution.
760 This should allow the buildslave's PATH to be searched for commands,
761 improving the chances that it can run the same 'trial -o foo' commands as a
762 unix buildslave. The potential downside is that spaces in argv elements might
763 be re-parsed, or quotes might be re-interpreted. The consensus on the mailing
764 list was that this is a useful thing to do, but please report any problems
765 you encounter with it.
767 ** minor features
769 The Waterfall display now shows the buildbot's home timezone at the top of
770 the timestamp column. The default favicon.ico is now much nicer-looking (it
771 is generated with Blender.. the icon.blend file is available in CVS in
772 docs/images/ should you care to play with it).
776 * Release 0.6.3 (25 Apr 2005)
778 ** 'buildbot' tool gets more uses
780 The 'buildbot' executable has acquired three new subcommands. 'buildbot
781 debugclient' brings up the small remote-control panel that connects to a
782 buildmaster (via the slave port and the c['debugPassword']). This tool,
783 formerly in contrib/debugclient.py, lets you reload the config file, force
784 builds, and simulate inbound commit messages. It requires gtk2, glade, and
785 the python bindings for both to be installed.
787 'buildbot statusgui' brings up a live status client, formerly available by
788 running buildbot/clients/gtkPanes.py as a program. This connects to the PB
789 status port that you create with:
791   c['status'].append(client.PBListener(portnum))
793 and shows two boxes per Builder, one for the last build, one for current
794 activity. These boxes are updated in realtime. The effect is primitive, but
795 is intended as an example of what's possible with the PB status interface.
797 'buildbot statuslog' provides a text-based running log of buildmaster events.
799 Note: command names are subject to change. These should get much more useful
800 over time.
802 ** web page has a favicon
804 When constructing the html.Waterfall instance, you can provide the filename
805 of an image that will be provided when the "favicon.ico" resource is
806 requested. Many web browsers display this as an icon next to the URL or
807 bookmark. A goofy little default icon is included.
809 ** web page has CSS
811 Thanks to Thomas Vander Stichele, the Waterfall page is now themable through
812 CSS. The default CSS is located in buildbot/status/classic.css, and creates a
813 page that is mostly identical to the old, non-CSS based table.
815 You can specify a different CSS file to use by passing it as the css=
816 argument to html.Waterfall(). See the docstring for Waterfall for some more
817 details.
819 ** builder "categories"
821 Thomas has added code which places each Builder in an optional "category".
822 The various status targets (Waterfall, IRC, MailNotifier) can accept a list
823 of categories, and they will ignore any activity in builders outside this
824 list. This makes it easy to create some Builders which are "experimental" or
825 otherwise not yet ready for the world to see, or indicate that certain
826 builders should not harass developers when their tests fail, perhaps because
827 the build slaves for them are not yet fully functional.
829 ** Deprecated features
831 *** defining Builders with tuples is deprecated
833 For a long time, the preferred way to define builders in the config file has
834 been with a dictionary. The less-flexible old style of a 4-item tuple (name,
835 slavename, builddir, factory) is now officially deprecated (i.e., it will
836 emit a warning if you use it), and will be removed in the next release.
837 Dictionaries are more flexible: additional keys like periodicBuildTime are
838 simply unavailable to tuple-defined builders.
840 Note: it is a good idea to watch the logfile (usually in twistd.log) when you
841 first start the buildmaster, or whenever you reload the config file. Any
842 warnings or errors in the config file will be found there.
844 *** c['webPortnum'], c['webPathname'], c['irc'] are deprecated
846 All status reporters should be defined in the c['status'] array, using
847 buildbot.status.html.Waterfall or buildbot.status.words.IRC . These have been
848 deprecated for a while, but this is fair warning that these keys will be
849 removed in the next release.
851 *** c['manholePort'] is deprecated
853 Again, this has been deprecated for a while, in favor of:
855  c['manhole'] = master.Manhole(port, username, password)
857 The preferred syntax will eventually let us use other, better kinds of debug
858 shells, such as the experimental curses-based ones in the Twisted sandbox
859 (which would offer command-line editing and history).
861 ** bug fixes
863 The waterfall page has been improved a bit. A circular-reference bug in the
864 web page's TextLog class was fixed, which caused a major memory leak in a
865 long-running buildmaster with large logfiles that are viewed frequently.
866 Modifying the config file in a way which only changed a builder's base
867 directory now works correctly. The 'buildbot' command tries to create
868 slightly more useful master/slave directories, adding a Makefile entry to
869 re-create the .tap file, and removing global-read permissions from the files
870 that may contain buildslave passwords.
872 ** twisted-2.0.0 compatibility
874 Both buildmaster and buildslave should run properly under Twisted-2.0 . There
875 are still some warnings about deprecated functions, some of which could be
876 fixed, but there are others that would require removing compatibility with
877 Twisted-1.3, and I don't expect to do that until 2.0 has been out and stable
878 for at least several months. The unit tests should pass under 2.0, whereas
879 the previous buildbot release had tests which could hang when run against the
880 new "trial" framework in 2.0.
882 The Twisted-specific steps (including Trial) have been updated to match 2.0
883 functionality.
885 ** win32 compatibility
887 Thankt to Nick Trout, more compatibility fixes have been incorporated,
888 improving the chances that the unit tests will pass on windows systems. There
889 are still some problems, and a step-by-step "running buildslaves on windows"
890 document would be greatly appreciated.
892 ** API docs
894 Thanks to Thomas Vander Stichele, most of the docstrings have been converted
895 to epydoc format. There is a utility in docs/gen-reference to turn these into
896 a tree of cross-referenced HTML pages. Eventually these docs will be
897 auto-generated and somehow published on the buildbot web page.
901 * Release 0.6.2 (13 Dec 2004)
903 ** new features
905 It is now possible to interrupt a running build. Both the web page and the
906 IRC bot feature 'stop build' commands, which can be used to interrupt the
907 current BuildStep and accelerate the termination of the overall Build. The
908 status reporting for these still leaves something to be desired (an
909 'interrupt' event is pushed into the column, and the reason for the interrupt
910 is added to a pseudo-logfile for the step that was stopped, but if you only
911 look at the top-level status it appears that the build failed on its own).
913 Builds are also halted if the connection to the buildslave is lost. On the
914 slave side, any active commands are halted if the connection to the
915 buildmaster is lost.
917 ** minor new features
919 The IRC log bot now reports ETA times in a MMSS format like "2m45s" instead
920 of the clunky "165 seconds".
922 ** bug fixes
924 *** Slave Disconnect
926 Slave disconnects should be handled better now: the current build should be
927 abandoned properly. Earlier versions could get into weird states where the
928 build failed to finish, clogging the builder forever (or at least until the
929 buildmaster was restarted).
931 In addition, there are weird network conditions which could cause a
932 buildslave to attempt to connect twice to the same buildmaster. This can
933 happen when the slave is sending large logfiles over a slow link, while using
934 short keepalive timeouts. The buildmaster has been fixed to allow the second
935 connection attempt to take precedence over the first, so that the older
936 connection is jettisoned to make way for the newer one.
938 In addition, the buildslave has been fixed to be less twitchy about timeouts.
939 There are now two parameters: keepaliveInterval (which is controlled by the
940 mktap 'keepalive' argument), and keepaliveTimeout (which requires editing the
941 .py source to change from the default of 30 seconds). The slave expects to
942 see *something* from the master at least once every keepaliveInterval
943 seconds, and will try to provoke a response (by sending a keepalive request)
944 'keepaliveTimeout' seconds before the end of this interval just in case there
945 was no regular traffic. Any kind of traffic will qualify, including
946 acknowledgements of normal build-status updates.
948 The net result is that, as long as any given PB message can be sent over the
949 wire in less than 'keepaliveTimeout' seconds, the slave should not mistakenly
950 disconnect because of a timeout. There will be traffic on the wire at least
951 every 'keepaliveInterval' seconds, which is what you want to pay attention to
952 if you're trying to keep an intervening NAT box from dropping what it thinks
953 is an abandoned connection. A quiet loss of connection will be detected
954 within 'keepaliveInterval' seconds.
956 *** Large Logfiles
958 The web page rendering code has been fixed to deliver large logfiles in
959 pieces, using a producer/consumer apparatus. This avoids the large spike in
960 memory consumption when the log file body was linearized into a single string
961 and then buffered in the socket's application-side transmit buffer. This
962 should also avoid the 640k single-string limit for web.distrib servers that
963 could be hit by large (>640k) logfiles.
967 * Release 0.6.1 (23 Nov 2004)
969 ** win32 improvements/bugfixes
971 Several changes have gone in to improve portability to non-unix systems. It
972 should be possible to run a build slave under windows without major issues
973 (although step-by-step documentation is still greatly desired: check the
974 mailing list for suggestions from current win32 users).
976 *** PBChangeSource: use configurable directory separator, not os.sep
978 The PBChangeSource, which listens on a TCP socket for change notices
979 delivered from tools like contrib/svn_buildbot.py, was splitting source
980 filenames with os.sep . This is inappropriate, because those file names are
981 coming from the VC repository, not the local filesystem, and the repository
982 host may be running a different OS (with a different separator convention)
983 than the buildmaster host. In particular, a win32 buildmaster using a CVS
984 repository running on a unix box would be confused.
986 PBChangeSource now takes a sep= argument to indicate the separator character
987 to use.
989 *** build saving should work better
991 windows cannot do the atomic os.rename() trick that unix can, so under win32
992 the buildmaster falls back to save/delete-old/rename, which carries a slight
993 risk of losing a saved build log (if the system were to crash between the
994 delete-old and the rename).
996 ** new features
998 *** test-result tracking
1000 Work has begun on fine-grained test-result handling. The eventual goal is to
1001 be able to track individual tests over time, and create problem reports when
1002 a test starts failing (which then are resolved when the test starts passing
1003 again). The first step towards this is an ITestResult interface, and code in
1004 the TrialTestParser to create such results for all non-passing tests (the
1005 ones for which Trial emits exception tracebacks).
1007 These test results are currently displayed in a tree-like display in a page
1008 accessible from each Build's page (follow the numbered link in the yellow
1009 box at the start of each build to get there).
1011 This interface is still in flux, as it really wants to be able to accomodate
1012 things like compiler warnings and tests that are skipped because of missing
1013 libraries or unsupported architectures.
1015 ** bug fixes
1017 *** VC updates should survive temporary failures
1019 Some VC systems (CVS and SVN in particular) get upset when files are turned
1020 into directories or vice versa, or when repository items are moved without
1021 the knowledge of the VC system. The usual symptom is that a 'cvs update'
1022 fails where a fresh checkout succeeds.
1024 To avoid having to manually intervene, the build slaves' VC commands have
1025 been refactored to respond to update failures by deleting the tree and
1026 attempting a full checkout. This may cause some unnecessary effort when,
1027 e.g., the CVS server falls off the net, but in the normal case it will only
1028 come into play when one of these can't-cope situations arises.
1030 *** forget about an existing build when the slave detaches
1032 If the slave was lost during a build, the master did not clear the
1033 .currentBuild reference, making that builder unavailable for later builds.
1034 This has been fixed, so that losing a slave should be handled better. This
1035 area still needs some work, I think it's still possible to get both the
1036 slave and the master wedged by breaking the connection at just the right
1037 time. Eventually I want to be able to resume interrupted builds (especially
1038 when the interruption is the result of a network failure and not because the
1039 slave or the master actually died).
1041 *** large logfiles now consume less memory
1043 Build logs are stored as lists of (type,text) chunks, so that
1044 stdout/stderr/headers can be displayed differently (if they were
1045 distinguishable when they were generated: stdout and stderr are merged when
1046 usePTY=1). For multi-megabyte logfiles, a large list with many short strings
1047 could incur a large overhead. The new behavior is to merge same-type string
1048 chunks together as they are received, aiming for a chunk size of about 10kb,
1049 which should bring the overhead down to a more reasonable level.
1051 There remains an issue with actually delivering large logfiles over, say,
1052 the HTML interface. The string chunks must be merged together into a single
1053 string before delivery, which causes a spike in the memory usage when the
1054 logfile is viewed. This can also break twisted.web.distrib -type servers,
1055 where the underlying PB protocol imposes a 640k limit on the size of
1056 strings. This will be fixed (with a proper Producer/Consumer scheme) in the
1057 next release.
1060 * Release 0.6.0 (30 Sep 2004)
1062 ** new features
1064 *** /usr/bin/buildbot control tool
1066 There is now an executable named 'buildbot'. For now, this just provides a
1067 convenient front-end to mktap/twistd/kill, but eventually it will provide
1068 access to other client functionality (like the 'try' builds, and a status
1069 client). Assuming you put your buildbots in /var/lib/buildbot/master/FOO,
1070 you can do 'buildbot create-master /var/lib/buildbot/master/FOO' and it will
1071 create the .tap file and set up a sample master.cfg for you. Later,
1072 'buildbot start /var/lib/buildbot/master/FOO' will start the daemon.
1075 *** build status now saved in external files, -shutdown.tap unnecessary
1077 The status rewrite included a change to save all build status in a set of
1078 external files. These files, one per build, are put in a subdirectory of the
1079 master's basedir (named according to the 'builddir' parameter of the Builder
1080 configuration dictionary). This helps keep the buildmaster's memory
1081 consumption small: the (potentially large) build logs are kept on disk
1082 instead of in RAM. There is a small cache (2 builds per builder) kept in
1083 memory, but everything else lives on disk.
1085 The big change is that the buildmaster now keeps *all* status in these
1086 files. It is no longer necessary to preserve the buildbot-shutdown.tap file
1087 to run a persistent buildmaster. The buildmaster may be launched with
1088 'twistd -f buildbot.tap' each time, in fact the '-n' option can be added to
1089 prevent twistd from automatically creating the -shutdown.tap file.
1091 There is still one lingering bug with this change: the Expectations object
1092 for each builder (which records how long the various steps took, to provide
1093 an ETA value for the next time) is not yet saved. The result is that the
1094 first build after a restart will not provide an ETA value.
1096 0.6.0 keeps status in a single file per build, as opposed to 0.5.0 which
1097 kept status in many subdirectories (one layer for builds, another for steps,
1098 and a third for logs). 0.6.0 will detect and delete these subdirectories as
1099 it overwrites them.
1101 The saved builds are optional. To prevent disk usage from growing without
1102 bounds, you may want to set up a cron job to run 'find' and delete any which
1103 are too old. The status displays will happily survive without those saved
1104 build objects.
1106 The set of recorded Changes is kept in a similar file named 'changes.pck'.
1109 *** source checkout now uses timestamp/revision
1111 Source checkouts are now performed with an appropriate -D TIMESTAMP (for
1112 CVS) or -r REVISION (for SVN) marker to obtain the exact sources that were
1113 specified by the most recent Change going into the current Build. This
1114 avoids a race condition in which a change might be committed after the build
1115 has started but before the source checkout has completed, resulting in a
1116 mismatched set of source files. Such changes are now ignored.
1118 This works by keeping track of repository-wide revision/transaction numbers
1119 (for version control systems that offer them, like SVN). The checkout or
1120 update is performed with the highest such revision number. For CVS (which
1121 does not have them), the timestamp of each commit message is used, and a -D
1122 argument is created to place the checkout squarely in the middle of the "tree
1123 stable timer"'s window.
1125 This also provides the infrastructure for the upcoming 'try' feature. All
1126 source-checkout commands can now obtain a base revision marker and a patch
1127 from the Build, allowing certain builds to be performed on something other
1128 than the most recent sources.
1130 See source.xhtml and steps.xhtml for details.
1133 *** Darcs and Arch support added
1135 There are now build steps which retrieve a source tree from Darcs and Arch
1136 repositories. See steps.xhtml for details.
1138 Preliminary P4 support has been added, thanks to code from Dave Peticolas.
1139 You must manually set up each build slave with an appropriate P4CLIENT: all
1140 buildbot does is run 'p4 sync' at the appropriate times.
1143 *** Status reporting rewritten
1145 Status reporting was completely revamped. The config file now accepts a
1146 BuildmasterConfig['status'] entry, with a list of objects that perform status
1147 delivery. The old config file entries which controlled the web status port
1148 and the IRC bot have been deprecated in favor of adding instances to
1149 ['status']. The following status-delivery classes have been implemented, all
1150 in the 'buildbot.status' package:
1152  client.PBListener(port, username, passwd)
1153  html.Waterfall(http_port, distrib_port)
1154  mail.MailNotifier(fromaddr, mode, extraRecipients..)
1155  words.IRC(host, nick, channels)
1157 See the individual docstrings for details about how to use each one. You can
1158 create new status-delivery objects by following the interfaces found in the
1159 buildbot.interfaces module.
1162 *** BuildFactory configuration process changed
1164 The basic BuildFactory class is now defined in buildbot.process.factory
1165 rather than buildbot.process.base, so you will have to update your config
1166 files. factory.BuildFactory is the base class, which accepts a list of Steps
1167 to run. See docs/factories.xhtml for details.
1169 There are now easier-to-use BuildFactory classes for projects which use GNU
1170 Autoconf, perl's MakeMaker (CPAN), python's distutils (but no unit tests),
1171 and Twisted's Trial. Each one takes a separate 'source' Step to obtain the
1172 source tree, and then fills in the rest of the Steps for you.
1175 *** CVS/SVN VC steps unified, simplified
1177 The confusing collection of arguments for the CVS step ('clobber=',
1178 'copydir=', and 'export=') have been removed in favor of a single 'mode'
1179 argument. This argument describes how you want to use the sources: whether
1180 you want to update and compile everything in the same tree (mode='update'),
1181 or do a fresh checkout and full build each time (mode='clobber'), or
1182 something in between.
1184 The SVN (Subversion) step has been unified and accepts the same mode=
1185 parameter as CVS. New version control steps will obey the same interface.
1187 Most of the old configuration arguments have been removed. You will need to
1188 update your configuration files to use the new arguments. See
1189 docs/steps.xhtml for a description of all the new parameters.
1192 *** Preliminary Debian packaging added
1194 Thanks to the contributions of Kirill Lapshin, we can now produce .deb
1195 installer packages. These are still experimental, but they include init.d
1196 startup/shutdown scripts, which the the new /usr/bin/buildbot to invoke
1197 twistd. Create your buildmasters in /var/lib/buildbot/master/FOO, and your
1198 slaves in /var/lib/buildbot/slave/BAR, then put FOO and BAR in the
1199 appropriate places in /etc/default/buildbot . After that, the buildmasters
1200 and slaves will be started at every boot.
1202 Pre-built .debs are not yet distributed. Use 'debuild -uc -us' from the
1203 source directory to create them.
1206 ** minor features
1209 *** Source Stamps
1211 Each build now has a "source stamp" which describes what sources it used. The
1212 idea is that the sources for this particular build can be completely
1213 regenerated from the stamp. The stamp is a tuple of (revision, patch), where
1214 the revision depends on the VC system being used (for CVS it is either a
1215 revision tag like "BUILDBOT-0_5_0" or a datestamp like "2004/07/23", for
1216 Subversion it is a revision number like 11455). This must be combined with
1217 information from the Builder that is constant across all builds (something to
1218 point at the repository, and possibly a branch indicator for CVS and other VC
1219 systems that don't fold this into the repository string).
1221 The patch is an optional unified diff file, ready to be applied by running
1222 'patch -p0 <PATCH' from inside the workdir. This provides support for the
1223 'try' feature that will eventually allow developers to run buildbot tests on
1224 their code before checking it in.
1227 *** SIGHUP causes the buildmaster's configuration file to be re-read
1229 *** IRC bot now has 'watch' command
1231 You can now tell the buildbot's IRC bot to 'watch <buildername>' on a builder
1232 which is currently performing a build. When that build is finished, the
1233 buildbot will make an announcement (including the results of the build).
1235 The IRC 'force build' command will also announce when the resulting build has
1236 completed.
1239 *** the 'force build' option on HTML and IRC status targets can be disabled
1241 The html.Waterfall display and the words.IRC bot may be constructed with an
1242 allowForce=False argument, which removes the ability to force a build through
1243 these interfaces. Future versions will be able to restrict this build-forcing
1244 capability to authenticated users. The per-builder HTML page no longer
1245 displays the 'Force Build' buttons if it does not have this ability. Thanks
1246 to Fred Drake for code and design suggestions.
1249 *** master now takes 'projectName' and 'projectURL' settings
1251 These strings allow the buildbot to describe what project it is working for.
1252 At the moment they are only displayed on the Waterfall page, but in the next
1253 release they will be retrieveable from the IRC bot as well.
1256 *** survive recent (SVN) Twisted versions
1258 The buildbot should run correctly (albeit with plenty of noisy deprecation
1259 warnings) under the upcoming Twisted-2.0 release.
1262 *** work-in-progress realtime Trial results acquisition
1264 Jonathan Simms (<slyphon>) has been working on 'retrial', a rewrite of
1265 Twisted's unit test framework that will most likely be available in
1266 Twisted-2.0 . Although it is not yet complete, the buildbot will be able to
1267 use retrial in such a way that build status is reported on a per-test basis,
1268 in real time. This will be the beginning of fine-grained test tracking and
1269 Problem management, described in docs/users.xhtml .
1272 * Release 0.5.0 (22 Jul 2004)
1274 ** new features
1276 *** web.distrib servers via TCP
1278 The 'webPathname' config option, which specifies a UNIX socket on which to
1279 publish the waterfall HTML page (for use by 'mktap web -u' or equivalent),
1280 now accepts a numeric port number. This publishes the same thing via TCP,
1281 allowing the parent web server to live on a separate machine.
1283 This config option could be named better, but it will go away altogether in
1284 a few releases, when status delivery is unified. It will be replaced with a
1285 WebStatusTarget object, and the config file will simply contain a list of
1286 various kinds of status targets.
1288 *** 'master.cfg' filename is configurable
1290 The buildmaster can use a config file named something other than
1291 "master.cfg". Use the --config=foo.cfg option to mktap to control this.
1293 *** FreshCVSSource now uses newcred (CVSToys >= 1.0.10)
1295 The FreshCVSSource class now defaults to speaking to freshcvs daemons from
1296 modern CVSToys releases. If you need to use the buildbot with a daemon from
1297 CVSToys-1.0.9 or earlier, use FreshCVSSourceOldcred instead. Note that the
1298 new form only requires host/port/username/passwd: the "serviceName"
1299 parameter is no longer meaningful.
1301 *** Builders are now configured with a dictionary, not a tuple
1303 The preferred way to set up a Builder in master.cfg is to provide a
1304 dictionary with various keys, rather than a (non-extensible) 4-tuple. See
1305 docs/config.xhtml for details. The old tuple-way is still supported for now,
1306 it will probably be deprecated in the next release and removed altogether in
1307 the following one.
1309 *** .periodicBuildTime is now exposed to the config file
1311 To set a builder to run at periodic intervals, simply add a
1312 'periodicBuildTime' key to its master.cfg dictionary. Again, see
1313 docs/config.xhtml for details.
1315 *** svn_buildbot.py adds --include, --exclude
1317 The commit trigger script now gives you more control over which files are
1318 sent to the buildmaster and which are not.
1320 *** usePTY is controllable at slave mktap time
1322 The buildslaves usually run their child processes in a pty, which creates a
1323 process group for all the children, which makes it much easier to kill them
1324 all at once (i.e. if a test hangs). However this causes problems on some
1325 systems. Rather than hacking slavecommand.py to disable the use of these
1326 ptys, you can now create the slave's .tap file with --usepty=0 at mktap
1327 time.
1329 ** Twisted changes
1331 A summary of warnings (e.g. DeprecationWarnings) is provided as part of the
1332 test-case summarizer. The summarizer also counts Skips, expectedFailures,
1333 and unexpectedSuccesses, displaying the counts on the test step's event box.
1335 The RunUnitTests step now uses "trial -R twisted" instead of "trial
1336 twisted.test", which is a bit cleaner. All .pyc files are deleted before
1337 starting trial, to avoid getting tripped up by deleted .py files.
1339 ** documentation
1341 docs/config.xhtml now describes the syntax and allowed contents of the
1342 'master.cfg' configuration file.
1344 ** bugfixes
1346 Interlocks had a race condition that could cause the lock to get stuck
1347 forever.
1349 FreshCVSSource has a prefix= argument that was moderately broken (it used to
1350 only work if the prefix was a single directory component). It now works with
1351 subdirectories.
1353 The buildmaster used to complain when it saw the "info" directory in a
1354 slave's workspace. This directory is used to publish information about the
1355 slave host and its administrator, and is not a leftover build directory as
1356 the complaint suggested. This complain has been silenced.
1359 * Release 0.4.3 (30 Apr 2004)
1361 ** PBChangeSource made explicit
1363 In 0.4.2 and before, an internal interface was available which allowed
1364 special clients to inject changes into the Buildmaster. This interface is
1365 used by the contrib/svn_buildbot.py script. The interface has been extracted
1366 into a proper PBChangeSource object, which should be created in the
1367 master.cfg file just like the other kinds of ChangeSources. See
1368 docs/sources.xhtml for details.
1370 If you were implicitly using this change source (for example, if you use
1371 Subversion and the svn_buildbot.py script), you *must* add this source to
1372 your master.cfg file, or changes will not be delivered and no builds will be
1373 triggered.
1375 The PBChangeSource accepts the same "prefix" argument as all other
1376 ChangeSources. For a SVN repository that follows the recommended practice of
1377 using "trunk/" for the trunk revisions, you probably want to construct the
1378 source like this:
1380  source = PBChangeSource(prefix="trunk")
1382 to make sure that the Builders are given sensible (trunk-relative)
1383 filenames for each changed source file.
1385 ** Twisted changes
1387 *** step_twisted.RunUnitTests can change "bin/trial"
1389 The twisted RunUnitTests step was enhanced to let you run something other
1390 than "bin/trial", making it easier to use a buildbot on projects which use
1391 Twisted but aren't actually Twisted itself.
1393 *** Twisted now uses Subversion
1395 Now that Twisted has moved from CVS to SVN, the Twisted build processes have
1396 been modified to perform source checkouts from the Subversion repository.
1398 ** minor feature additions
1400 *** display Changes with HTML
1402 Changes are displayed with a bit more pizazz, and a links= argument was
1403 added to allow things like ViewCVS links to be added to the display
1404 (although it is not yet clear how this argument should be used: the
1405 interface remains subject to change untill it has been documented).
1407 *** display ShellCommand logs with HTML
1409 Headers are in blue, stderr is in red (unless usePTY=1 in which case stderr
1410 and stdout are indistinguishable). A link is provided which returns the same
1411 contents as plain text (by appending "?text=1" to the URL).
1413 *** buildslaves send real tracebacks upon error
1415 The .unsafeTracebacks option has been turned on for the buildslaves,
1416 allowing them to send a full stack trace when an exception occurs, which is
1417 logged in the buildmaster's twistd.log file. This makes it much easier to
1418 determine what went wrong on the slave side.
1420 *** BasicBuildFactory refactored
1422 The BasicBuildFactory class was refactored to make it easier to create
1423 derivative classes, in particular the BasicSVN variant.
1425 *** "ping buildslave" web button added
1427 There is now a button on the "builder information" page that lets a web user
1428 initiate a ping of the corresponding build slave (right next to the button
1429 that lets them force a build). This was added to help track down a problem
1430 with the slave keepalives.
1432 ** bugs fixed:
1434 You can now have multiple BuildSteps with the same name (the names are used
1435 as hash keys in the data structure that helps determine ETA values for each
1436 step, the new code creates unique key names if necessary to avoid
1437 collisions). This means that, for example, you do not have to create a
1438 BuildStep subclass just to have two Compile steps in the same process.
1440 If CVSToys is not installed, the tests that depend upon it are skipped.
1442 Some tests in 0.4.2 failed because of a missing set of test files, they are
1443 now included in the tarball properly.
1445 Slave keepalives should work better now in the face of silent connection
1446 loss (such as when an intervening NAT box times out the association), the
1447 connection should be reestablished in minutes instead of hours.
1449 Shell commands on the slave are invoked with an argument list instead of the
1450 ugly and error-prone split-on-spaces approach. If the ShellCommand is given
1451 a string (instead of a list), it will fall back to splitting on spaces.
1452 Shell commands should work on win32 now (using COMSPEC instead of /bin/sh).
1454 Buildslaves under w32 should theoretically work now, and one was running for
1455 the Twisted buildbot for a while until the machine had to be returned.
1457 The "header" lines in ShellCommand logs (which include the first line, that
1458 displays the command being run, and the last, which shows its exit status)
1459 are now generated by the buildslave side instead of the local (buildmaster)
1460 side. This can provide better error handling and is generally cleaner.
1461 However, if you have an old buildslave (running 0.4.2 or earlier) and a new
1462 buildmaster, then neither end will generate these header lines.
1464 CVSCommand was improved, in certain situations 0.4.2 would perform
1465 unnecessary checkouts (when an update would have sufficed). Thanks to Johan
1466 Dahlin for the patches. The status output was fixed as well, so that
1467 failures in CVS and SVN commands (such as not being able to find the 'svn'
1468 executable) make the step status box red.
1470 Subversion support was refactored to make it behave more like CVS. This is a
1471 work in progress and will be improved in the next release.
1474 * Release 0.4.2 (08 Jan 2004)
1476 ** test suite updated
1478 The test suite has been completely moved over to Twisted's "Trial"
1479 framework, and all tests now pass. To run the test suite (consisting of 64
1480 tests, probably covering about 30% of BuildBot's logic), do this:
1482  PYTHONPATH=. trial -v buildbot.test
1484 ** Mail parsers updated
1486 Several bugs in the mail-parsing code were fixed, allowing a buildmaster to
1487 be triggered by mail sent out by a CVS repository. (The Twisted Buildbot is
1488 now using this to trigger builds, as their CVS server machine is having some
1489 difficulties with FreshCVS). The FreshCVS mail format for directory
1490 additions appears to have changed recently: the new parser should handle
1491 both old and new-style messages.
1493 A parser for Bonsai commit messages (buildbot.changes.mail.parseBonsaiMail)
1494 was contributed by Stephen Davis. Thanks Stephen!
1496 ** CVS "global options" now available
1498 The CVS build step can now accept a list of "global options" to give to the
1499 cvs command. These go before the "update"/"checkout" word, and are described
1500 fully by "cvs --help-options". Two useful ones might be "-r", which causes
1501 checked-out files to be read-only, and "-R", which assumes the repository is
1502 read-only (perhaps by not attempting to write to lock files).
1505 * Release 0.4.1 (09 Dec 2003)
1507 ** MaildirSources fixed
1509 Several bugs in MaildirSource made them unusable. These have been fixed (for
1510 real this time). The Twisted buildbot is using an FCMaildirSource while they
1511 fix some FreshCVS daemon problems, which provided the encouragement for
1512 getting these bugs fixed.
1514 In addition, the use of DNotify (only available under linux) was somehow
1515 broken, possibly by changes in some recent version of Python. It appears to
1516 be working again now (against both python-2.3.3c1 and python-2.2.1).
1518 ** master.cfg can use 'basedir' variable
1520 As documented in the sample configuration file (but not actually implemented
1521 until now), a variable named 'basedir' is inserted into the namespace used
1522 by master.cfg . This can be used with something like:
1524   os.path.join(basedir, "maildir")
1526 to obtain a master-basedir-relative location.
1529 * Release 0.4.0 (05 Dec 2003)
1531 ** newapp
1533 I've moved the codebase to Twisted's new 'application' framework, which
1534 drastically cleans up service startup/shutdown just like newcred did for
1535 authorization. This is mostly an internal change, but the interface to
1536 IChangeSources was modified, so in the off chance that someone has written a
1537 custom change source, it may have to be updated to the new scheme.
1539 The most user-visible consequence of this change is that now both
1540 buildmasters and buildslaves are generated with the standard Twisted 'mktap'
1541 utility. Basic documentation is in the README file.
1543 Both buildmaster and buildslave .tap files need to be re-generated to run
1544 under the new code. I have not figured out the styles.Versioned upgrade path
1545 well enough to avoid this yet. Sorry.
1547 This also means that both buildslaves and the buildmaster require
1548 Twisted-1.1.0 or later.
1550 ** reloadable master.cfg
1552 Most aspects of a buildmaster is now controlled by a configuration file
1553 which can be re-read at runtime without losing build history. This feature
1554 makes the buildmaster *much* easier to maintain.
1556 In the previous release, you would create the buildmaster by writing a
1557 program to define the Builders and ChangeSources and such, then run it to
1558 create the .tap file. In the new release, you use 'mktap' to create the .tap
1559 file, and the only parameter you give it is the base directory to use. Each
1560 time the buildmaster starts, it will look for a file named 'master.cfg' in
1561 that directory and parse it as a python script. That script must define a
1562 dictionary named 'BuildmasterConfig' with various keys to define the
1563 builders, the known slaves, what port to use for the web server, what IRC
1564 channels to connect to, etc.
1566 This config file can be re-read at runtime, and the buildmaster will compute
1567 the differences and add/remove services as necessary. The re-reading is
1568 currently triggered through the debug port (contrib/debugclient.py is the
1569 debug port client), but future releases will add the ability to trigger the
1570 reconfiguration by IRC command, web page button, and probably a local UNIX
1571 socket (with a helper script to trigger a rebuild locally).
1573 docs/examples/twisted_master.cfg contains a sample configuration file, which
1574 also lists all the keys that can be set.
1576 There may be some bugs lurking, such as re-configuring the buildmaster while
1577 a build is running. It needs more testing.
1579 ** MaxQ support
1581 Radix contributed some support scripts to run MaxQ test scripts. MaxQ
1582 (http://maxq.tigris.org/) is a web testing tool that allows you to record
1583 HTTP sessions and play them back.
1585 ** Builders can now wait on multiple Interlocks
1587 The "Interlock" code has been enhanced to allow multiple builders to wait on
1588 each one. This was done to support the new config-file syntax for specifying
1589 Interlocks (in which each interlock is a tuple of A and [B], where A is the
1590 builder the Interlock depends upon, and [B] is a list of builders that
1591 depend upon the Interlock).
1593 "Interlock" is misnamed. In the next release it will be changed to
1594 "Dependency", because that's what it really expresses. A new class (probably
1595 called Interlock) will be created to express the notion that two builders
1596 should not run at the same time, useful when multiple builders are run on
1597 the same machine and thrashing results when several CPU- or disk- intensive
1598 compiles are done simultaneously.
1600 ** FreshCVSSource can now handle newcred-enabled FreshCVS daemons
1602 There are now two FreshCVSSource classes: FreshCVSSourceNewcred talks to
1603 newcred daemons, and FreshCVSSourceOldcred talks to oldcred ones. Mind you,
1604 FreshCVS doesn't yet do newcred, but when it does, we'll be ready.
1606 'FreshCVSSource' maps to the oldcred form for now. That will probably change
1607 when the current release of CVSToys supports newcred by default.
1609 ** usePTY=1 on posix buildslaves
1611 When a buildslave is running under POSIX (i.e. pretty much everything except
1612 windows), child processes are created with a pty instead of separate
1613 stdin/stdout/stderr pipes. This makes it more likely that a hanging build
1614 (when killed off by the timeout code) will have all its sub-childred cleaned
1615 up. Non-pty children would tend to leave subprocesses running because the
1616 buildslave was only able to kill off the top-level process (typically
1617 'make').
1619 Windows doesn't have any concept of ptys, so non-posix systems do not try to
1620 enable them.
1622 ** mail parsers should actually work now
1624 The email parsing functions (FCMaildirSource and SyncmailMaildirSource) were
1625 broken because of my confused understanding of how python class methods
1626 work. These sources should be functional now.
1628 ** more irc bot sillyness
1630 The IRC bot can now perform half of the famous AYBABTO scene.
1633 * Release 0.3.5 (19 Sep 2003)
1635 ** newcred
1637 Buildbot has moved to "newcred", a new authorization framework provided by
1638 Twisted, which is a good bit cleaner and easier to work with than the
1639 "oldcred" scheme in older versions. This causes both buildmaster and
1640 buildslaves to depend upon Twisted 1.0.7 or later. The interface to
1641 'makeApp' has changed somewhat (the multiple kinds of remote connections all
1642 use the same TCP port now).
1644 Old buildslaves will get "_PortalWrapper instance has no attribute
1645 'remote_username'" errors when they try to connect. They must be upgraded.
1647 The FreshCVSSource uses PB to connect to the CVSToys server. This has been
1648 upgraded to use newcred too. If you get errors (TODO: what do they look
1649 like?) in the log when the buildmaster tries to connect, you need to upgrade
1650 your FreshCVS service or use the 'useOldcred' argument when creating your
1651 FreshCVSSource. This is a temporary hack to allow the buildmaster to talk to
1652 oldcred CVSToys servers. Using it will trigger deprecation warnings. It will
1653 go away eventually.
1655 In conjunction with this change, makeApp() now accepts a password which can
1656 be applied to the debug service.
1658 ** new features
1660 *** "copydir" for CVS checkouts
1662 The CVS build step can now accept a "copydir" parameter, which should be a
1663 directory name like "source" or "orig". If provided, the CVS checkout is
1664 done once into this directory, then copied into the actual working directory
1665 for compilation etc. Later updates are done in place in the copydir, then
1666 the workdir is replaced with a copy.
1668 This reduces CVS bandwidth (update instead of full checkout) at the expense
1669 of twice the disk space (two copies of the tree).
1671 *** Subversion (SVN) support
1673 Radix (Christopher Armstrong) contributed early support for building
1674 Subversion-based trees. The new 'SVN' buildstep behaves roughly like the
1675 'CVS' buildstep, and the contrib/svn_buildbot.py script can be used as a
1676 checkin trigger to feed changes to a running buildmaster.
1678 ** notable bugfixes
1680 *** .tap file generation
1682 We no longer set the .tap filename, because the buildmaster/buildslave
1683 service might be added to an existing .tap file and we shouldn't presume to
1684 own the whole thing. You may want to manually rename the "buildbot.tap" file
1685 to something more meaningful (like "buildslave-bot1.tap").
1687 *** IRC reconnect
1689 If the IRC server goes away (it was restarted, or the network connection was
1690 lost), the buildmaster will now schedule a reconnect attempt.
1692 *** w32 buildslave fixes
1694 An "rm -rf" was turned into shutil.rmtree on non-posix systems.
1697 * Release 0.3.4 (28 Jul 2003)
1699 ** IRC client
1701 The buildmaster can now join a set of IRC channels and respond to simple
1702 queries about builder status.
1704 ** slave information
1706 The build slaves can now report information from a set of info/* files in
1707 the slave base directory to the buildmaster. This will be used by the slave
1708 administrator to announce details about the system hosting the slave,
1709 contact information, etc. For now, info/admin should contain the name/email
1710 of the person who is responsible for the buildslave, and info/host should
1711 describe the system hosting the build slave (OS version, CPU speed, memory,
1712 etc). The contents of these files are made available through the waterfall
1713 display.
1715 ** change notification email parsers
1717 A parser for Syncmail (syncmail.sourceforge.net) was added. SourceForge
1718 provides examples of setting up syncmail to deliver CVS commit messages to
1719 mailing lists, so hopefully this will make it easier for sourceforge-hosted
1720 projects to set up a buildbot.
1722 email processors were moved into buildbot.changes.mail . FCMaildirSource was
1723 moved, and the compatibility location (buildbot.changes.freshcvsmail) will
1724 go away in the next release.
1726 ** w32 buildslave ought to work
1728 Some non-portable code was changed to make it more likely that the
1729 buildslave will run under windows. The Twisted buildbot now has a
1730 (more-or-less) working w32 buildslave.
1733 * Release 0.3.3 (21 May 2003):
1735 ** packaging changes
1737 *** include doc/examples in the release. Oops again.
1739 ** network changes
1741 *** add keepalives to deal with NAT boxes
1743 Some NAT boxes drop port mappings if the TCP connection looks idle for too
1744 long (maybe 30 minutes?). Add application-level keepalives (dummy commands
1745 sent from slave to master every 10 minutes) to appease the NAT box and keep
1746 our connection alive. Enable this with --keepalive in the slave mktap
1747 command line. Check the README for more details.
1749 ** UI changes
1751 *** allow slaves to trigger any build that they host
1753 Added an internal function to ask the buildmaster to start one of their
1754 builds. Must be triggered with a debugger or manhole on the slave side for
1755 now, will add a better UI later.
1757 *** allow web page viewers to trigger any build
1759 Added a button to the per-build page (linked by the build names on the third
1760 row of the waterfall page) to allow viewers to manually trigger builds.
1761 There is a field for them to indicate who they are and why they are
1762 triggering the build. It is possible to abuse this, but for now the benefits
1763 outweigh the damage that could be done (worst case, someone can make your
1764 machine run builds continuously).
1766 ** generic buildprocess changes
1768 *** don't queue multiple builds for offline slaves
1770 If a slave is not online when a build is ready to run, that build is queued
1771 so the slave will run it when it next connects. However, the buildmaster
1772 used to queue every such build, so the poor slave machine would be subject
1773 to tens or hundreds of builds in a row when they finally did come online.
1774 The buildmaster has been changed to merge these multiple builds into a
1775 single one.
1777 *** bump ShellCommand default timeout to 20 minutes
1779 Used for testing out the win32 twisted builder. I will probably revert this
1780 in the next relese.
1782 *** split args in ShellCommand ourselves instead of using /bin/sh
1784 This should remove the need for /bin/sh on the slave side, improving the
1785 chances that the buildslave can run on win32.
1787 *** add configureEnv argument to Configure step, pass env dict to slave
1789 Allows build processes to do things like 'CFLAGS=-O0 ./configure' without
1790 using /bin/sh to set the environment variable
1792 ** Twisted buildprocess changes
1794 *** warn instead of flunk the build when cReactor or qtreactor tests fail
1796 These two always fail. For now, downgrade those failures to a warning
1797 (orange box instead of red).
1799 *** don't use 'clobber' on remote builds
1801 Builds that run on remote machines (freebsd, OS-X) now use 'cvs update'
1802 instead of clobbering their trees and doing a fresh checkout. The multiple
1803 simultaneous CVS checkouts were causing a strain on Glyph's upstream
1804 bandwidth.
1806 *** use trial --testmodule instead of our own test-case-name grepper
1808 The Twisted coding/testing convention has developers put 'test-case-name'
1809 tags (emacs local variables, actually) in source files to indicate which
1810 test cases should be run to exercise that code. Twisted's unit-test
1811 framework just acquired an argument to look for these tags itself. Use that
1812 instead of the extra FindUnitTestsForFiles build step we were doing before.
1813 Removes a good bit of code from buildbot and into Twisted where it really
1814 belongs.
1817 * Release 0.3.2 (07 May 2003):
1819 ** packaging changes
1821 *** fix major packaging bug: none of the buildbot/* subdirectories were
1822 included in the 0.3.1 release. Sorry, I'm still figuring out distutils
1823 here..
1825 ** internal changes
1827 *** use pb.Cacheable to update Events in remote status client. much cleaner.
1829 *** start to clean up BuildProcess->status.builder interface
1831 ** bug fixes
1833 *** waterfall display was missing a <tr>, causing it to be misrendered in most
1834 browsers (except the one I was testing it with, of course)
1836 *** URL without trailing slash (when served in a twisted-web distributed
1837 server, with a url like "http://twistedmatrix.com/~warner.twistd") should do
1838 redirect to URL-with-trailing-slash, otherwise internal hrefs are broken.
1840 *** remote status clients: forget RemoteReferences at shutdown, removes
1841 warnings about "persisting Ephemerals"
1843 ** Twisted buildprocess updates:
1845 *** match build process as of twisted-1.0.5
1846 **** use python2.2 everywhere now that twisted rejects python2.1
1847 **** look for test-result constants in multiple places
1848 *** move experimental 'trial --jelly' code to separate module
1849 *** add FreeBSD builder
1850 *** catch rc!=0 in HLint step
1851 *** remove RunUnitTestsRandomly, use randomly=1 parameter instead
1852 *** parameterize ['twisted.test'] default test case to make subclassing easier
1853 *** ignore internal distutils warnings in python2.3 builder
1856 * Release 0.3.1 (29 Apr 2003):
1858 ** First release.
1860 ** Features implemented:
1862  change notification from FreshCVS server or parsed maildir contents
1864  timed builds
1866  basic builds, configure/compile/test
1868  some Twisted-specific build steps: docs, unit tests, debuild
1870  status reporting via web page
1872 ** Features still experimental/unpolished
1874  status reporting via PB client