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 | 66eeebf | 2013-07-27 17:44:32 -0700 | [diff] [blame] | 6 | Since 1.3.0: |
James E. Blair | d78576a | 2013-07-09 10:39:17 -0700 | [diff] [blame] | 7 | |
| 8 | * The Jenkins launcher is replaced with Gearman launcher. An internal |
| 9 | Gearman server is provided, and there is a Gearman plugin for |
| 10 | Jenkins, so migration to the new system should be fairly |
| 11 | straightforward. See the Launchers section of the documentation for |
| 12 | details. |
| 13 | |
James E. Blair | d047097 | 2013-07-29 10:05:43 -0700 | [diff] [blame] | 14 | * The custom parameter function signature has changed. It now takes a |
| 15 | QueueItem as the first argument, rather than the Change. The |
| 16 | QueueItem has the full context for why the change is being run |
| 17 | (including the pipeline, items ahead and behind, etc.). The Change |
| 18 | is still available via the "change" attribute on the QueueItem. The |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 19 | 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] | 20 | parameter dictionary is shifted to the third position. |
| 21 | |
Jeremy Stanley | e6abe81 | 2013-07-31 21:14:16 +0000 | [diff] [blame] | 22 | * The ZUUL_SHORT_* parameters have been removed (the same |
James E. Blair | d047097 | 2013-07-29 10:05:43 -0700 | [diff] [blame] | 23 | functionality may be achieved with a custom parameter function that |
| 24 | matches all jobs). |
James E. Blair | 6736beb | 2013-07-11 15:18:15 -0700 | [diff] [blame] | 25 | |
James E. Blair | 63bb0ef | 2013-07-29 17:14:51 -0700 | [diff] [blame] | 26 | * Multiple triggers are now supported (currently Gerrit and a simple |
| 27 | Timer trigger ar supported). Your layout.yaml file will need to |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 28 | change to add the key "gerrit:" inside of the "triggers:" list to |
| 29 | specify a Gerrit trigger (and facilitate adding other kinds of |
James E. Blair | 63bb0ef | 2013-07-29 17:14:51 -0700 | [diff] [blame] | 30 | triggers later). See the sample layout.yaml and Zuul section of the |
| 31 | documentation. |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 32 | |
James E. Blair | 66eeebf | 2013-07-27 17:44:32 -0700 | [diff] [blame] | 33 | * Some statsd keys have changed in a backwards incompatible way: |
| 34 | * The counters and timers of the form zuul.job.{name} is now split |
| 35 | into several keys of the form: |
| 36 | zuul.pipeline.{pipeline-name}.job.{job-name}.{result} |
| 37 | * Job names in statsd keys now have the '_' character substituted |
| 38 | for the '.' character. |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 39 | |
| 40 | * The layout.yaml structure has changed to introduce configurable |
| 41 | reporters. This requires restructuring the start/success/failure |
| 42 | actions to include a dictionary of reporters and their parameters. |
| 43 | See reporters in the docs and layout.yaml-sample. |
James E. Blair | 01ca498 | 2013-12-04 08:57:35 -0800 | [diff] [blame] | 44 | |
| 45 | * The zuul_url configuration option is required in zuul.conf. It |
| 46 | specifies the URL of the git repositories that should be used by |
| 47 | workers when fetching Zuul refs and is passed to the workers as the |
| 48 | ZUUL_URL parameter. It should probably be set to |
| 49 | "http://zuul-host-name/p/". |