blob: 52f5c4f231bed01fda94e894f0f0e9d9bbe1b458 [file] [log] [blame]
James E. Blair01c2e632014-01-23 10:55:08 -08001Since 2.0.0:
2
3* The push_change_refs option which specified that Zuul refs should be
4 pushed to Gerrit has been removed. Similar functionality may be
5 obtained using the replication feature. See the Triggers
6 documentation for details.
7
James E. Blair66eeebf2013-07-27 17:44:32 -07008Since 1.3.0:
James E. Blaird78576a2013-07-09 10:39:17 -07009
10* The Jenkins launcher is replaced with Gearman launcher. An internal
11 Gearman server is provided, and there is a Gearman plugin for
12 Jenkins, so migration to the new system should be fairly
13 straightforward. See the Launchers section of the documentation for
14 details.
15
James E. Blaird0470972013-07-29 10:05:43 -070016* The custom parameter function signature has changed. It now takes a
17 QueueItem as the first argument, rather than the Change. The
18 QueueItem has the full context for why the change is being run
19 (including the pipeline, items ahead and behind, etc.). The Change
20 is still available via the "change" attribute on the QueueItem. The
James E. Blair6c358e72013-07-29 17:06:47 -070021 second argument is now the Job that is about to be run, and the
James E. Blaird0470972013-07-29 10:05:43 -070022 parameter dictionary is shifted to the third position.
23
Jeremy Stanleye6abe812013-07-31 21:14:16 +000024* The ZUUL_SHORT_* parameters have been removed (the same
James E. Blaird0470972013-07-29 10:05:43 -070025 functionality may be achieved with a custom parameter function that
26 matches all jobs).
James E. Blair6736beb2013-07-11 15:18:15 -070027
James E. Blair63bb0ef2013-07-29 17:14:51 -070028* Multiple triggers are now supported (currently Gerrit and a simple
29 Timer trigger ar supported). Your layout.yaml file will need to
James E. Blair6c358e72013-07-29 17:06:47 -070030 change to add the key "gerrit:" inside of the "triggers:" list to
31 specify a Gerrit trigger (and facilitate adding other kinds of
James E. Blair63bb0ef2013-07-29 17:14:51 -070032 triggers later). See the sample layout.yaml and Zuul section of the
33 documentation.
James E. Blair6c358e72013-07-29 17:06:47 -070034
James E. Blair66eeebf2013-07-27 17:44:32 -070035* Some statsd keys have changed in a backwards incompatible way:
36 * The counters and timers of the form zuul.job.{name} is now split
37 into several keys of the form:
38 zuul.pipeline.{pipeline-name}.job.{job-name}.{result}
39 * Job names in statsd keys now have the '_' character substituted
40 for the '.' character.
Joshua Hesketh1879cf72013-08-19 14:13:15 +100041
42* The layout.yaml structure has changed to introduce configurable
43 reporters. This requires restructuring the start/success/failure
44 actions to include a dictionary of reporters and their parameters.
45 See reporters in the docs and layout.yaml-sample.
James E. Blair01ca4982013-12-04 08:57:35 -080046
47* The zuul_url configuration option is required in zuul.conf. It
48 specifies the URL of the git repositories that should be used by
49 workers when fetching Zuul refs and is passed to the workers as the
50 ZUUL_URL parameter. It should probably be set to
51 "http://zuul-host-name/p/".