James E. Blair | 01c2e63 | 2014-01-23 10:55:08 -0800 | [diff] [blame] | 1 | Since 2.0.0: |
| 2 | |
| 3 | * The push_change_refs option which specified that Zuul refs should be |
James E. Blair | 9ca3983 | 2014-01-28 12:27:13 -0800 | [diff] [blame] | 4 | pushed to Gerrit has been removed. |
James E. Blair | 01c2e63 | 2014-01-23 10:55:08 -0800 | [diff] [blame] | 5 | |
James E. Blair | 4076e2b | 2014-01-28 12:42:20 -0800 | [diff] [blame] | 6 | * Git merge operations are now performed in a separate process. Run |
| 7 | at least one instance of the ``zuul-merger`` program which is now |
| 8 | included. Any number of Zuul-Mergers may be run in order to |
| 9 | distribute the work of speculatively merging changes into git and |
| 10 | serving the results to test workers. This system is designed to |
| 11 | scale out to many servers, but one instance may be co-located with |
| 12 | the Zuul server in smaller deployments. Several configuration |
| 13 | options have moved from the ``zuul`` section to ``merger``. |
| 14 | |
James E. Blair | 66eeebf | 2013-07-27 17:44:32 -0700 | [diff] [blame] | 15 | Since 1.3.0: |
James E. Blair | d78576a | 2013-07-09 10:39:17 -0700 | [diff] [blame] | 16 | |
| 17 | * The Jenkins launcher is replaced with Gearman launcher. An internal |
| 18 | Gearman server is provided, and there is a Gearman plugin for |
| 19 | Jenkins, so migration to the new system should be fairly |
| 20 | straightforward. See the Launchers section of the documentation for |
| 21 | details. |
| 22 | |
James E. Blair | d047097 | 2013-07-29 10:05:43 -0700 | [diff] [blame] | 23 | * The custom parameter function signature has changed. It now takes a |
| 24 | QueueItem as the first argument, rather than the Change. The |
| 25 | QueueItem has the full context for why the change is being run |
| 26 | (including the pipeline, items ahead and behind, etc.). The Change |
| 27 | is still available via the "change" attribute on the QueueItem. The |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 28 | second argument is now the Job that is about to be run, and the |
James E. Blair | d047097 | 2013-07-29 10:05:43 -0700 | [diff] [blame] | 29 | parameter dictionary is shifted to the third position. |
| 30 | |
Jeremy Stanley | e6abe81 | 2013-07-31 21:14:16 +0000 | [diff] [blame] | 31 | * The ZUUL_SHORT_* parameters have been removed (the same |
James E. Blair | d047097 | 2013-07-29 10:05:43 -0700 | [diff] [blame] | 32 | functionality may be achieved with a custom parameter function that |
| 33 | matches all jobs). |
James E. Blair | 6736beb | 2013-07-11 15:18:15 -0700 | [diff] [blame] | 34 | |
James E. Blair | 63bb0ef | 2013-07-29 17:14:51 -0700 | [diff] [blame] | 35 | * Multiple triggers are now supported (currently Gerrit and a simple |
Atsushi SAKAI | 5d7e93b | 2015-07-28 22:15:48 +0900 | [diff] [blame] | 36 | Timer trigger are supported). Your layout.yaml file will need to |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 37 | change to add the key "gerrit:" inside of the "triggers:" list to |
| 38 | specify a Gerrit trigger (and facilitate adding other kinds of |
James E. Blair | 63bb0ef | 2013-07-29 17:14:51 -0700 | [diff] [blame] | 39 | triggers later). See the sample layout.yaml and Zuul section of the |
| 40 | documentation. |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 41 | |
James E. Blair | 66eeebf | 2013-07-27 17:44:32 -0700 | [diff] [blame] | 42 | * Some statsd keys have changed in a backwards incompatible way: |
| 43 | * The counters and timers of the form zuul.job.{name} is now split |
| 44 | into several keys of the form: |
| 45 | zuul.pipeline.{pipeline-name}.job.{job-name}.{result} |
| 46 | * Job names in statsd keys now have the '_' character substituted |
| 47 | for the '.' character. |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 48 | |
| 49 | * The layout.yaml structure has changed to introduce configurable |
| 50 | reporters. This requires restructuring the start/success/failure |
| 51 | actions to include a dictionary of reporters and their parameters. |
| 52 | See reporters in the docs and layout.yaml-sample. |
James E. Blair | 01ca498 | 2013-12-04 08:57:35 -0800 | [diff] [blame] | 53 | |
| 54 | * The zuul_url configuration option is required in zuul.conf. It |
| 55 | specifies the URL of the git repositories that should be used by |
| 56 | workers when fetching Zuul refs and is passed to the workers as the |
| 57 | ZUUL_URL parameter. It should probably be set to |
| 58 | "http://zuul-host-name/p/". |