changelog.html 135.2 KB
Newer Older
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
K
Kohsuke Kawaguchi 已提交
2
<html>
3 4
<!--

5
We record noteworthy changes in this file, which then becomes http://jenkins-ci.org/changelog
6 7 8

Some tips:

9 10 11
- Record your changes between "TRUNK-BEGIN" and "TRUNK-END".
  (except in rare cases when you are making changes in the RC branch,
   in which case it goes to the rc section)
12

13 14 15
- There are four CSS classes to denote the kind of changes.
  "rfe" for enhancement and "bug" for bug fixes,
  plus "major" to indicate major RFE/bugfix.
16

17
- Link to bugs in the issue tracker, e-mail thread in the archive, and so on if you can.
18 19

-->
20 21
<head>
  <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
K
Kohsuke Kawaguchi 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
  <title>Changelog</title>
  <link rel="stylesheet" TYPE="text/css" href="changelog.css">
<!--[if IE]>
<style type="text/css">div.rate-offset { bottom: 0.2em !important; left: 5em !important; }</style>
<![endif]-->
  <script type="text/javascript" src="/rate/rate.js"></script>
</head>
<body>
<div align="right">Legend:
    <span class="iconlegend">
        <img src="images/rfe2.gif" alt="major RFE">major enhancement <img src="images/rfe.gif" alt="RFE">enhancement
        <img src="images/bug2.gif" alt="major bug">major bug fix     <img src="images/bug.gif" alt="bug">bug fix
    </span><span style="visibility:hidden">xxxxx</span>
</div>

<div id="ratings" style="display:none; font-size:120%;
     border:1px solid black; background-color:#eee; padding:0.5em; margin-bottom:1em">
39
Help other Jenkins users by letting the community know which releases you've used,
40 41
and whether they had any significant issues. <br>
Legend: <br>
42
 <img src="http://ci.jenkins-ci.org/images/16x16/health-80plus.gif" width="16" height="16"
43
  alt="Sunny"> = I use it on my production site without major issues. <br>
44
 <img src="http://ci.jenkins-ci.org/images/16x16/health-40to59.gif" width="16" height="16"
45
  alt="Cloudy"> = I don't recommend it. <br>
46
 <img src="http://ci.jenkins-ci.org/images/16x16/health-00to19.gif" width="16" height="16"
47
  alt="Lightning"> = I tried it but rolled back to a previous version. <br>
K
Kohsuke Kawaguchi 已提交
48 49 50
View ratings below, and click one of the icons next to your version to provide your input.
</div>

D
Daniel Beck 已提交
51
<a href="" onClick="document.getElementById('trunk').style.display='block';return false">
K
Kohsuke Kawaguchi 已提交
52 53 54 55 56
Upcoming changes</a>
<a href="" style="padding-left:3em" onClick="return loaddata(this)">Community ratings</a>

<!-- Record your changes in the trunk here. -->
<div id="trunk" style="display:none"><!--=TRUNK-BEGIN=-->
57 58 59 60 61
<ul class=image>
  <li class=>
</ul>
</div><!--=TRUNK-END=-->
<h3><a name=v1.608>What's new in 1.608</a> (2015/04/05)</h3>
62
<ul class=image>
O
Oliver Gondža 已提交
63 64 65 66 67 68 69 70 71
  <li class=bug>
    PeepholePermalink RunListenerImpl oncompleted should be triggered before downstream builds are triggered.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20989">issue 20989</a>)
  <li class=bug>
    NPE when /script used on offline slave.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26751">issue 26751</a>)
  <li class=rfe>
    Cleanup workspace when last build is >X days ago.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21322">issue 21322</a>)
D
Daniel Beck 已提交
72 73 74 75 76 77
  <li class=bug>
    Do not offer to restart on /restart and /safeRestart if the configuration does not support it.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-27414">issue 27414</a>)
  <li class=rfe>
    Polling was skipped while quieting down, resulting in ignored commit notifications. This behavior was changed.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26208">issue 26208</a>)
78
  <li class=rfe>
D
Daniel Beck 已提交
79 80
    Starting this version, native packages are produced from <a href="https://github.com/jenkinsci/packaging">the new repository</a>.
    File issues related to installers and packages in the <code>packaging</code> component.
81 82
</ul>
<h3><a name=v1.607>What's new in 1.607</a> (2015/03/30)</h3>
83
<ul class=image>
84 85 86
  <li class=bug>
    JSONP served with the wrong MIME type and rejected by Chrome.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-27607">issue 27607</a>)
87 88 89
  <li class=bug>
    Security file pattern whitelist was broken for some plugins since 1.597.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-27055">issue 27055</a>)
S
Stephen Connolly 已提交
90 91 92 93 94 95 96 97 98 99 100 101
  <li class=rfe>
    Lock an Executor without creating a Thread
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25938">issue 25938</a>)
  <li class=rfe>
    Hide flyweight master executor when ≥1 heavyweight executors running as subtasks
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26900">issue 26900</a>)
  <li class=rfe>
    Way to mark an Executable that should not block isReadyToRestart
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22941">issue 22941</a>)
  <li class=rfe>
    Refactor the Queue and Nodes to use a consistent locking strategy
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-27565">issue 27565</a>)
102 103
    <strong>Note</strong> that this change involved moving slave definitions outside the main <code>config.xml</code> file.
    If you downgrade after this, your slave settings will be lost.
S
Stephen Connolly 已提交
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
  <li class=bug>
    Makes the Jenkins is loading screen not block on the extensions loading lock
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-27563">issue 27563</a>)
  <li class=bug>
    AdjunctManager: exception upon startup
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15355">issue 15355</a>) 
  <li class=bug>
    Removes race condition rendering the list of executors
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-27564">issue 27564</a>)
  <li class=bug>
    Tidy up the locks that were causing deadlocks with the once retention strategy in durable tasks
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-27476">issue 27476</a>)
  <li class=bug>
    Remove any requirement from Jenkins Core to lock on the Queue when rendering the Jenkins UI
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-27566">issue 27566</a>)
  <li class=bug>
    Prevent lazy loading operation when obtaining label information.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26391">issue 26391</a>)
  <li class=bug>
    Ensure that the LoadStatistics return a self-consistent result.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21618">issue 21618</a>)
R
Richard Mortimer 已提交
125 126 127
  <li class=bug>
    Build reports to be running for 45 yr and counting.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26777">issue 26777</a>)
128 129
</ul>
<h3><a name=v1.606>What's new in 1.606</a> (2015/03/23)</h3>
130
<ul class=image>
131 132 133 134 135 136 137 138
  <li class=bug>
    Jenkins CLI doesn't handle arguments with equal signs
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21160">issue 21160</a>)
  <li class=bug>
    master/slave communication ping reacts badly if a clock jumps.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21251">issue 21251</a>)
  <li class=rfe>
    JNLP slaves can now connect to master through HTTP proxy.
S
Stephen Connolly 已提交
139
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-6167">issue 6167</a>)
K
Kohsuke Kawaguchi 已提交
140 141 142
  <li class='major bug'>
    Fixes to several security vulnerabilities.
    (<a href="https://wiki.jenkins-ci.org/display/SECURITY/Jenkins+Security+Advisory+2015-03-23">advisory</a>)
143 144
</ul>
<h3><a name=v1.605>What's new in 1.605</a> (2015/03/16)</h3>
K
Kohsuke Kawaguchi 已提交
145
<ul class=image>
T
tfennelly 已提交
146
  <li class=bug>
147
    Integrate Stapler fix for queue item API always returning 404 Not Found since 1.601.
T
tfennelly 已提交
148
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-27256">issue 27256</a>)
K
Kohsuke Kawaguchi 已提交
149 150
</ul>
<h3><a name=v1.604>What's new in 1.604</a> (2015/03/15)</h3>
K
Kohsuke Kawaguchi 已提交
151
<ul class=image>
152 153 154
  <li class=rfe>
    Added a switch (<tt>-Dhudson.model.User.allowNonExistentUserToLogin=true</tt>) to let users login even when the record is not found in the backend security realm.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22346">issue 22346</a>)
O
Oliver Gondža 已提交
155 156 157
  <li class=bug>
    Avoid deadlock when using build-monitor-plugin.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-27183">issue 27183</a>)
K
Kohsuke Kawaguchi 已提交
158 159 160
  <li class=rfe>
    As security hardening, mark "remember me" cookie as HTTP only
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-27277">issue 27277</a>)
161 162 163
  <li class="rfe">
    Show displayName in build remote API.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26723">issue 26723</a>)
K
Kohsuke Kawaguchi 已提交
164
</ul>
165
<h3><a name=v1.602>What's new in 1.602</a> (2015/03/08)</h3>
K
Kohsuke Kawaguchi 已提交
166
<ul class=image>
O
Oliver Gondža 已提交
167
  <li class="rfe">
168 169
    Show Check Now button also on Available and Updates tabs of plugin manager.
    (<a href="https://github.com/jenkinsci/jenkins/pull/1593">PR 1593</a>)
K
Kohsuke Kawaguchi 已提交
170
</ul>
171
<h3><a name=v1.601>What's new in 1.601</a> (2015/03/03)</h3>
K
Kohsuke Kawaguchi 已提交
172
<ul class=image>
173 174 175
  <li class="major bug">
    Regression with environment variables in 1.600.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-27188">issue 27188</a>)
176 177 178
  <li class="major bug">
    Errors with concurrent matrix builds since 1.597.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26739">issue 26739</a>)
179 180 181
  <li class=bug>
    Errors in Dashboard View plugin since 1.597.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26690">issue 26690</a>)
182 183 184
  <li class=bug>
    Robustness improvement when setting up Archive Artifacts programmatically.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25779">issue 25779</a>)
T
tfennelly 已提交
185 186 187
  <li class="rfe">
    Map Queue.Item.id onto Run
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-27096">issue 27096</a>)
K
Kohsuke Kawaguchi 已提交
188
</ul>
189
<h3><a name=v1.600>What's new in 1.600</a> (2015/02/28)</h3>
K
Kohsuke Kawaguchi 已提交
190
<ul class=image>
D
Daniel Beck 已提交
191 192 193
  <li class="major bug">
    Fixes to multiple security vulnerabilities.
    (<a href="https://wiki.jenkins-ci.org/display/SECURITY/Jenkins+Security+Advisory+2015-02-27">security advisory</a>)
N
Nicolas De Loof 已提交
194 195
  <li class="rfe">
    JDK auto-installer for Mac OSX
196 197 198
  <li class=bug>
    An error thrown in the wrong place in a publisher could result in a failure to release a workspace lock.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26698">issue 26698</a>)
199 200 201
  <li class=bug>
    Cache node environment to prevent unnecessary channel usage
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26755">issue 26755</a>)
T
tfennelly 已提交
202 203 204
  <li class=bug>
    Build history text field wrap fails when containing markup
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26406">issue 26406</a>)
O
Oliver Gondža 已提交
205 206 207
  <li class=bug>
    Maven build step fail to launch mvn process when special chars are present in build variables.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26684">issue 26684</a>)
K
Kohsuke Kawaguchi 已提交
208
</ul>
209
<h3><a name=v1.599>What's new in 1.599</a> (2015/02/16)</h3>
K
Kohsuke Kawaguchi 已提交
210
<ul class=image>
211 212 213
  <li class=bug>
    Errors in some Maven builds since 1.598.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26601">issue 26601</a>)
214 215 216
  <li class='major bug'>
    Build format change migrator in 1.597 did not work on some Windows systems.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26519">issue 26519</a>)
217 218 219
  <li class=bug>
    Remote <code>FilePath.chmod</code> fails with <code>ClassNotFoundException: javax.servlet.ServletException</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26476">issue 26476</a>)
220 221 222
  <li class=rfe>
    Added <code>SimpleBuildWrapper</code> API.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24673">issue 24673</a>)
223 224 225
  <li class=bug>
    Animated ball in job's build history widget won't open Console Output.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26365">issue 26365</a>)
D
Daniel Beck 已提交
226 227 228
  <li class=rfe>
    Show job name in <em>Schedule Build</em> column tool tip.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25234">issue 25234</a>)
229 230 231
  <li class=bug>
    Allow OldDataMonitor to discard promoted-build-plugin Promotions
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26718">issue 26718</a>)
K
Kohsuke Kawaguchi 已提交
232
</ul>
233
<h3><a name=v1.598>What's new in 1.598</a> (2015/01/25)</h3>
K
Kohsuke Kawaguchi 已提交
234
<ul class=image>
O
Oliver Gondža 已提交
235 236 237
  <li class=bug>
    FutureImpl does not cancel its start future.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25514">issue 25514</a>)
238 239 240 241
  <li class=bug>
    Flyweight tasks were under some conditions actually being run on heavyweight executors.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-10944">issue 10944</a>)
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24519">issue 24519</a>)
242 243 244
  <li class=bug>
    Folder loading broken when child item loading throws exception.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22811">issue 22811</a>)
245 246 247
  <li class=bug>
    Plugin icon images were broken when running Jenkins from a UNC path.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26203">issue 26203</a>)
248 249 250
  <li class=bug>
    Allow admin signup from <code>/manage</code> as well.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26382">issue 26382</a>)
251 252 253
  <li class=bug>
    Amend <code>JAVA_HOME</code> check to work with JDK 9.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25601">issue 25601</a>)
254 255 256
  <li class=bug>
    CLI <code>list-jobs</code> command should display raw name, not display name, where they differ.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25338">issue 25338</a>)
257 258 259
  <li class=rfe>
    Show queue item parameters in tool tip.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22311">issue 22311</a>)
260 261 262
  <li class=bug>
    Better support functional tests from Gradle-based plugins.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26331">issue 26331</a>)
O
Oliver Gondža 已提交
263 264 265
  <li class=rfe>
    Allow users to delete builds even if they are supposed to be kept.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26281">issue 26281</a>)
T
tfennelly 已提交
266 267 268 269 270
  <li class=bug>
    Fixed side/main panel scrolling issues.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26312">issue 26312</a>,
     <a href="https://issues.jenkins-ci.org/browse/JENKINS-26298">issue 26298</a>,
     <a href="https://issues.jenkins-ci.org/browse/JENKINS-26306">issue 26306</a>)
O
Oliver Gondža 已提交
271 272 273
  <li class=rfe>
    Improve error reporting when channel closed during build.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26411">issue 26411</a>)
274 275 276 277
  <li class=bug>
    Fixed CodeMirror issue with height and re-enabled syntax highlighting in shell build step.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25455">issue 25455</a>,
     <a href="https://issues.jenkins-ci.org/browse/JENKINS-23151">issue 23151</a>)
K
Kohsuke Kawaguchi 已提交
278
</ul>
279
<h3><a name=v1.597>What's new in 1.597</a> (2015/01/19)</h3>
K
Kohsuke Kawaguchi 已提交
280
<ul class=image>
K
Kohsuke Kawaguchi 已提交
281 282 283 284 285
  <li class='major rfe'>
    <b><tt>JENKINS_HOME</tt> layout change</b>: builds are now keyed by build numbers and not timestamps.
    See <a href="https://wiki.jenkins-ci.org/display/JENKINS/JENKINS-24380+Migration">Wiki</a> for details
    and downgrade.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24380">issue 24380</a>)
286 287 288
  <li class=bug>
    Do not throw exception on <code>/signup</code> when not possible.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-11172">issue 11172</a>)
289 290 291
  <li class=bug>
    Tool installer which downloads and unpacks archives should not fail the build if the tool already exists and the server returns an error code.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26196">issue 26196</a>)
292 293 294
  <li class=bug>
    Fingerprint compaction aggravated lazy-loading performance issues.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19392">issue 19392</a>)
295 296
  <li class=bug>
    Possible unreleased workspace lock if SCM polling fails during setup.
297
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26201">issue 26201</a>)
J
Jesse Glick 已提交
298 299 300
  <li class=bug>
    Misleading description of the 'workspace' permission.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20148">issue 20148</a>)
D
Daniel Beck 已提交
301
  <li class=bug>
D
Daniel Beck 已提交
302
    Run parameters should show display name if set, rather than build numbers.
J
Jesse Glick 已提交
303
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25174">issue 25174</a>)
O
Oliver Gondža 已提交
304 305 306
  <li class=bug>
    Add range check for H(X-Y) syntax.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25897">issue 25897</a>)
K
Kohsuke Kawaguchi 已提交
307
</ul>
308
<h3><a name=v1.596>What's new in 1.596</a> (2015/01/04)</h3>
K
Kohsuke Kawaguchi 已提交
309
<ul class=image>
D
Daniel Beck 已提交
310
  <li class=bug>
O
Oliver Gondža 已提交
311
    Build page was broken in Hungarian localization while building.
D
Daniel Beck 已提交
312
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26155">issue 26155</a>)
O
Oliver Gondža 已提交
313
  <li class=bug>
D
Daniel Beck 已提交
314
    Allow breaking label and node lists.
O
Oliver Gondža 已提交
315
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25989">issue 25989</a>)
K
Kohsuke Kawaguchi 已提交
316
</ul>
K
Kohsuke Kawaguchi 已提交
317
<h3><a name=v1.595>What's new in 1.595</a> (2014/12/21)</h3>
K
Kohsuke Kawaguchi 已提交
318
<ul class=image>
319 320 321
  <li class=bug>
    Spurious warnings in the log after deleting builds.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25788">issue 25788</a>)
322 323 324
  <li class=bug>
    Master labels disappear when system configuration is updated.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23966">issue 23966</a>)
325 326 327 328
  <li class=bug>
    Updated icon-set dependency to version 1.0.5.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25499">issue 25499</a>,
     <a href="https://issues.jenkins-ci.org/browse/JENKINS-25498">issue 25498</a>)
K
Kohsuke Kawaguchi 已提交
329
</ul>
K
Kohsuke Kawaguchi 已提交
330
<h3><a name=v1.594>What's new in 1.594</a> (2014/12/14)</h3>
K
Kohsuke Kawaguchi 已提交
331 332 333 334
<ul class=image>
  <li class=bug>
    After recent Java security updates, Jenkins would not gracefully recover from a deleted <code>secrets/master.key</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25937">issue 25937</a>)
335 336 337
  <li class=bug>
    <i>Restrict where this project can be run</i> regressed in 1.589 when using the ClearCase plugin.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25533">issue 25533</a>)
K
Kohsuke Kawaguchi 已提交
338
</ul>
K
Kohsuke Kawaguchi 已提交
339
<h3><a name=v1.593>What's new in 1.593</a> (2014/12/07)</h3>
K
Kohsuke Kawaguchi 已提交
340 341 342 343 344 345 346 347
<ul class=image>
  <li class=rfe>
    Dynamic Single/Multi line Build History layout.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25381">issue 25381</a>,
     <a href="https://issues.jenkins-ci.org/browse/JENKINS-25393">issue 25393</a>,
     <a href="https://issues.jenkins-ci.org/browse/JENKINS-24687">issue 24687</a>,
     <a href="https://issues.jenkins-ci.org/browse/JENKINS-24589">issue 24589</a>)
</ul>
K
Kohsuke Kawaguchi 已提交
348
<h3><a name=v1.592>What's new in 1.592</a> (2014/11/30)</h3>
K
Kohsuke Kawaguchi 已提交
349 350 351 352 353
<ul class=image>
  <li class=bug>
    Performance problems on large workspaces associated with validating file include patterns.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25759">issue 25759</a>)
</ul>
K
Kohsuke Kawaguchi 已提交
354
<h3><a name=v1.591>What's new in 1.591</a> (2014/11/25)</h3>
K
Kohsuke Kawaguchi 已提交
355
<ul class=image>
D
Daniel Beck 已提交
356 357
  <li class=bug>
    Always use forward slashes in path separators during in ZIP archives generated by Directory Browser
K
Kohsuke Kawaguchi 已提交
358
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22514">issue 22514</a>)
K
Kohsuke Kawaguchi 已提交
359
</ul>
K
Kohsuke Kawaguchi 已提交
360
<h3><a name=v1.590>What's new in 1.590</a> (2014/11/16)</h3>
K
Kohsuke Kawaguchi 已提交
361
<ul class=image>
362 363 364
  <li class=bug>
    Basic Authentication in combination with Session is broken
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25144">issue 25144</a>)
365 366 367
  <li class=bug>
    Some plugins broken since 1.584 if they expected certain events to be fired under a specific user ID.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25400">issue 25400</a>)
J
Jesse Glick 已提交
368
  <li class=bug>
369
    Fixed various real or potential resource leaks discovered by <a href="https://scan.coverity.com/projects/94/">Coverity Scan</code>
K
Kohsuke Kawaguchi 已提交
370
    (<a href="https://github.com/jenkinsci/jenkins/pull/1434">pull request 1434</a>)
371 372
  <li class=rfe>
    API changes: Expose <code>AbstractProject.AbstractProjectDescriptor#validateLabelExpression</code> for plugins.
O
Oliver Gondža 已提交
373
    (<a href="https://github.com/jenkinsci/jenkins/pull/1456">pull request 1456</a>)
374 375
  <li class=rfe>
    API method to aggregate multiple FormValidations into one.
O
Oliver Gondža 已提交
376
    (<a href="https://github.com/jenkinsci/jenkins/pull/1458">pull request 1458</a>)
377 378
  <li class=rfe>
    API method to get non-null <code>Jenkins</code> instance with internal validation
K
Kohsuke Kawaguchi 已提交
379
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23339">issue 23339</a>)
K
Kohsuke Kawaguchi 已提交
380
</ul>
K
Kohsuke Kawaguchi 已提交
381
<h3><a name=v1.589>What's new in 1.589</a> (2014/11/09)</h3>
K
Kohsuke Kawaguchi 已提交
382
<ul class=image>
383 384 385
  <li class=bug>
    JNA error in <code>WindowsInstallerLink.doDoInstall</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25358">issue 25358</a>)
D
Daniel Beck 已提交
386 387 388 389 390 391
  <li class=bug>
    Restore compatibility of label assignment for some plugins.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25372">issue 25372</a>)
</ul>
<h3><a name=v1.588>What's new in 1.588</a> (2014/11/02)</h3>
<ul class=image>
J
Jesse Glick 已提交
392 393
  <li class=bug>
    Unnecessarily slow startup time with a massive number of jobs.
394
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25473">issue 25473</a>)
395 396 397
  <li class=bug>
    Custom workspace option did not work under some conditions.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25221">issue 25221</a>)
K
Kohsuke Kawaguchi 已提交
398
</ul>
K
Kohsuke Kawaguchi 已提交
399
<h3><a name=v1.587>What's new in 1.587</a> (2014/10/29)</h3>
K
Kohsuke Kawaguchi 已提交
400
<ul class=image>
K
Kohsuke Kawaguchi 已提交
401 402 403
  <li class=bug>
    Queue didn't always leave a trail for cancelled items properly
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25314">issue 25314</a>)
404 405 406
  <li class=bug>
    JNA update for deprecated JNA-POSIX library.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24527">issue 24527</a>)
K
Kohsuke Kawaguchi 已提交
407 408 409
  <li class='major bug'>
    Introduced slave-to-master security mechanism to defend a master from slaves.
    (<a href="http://jenkins-ci.org/security-144">SECURITY-144</a>)
K
Kohsuke Kawaguchi 已提交
410
</ul>
K
Kohsuke Kawaguchi 已提交
411
<h3><a name=v1.586>What's new in 1.586</a> (2014/10/26)</h3>
K
Kohsuke Kawaguchi 已提交
412
<ul class=image>
413 414 415
  <li class=rfe>
    Bumping up JNA to 4.10. This is potentially a breaking change for plugins that depend on JNA 3.x
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24521">issue 24521</a>)
O
Oleg Nenashev 已提交
416
  <li class=bug>
D
Daniel Beck 已提交
417
    Prevent empty file creation if file parameter is left empty.
O
Oleg Nenashev 已提交
418
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-3539">issue 3539</a>)
K
Kohsuke Kawaguchi 已提交
419 420 421 422
  <li class=bug>
    Servlet containers may refuse to let us set <a href="https://www.owasp.org/index.php/SecureFlag">secure cookie flag</a>.
    Deal with it gracefully.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25019">issue 25019</a>)
O
Oleg Nenashev 已提交
423 424
  <li class=bug>
    Existing <code>FileParameter</code>s should be handled as different values to avoid merging of queued builds
K
Kohsuke Kawaguchi 已提交
425
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19017">issue 19017</a>)
K
Kohsuke Kawaguchi 已提交
426
</ul>
K
Kohsuke Kawaguchi 已提交
427
<h3><a name=v1.585>What's new in 1.585</a> (2014/10/19)</h3>
K
Kohsuke Kawaguchi 已提交
428
<ul class=image>
429 430 431
  <li class=bug>
    Build health computed repeatedly for a single Weather column cell.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25074">issue 25074</a>)
432 433 434
  <li class=rfe>
    Missing workspace page should use 404 status code.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-10450">issue 10450</a>)
435 436 437
  <li class=bug>
    Fixed memory leak occurring on pages producing incremental output with a progress bar.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25081">issue 25081</a>)
J
Jesse Glick 已提交
438 439
  <li class=bug>
    Updated SSH Slaves plugin to 1.8.
440 441 442
  <li class=bug>
    Due to the reaction, default umask in debian package is set back to 022
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25065">issue 25065</a>)
O
Oleg Nenashev 已提交
443 444
  <li class=bug>
    Greater-than characters are not escaped in HTML outputs like e-mails
K
Kohsuke Kawaguchi 已提交
445
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16184">issue 16184</a>)
446 447
  <li class=bug>
    Thread starvation from <code>OldDataMonitor</code>.
K
Kohsuke Kawaguchi 已提交
448
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24763">issue 24763</a>)
O
Oleg Nenashev 已提交
449
  <li class=bug>
K
Kohsuke Kawaguchi 已提交
450 451
    Integer overflow in quiet-down timeout calculation
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24914">issue 24914</a>)
K
Kohsuke Kawaguchi 已提交
452 453 454
  <li class=bug>
    Don't put session IDs in URLs even when cookies are disabled.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22358">issue 22358</a>)
O
Oleg Nenashev 已提交
455 456
  <li class=rfe>
    Show keep build log reason in tool tips
K
Kohsuke Kawaguchi 已提交
457
    (<a href="https://github.com/jenkinsci/jenkins/pull/1422">pull request 1422</a>)
O
Oleg Nenashev 已提交
458 459
  <li class=bug>
    Do not disable projects, which do not support such operation (like Matrix configurations)
K
Kohsuke Kawaguchi 已提交
460
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24340">issue 24340</a>)
K
Kohsuke Kawaguchi 已提交
461 462 463
  <li class=rfe>
    Improved the scalability of SSH slaves plugin caused by global lock in <tt>SecureRandom</tt>
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20108">issue 20108</a>)
K
Kohsuke Kawaguchi 已提交
464 465 466
  <li class=bug>
    Incorporated a fix for "Poodle" (CVE-2014-3566) vulnerability in the HTTPS connector of "java -jar jenkins.war"
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25169">issue 25169</a>)
K
Kohsuke Kawaguchi 已提交
467
</ul>
K
Kohsuke Kawaguchi 已提交
468
<h3><a name=v1.584>What's new in 1.584</a> (2014/10/12)</h3>
K
Kohsuke Kawaguchi 已提交
469
<ul class=image>
470 471
  <li class=rfe>
    Diagnostic thread names are now available while requests are still in filters
472 473
  <li class=rfe>
    When killing Windows processes, check its critical flag to avoid BSoD
K
Kohsuke Kawaguchi 已提交
474
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24453">issue 24453</a>)
475 476 477
  <li class=bug>
    When a user could not see a view, but could delete/move/rename jobs contained in it, the view was not properly updated.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22769">issue 22769</a>)
D
Daniel Beck 已提交
478 479 480 481 482 483 484
  <li class=bug>
    Use POST for cancel quiet down link.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23020">issue 23020</a>,
    <a href="https://issues.jenkins-ci.org/browse/JENKINS-23942">issue 23942</a>)
  <li class=bug>
    Do not consider port in use error to be a successful start of Jenkins on Debian.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24966">issue 24966</a>)
K
Kohsuke Kawaguchi 已提交
485
</ul>
K
Kohsuke Kawaguchi 已提交
486
<h3><a name=v1.583>What's new in 1.583</a> (2014/10/01)</h3>
K
Kohsuke Kawaguchi 已提交
487 488 489 490
<ul class=image>
  <li class='major bug'>
    Fixes to multiple security vulnerabilities.
    (<a href="https://wiki.jenkins-ci.org/display/SECURITY/Jenkins+Security+Advisory+2014-10-01">security advisory</a>)
D
Daniel Beck 已提交
491
</ul>
492
<h3><a name=v1.582>What's new in 1.582</a> (2014/09/28)</h3>
K
Kohsuke Kawaguchi 已提交
493
<ul class=image>
494
  <li class=bug>
D
Daniel Beck 已提交
495
    Channel reader thread can end up consuming 100% CPU.
496 497
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23471">issue 23471</a>)
  <li class=bug>
D
Daniel Beck 已提交
498
    CancelledKeyException can cause all JNLP slaves to disconnect (and the problem remains until restart).
499
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24050">issue 24050</a>)
D
Daniel Beck 已提交
500 501 502 503 504 505
  <li class=bug>
    Consider dynamic label assignments for label load statistics.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15576">issue 15576</a>)
  <li class=bug>
    Use Windows line endings for batch file build steps.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-7478">issue 7478</a>)
506
  <li class=bug>
D
Daniel Beck 已提交
507
    Reduced the logging clutter about the lack of @ExportedBean.
508 509
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24458">issue 24458</a>)
  <li class=bug>
D
Daniel Beck 已提交
510
    Character encoding problem in form submission when file parameters are present.
511
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-11543">issue 11543</a>)
512
  <li class=rfe>
D
Daniel Beck 已提交
513
    Improved error handling and "in-progress" UI feedback in JNLP slave to service installation.
514 515 516
  <li class=rfe>
    Winstone 2.4: reverse proxy support in the logging, request header size limit control, and different private key password from keystore password.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23665">issue 23665</a>)
D
Daniel Beck 已提交
517 518 519
  <li class=bug>
    umask setting on Debian did not work.
    (<a href="https://github.com/jenkinsci/jenkins/pull/1397">pull 1397</a>)
520 521 522
  <li class=bug>
    handle job move when buildDir is configured to a custom location.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24825">issue 24825</a>)
K
Kohsuke Kawaguchi 已提交
523
</ul>
524
<h3><a name=v1.581>What's new in 1.581</a> (2014/09/21)</h3>
K
Kohsuke Kawaguchi 已提交
525
<ul class=image>
D
Daniel Beck 已提交
526 527 528 529
  <li class=rfe>
    Use slightly larger Jenkins head icon.
    (<a href="https://github.com/jenkinsci/jenkins/pull/1360">pull 1360</a>)
  <li class=rfe>
D
Daniel Beck 已提交
530
    Allow setting a system property to disable X-Frame-Options header.
D
Daniel Beck 已提交
531
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21881">issue 21881</a>)
D
Daniel Beck 已提交
532 533 534
  <li class=bug>
    Explicitly set background color of various UI elements to white.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24625">issue 24625</a>)
D
Daniel Beck 已提交
535 536 537
  <li class=bug>
    Wrong Hebrew localization resulted in broken console output since 1.539.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24614">issue 24614</a>)
K
Kohsuke Kawaguchi 已提交
538
</ul>
539
<h3><a name=v1.580>What's new in 1.580</a> (2014/09/14)</h3>
K
Kohsuke Kawaguchi 已提交
540
<ul class=image>
D
Daniel Beck 已提交
541 542 543
  <li class=bug>
    Health reports saved to disk before 1.576 showed no weather icon since that version.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24407">issue 24407</a>)
D
Daniel Beck 已提交
544 545 546
  <li class=bug>
    Renaming jobs fails if parent dir of custom build records directory does not exist.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19764">issue 19764</a>)
D
Daniel Beck 已提交
547 548 549
  <li class=rfe>
    Add editable descriptions for label atoms.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-6153">issue 6153</a>)
K
Kohsuke Kawaguchi 已提交
550
</ul>
551
<h3><a name=v1.579>What's new in 1.579</a> (2014/09/06)</h3>
K
Kohsuke Kawaguchi 已提交
552
<ul class=image>
553 554 555
  <li class=bug>
    <code>ConcurrentModificationException</code> in <code>RunListProgressiveRendering</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21437">issue 21437</a>)
556 557 558
  <li class=bug>
    <code>StackOverflowError</code> for some old <code>SCMListener</code>s.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23522">issue 23522</a>)
D
Daniel Beck 已提交
559 560 561
  <li class=bug>
    Job status page shows "Build has been executing for null on master" for flyweight tasks.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20307">issue 20307</a>)
562 563 564
  <li class=bug>
    File locking issue when running functional tests on Windows.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21977">issue 21977</a>)
D
Daniel Beck 已提交
565 566 567
  <li class=bug>
    Tolerate ?auto_refresh in reverse proxy check on /manage page.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24014">issue 24014</a>)
K
Kohsuke Kawaguchi 已提交
568 569 570
  <li class=rfe>
    Debian package now sets umask to 027 by default for better default privacy. See <tt>/etc/default/jenkins</tt> to change this.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24514">issue 24514</a>)
K
Kohsuke Kawaguchi 已提交
571
</ul>
572
<h3><a name=v1.578>What's new in 1.578</a> (2014/08/31)</h3>
K
Kohsuke Kawaguchi 已提交
573
<ul class=image>
K
Kohsuke Kawaguchi 已提交
574 575 576
  <li class=rfe>
    Added 'no-store' to the 'Cache-Control' header to avoid accidental information leak through local cache backup
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24337">issue 24337</a>)
577 578 579
  <li class=bug>
    Deadlock in <code>OldDataMonitor</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24358">issue 24358</a>)
D
Daniel Beck 已提交
580 581 582
  <li class=bug>
    Use absolute links for computer sidepanel items so they don't break as easily.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23963">issue 23963</a>)
K
Kohsuke Kawaguchi 已提交
583
</ul>
584
<h3><a name=v1.577>What's new in 1.577</a> (2014/08/24)</h3>
K
Kohsuke Kawaguchi 已提交
585
<ul class=image>
586 587 588 589 590 591
  <li class="major bug">
    Failure to migrate legacy user records in 1.576 properly broke Jenkins, resulted in NullPointerExceptions.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24317">issue 24317</a>)
  <li class="major bug">
    Jenkins did not correctly display icons contributed by plugins in 1.576.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24316">issue 24316</a>)
592 593 594
  <li class="major rfe">
    Moved JUnit reporting functionality to a plugin.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23263">issue 23263</a>)
K
Kohsuke Kawaguchi 已提交
595 596 597
  <li class=bug>
    Fixed ClassCastException on org.dom4j.DocumentFactory
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-13709">issue 13709</a>)
598 599 600 601 602
  <li class="rfe">
    Jenkins now logs warnings when it fails to export objects to XML/JSON.
    This can result in a lot of log output in case of heavy API use.
    We recommend that API users use the <code>?tree</code> parameter instead of <code>?depth</code>.
    (<a href="https://github.com/stapler/stapler/commit/ed2cb8b04c1514377f3a8bfbd567f050a67c6e1c">commit</a>)
603 604 605
  <li class=rfe>
    Allow BuildStep to work with non-AbstractProject
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23713">issue 23713</a>)
606 607 608
  <li class=bug>
    Improved class loading performance when using Groovy.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24309">issue 24309</a>)
609 610 611
  <li class=bug>
    Prevent <code>NullPointerException</code> from <code>Executor.run</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24110">issue 24110</a>)
O
Oliver Gondža 已提交
612 613 614
  <li class=rfe>
    Make the lifetime of queue items cache configurable.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19691">issue 19691</a>)
D
Daniel Beck 已提交
615 616 617 618 619 620 621
  <li class=bug>
    Support --username/--password authentication for CLIMethod based CLI commands.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23988">issue 23988</a>)
  <li class=bug>
    Don't link to /safeRestart after update if Jenkins cannot restart itself.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24032">issue 24032</a>)
  <li class=bug>
622
    Properly consider busy executors when reducing a node's executor count.
D
Daniel Beck 已提交
623
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24095">issue 24095</a>)
K
Kohsuke Kawaguchi 已提交
624
</ul>
625
<h3><a name=v1.576>What's new in 1.576</a> (2014/08/18)</h3>
K
Kohsuke Kawaguchi 已提交
626
<ul class=image>
K
Kohsuke Kawaguchi 已提交
627 628 629
  <li class="bug">
    Worked around "incompatible InnerClasses attribute" bug in IBM J9 VM
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22525">issue 22525</a>)
K
Kohsuke Kawaguchi 已提交
630
  <li class="bug">
631
    Fixed a file descriptor leak with CLI connections.
K
Kohsuke Kawaguchi 已提交
632
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23248">issue 23248</a>)
633 634 635
  <li class="bug major">
    Fixed a regression that removed all users with uppercase letters in the user name since 1.566.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23872">issue 23872</a>)
636 637 638
  <li class="bug">
    Improving security of <code>set-build-parameter</code> and <code>set-build-result</code> CLI commands.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24080">issue 24080</a>)
639 640 641
  <li class="bug">
    Startup can be broken by deeply recursive causes in build records.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24161">issue 24161</a>)
642 643 644
  <li class="bug">
    Displaying unabridged test result trend on project index page defeated lazy loading.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23945">issue 23945</a>)
645 646 647
  <li class="rfe">
    Added support for host:port format in X-Forwarded-Host header.
    (<a href="https://github.com/jenkinsci/jenkins/commit/19d8b80bb2f33e4877c7170bcca8bfa318ebe77d">commit 19d8b80</a>)
648 649 650
  <li class="rfe">
    API to launch processes without printing the command line.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23027">issue 23027</a>)
651 652 653
  <li class="rfe">
    Added option to increase impact of test failures on the weather report.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24006">issue 24006</a>)
T
tfennelly 已提交
654 655
  <li class="rfe">
    Modernized sidebar <code>&lt;l:pane&gt;</code>s and making them work better with new layout.
656 657
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23810">issue 23810</a>,
    <a href="https://issues.jenkins-ci.org/browse/JENKINS-23829">issue 23829</a>)
T
tfennelly 已提交
658
  <li class="rfe">
659
    Add option to CLI to skip key authentication (e.g. when there's a password on the default key).
O
Oliver Gondža 已提交
660
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23970">issue 23970</a>)
661 662 663
  <li class="rfe">
    Modernize tabBar and bigtable.  Makes the project view look better.  Same for Plugin Manager.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24030">issue 24030</a>)
K
Kohsuke Kawaguchi 已提交
664
</ul>
665
<h3><a name=v1.575>What's new in 1.575</a> (2014/08/10)</h3>
K
Kohsuke Kawaguchi 已提交
666
<ul class=image>
667 668 669 670 671 672
  <li class="rfe">
    Move option to fingerprint artifacts to Archive the Artifacts, Advanced options.
    (<a href="https://github.com/jenkinsci/jenkins/commit/f43a450c31d3875e72defa8400c6ada43bfc3ad0">commit f43a450</a>)
  <li class="rfe">
    Move option to keep dependencies (builds) from Fingerprint to Advanced Project Options.
    (<a href="https://github.com/jenkinsci/jenkins/commit/a8756c6c0ddcc4625660288f94da1015eca7bf10">commit a8756c6</a>)
673 674 675 676 677 678 679 680 681
  <li class="rfe">
    Improved validation of Build Record Root Directory setting.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-14538">issue 14538</a>)
  <li class="rfe">
    Indicate which node the workspace being viewed is on.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23636">issue 23636</a>)
  <li class="rfe">
    Show full project name for projects in folders.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22971">issue 22971</a>)
D
Daniel Beck 已提交
682
  <li class="rfe">
D
Daniel Beck 已提交
683
    UI redesign: Shrink the top bar, change logo, changed links in top bar.
D
Daniel Beck 已提交
684 685
    (<a href="https://github.com/jenkinsci/jenkins/pull/1327">pull 1327</a>,
    (<a href="https://github.com/jenkinsci/jenkins/pull/1328">pull 1328</a>)
686 687 688
  <li class="bug">
    Killing processes started by builds on Unix was broken as of 1.553.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22641">issue 22641</a>)
689 690 691
  <li class="bug">
    Should not stop a build from finishing just to compute JUnit result difference to a prior build which is still running.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-10234">issue 10234</a>)
692 693 694 695 696 697
  <li class="bug">
    Do not show link to System Information page for offline slaves, make page more robust when offline.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23041">issue 23041</a>)
  <li class="bug">
    Fix link to SCM polling log from downstream job cause.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18048">issue 18048</a>)
O
Oliver Gondža 已提交
698 699 700
  <li class="rfe">
    Autocomplete logger names.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23994">issue 23994</a>)
D
Daniel Beck 已提交
701 702
  <li class="bug">
    UI redesign: Fix links in header bar when logged in.
D
Daniel Beck 已提交
703
  <li class="rfe">
D
Typo  
Daniel Beck 已提交
704
    Do not show changes for the build at the lower bound of the changes list.
D
Daniel Beck 已提交
705
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18902">issue 18902</a>)
D
Daniel Beck 已提交
706 707 708
  <li class="bug">
    Restrict access to SCM trigger status page to administrators.
    (<a href="https://github.com/jenkinsci/jenkins/pull/1327">pull 1282</a>)
K
Kohsuke Kawaguchi 已提交
709
</ul>
710
<h3><a name=v1.574>What's new in 1.574</a> (2014/07/27)</h3>
K
Kohsuke Kawaguchi 已提交
711
<ul class=image>
D
Daniel Beck 已提交
712 713
  <li class="rfe">
    UI redesign: Use Helvetica as default font
K
Kohsuke Kawaguchi 已提交
714
    (<a href="https://github.com/jenkinsci/jenkins/pull/1315">pull 1315</a>,
D
Daniel Beck 已提交
715
    <a href="https://issues.jenkins-ci.org/browse/JENKINS-23840">issue 23840</a>)
716 717 718
  <li class="bug">
    Synchronization issue during tool installation
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17667">issue 17667</a>)
719 720 721
  <li class="bug">
    Use native encoding for filenames in downloaded ZIPs.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20663">issue 20663</a>)
K
Kohsuke Kawaguchi 已提交
722
</ul>
723
<h3><a name=v1.573>What's new in 1.573</a> (2014/07/20)</h3>
K
Kohsuke Kawaguchi 已提交
724
<ul class=image>
725 726 727 728 729 730 731 732 733 734
  <li class="rfe">
    UI redesign: Changed element alignment, removed sidebar link underlines
    (<a href="https://github.com/jenkinsci/jenkins/pull/1314">pull 1314</a>,
    <a href="https://github.com/jenkinsci/jenkins/pull/1316">pull 1316</a>)
  <li class="bug">
    Word-break links in build logs to preserve page width
    (<a href="https://github.com/jenkinsci/jenkins/pull/1308">pull 1308</a>)
  <li class="bug">
    Log rotation fails with "...looks to have already been deleted"
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22395">issue 22395</a>)
735 736
  <li class='major bug'>
    Fixed unnecessary eager loading of build records in certain code path.
737
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18065">issue 18065</a>)
K
Kohsuke Kawaguchi 已提交
738
</ul>
739
<h3><a name=v1.572>What's new in 1.572</a> (2014/07/13)</h3>
K
Kohsuke Kawaguchi 已提交
740
<ul class=image>
D
Daniel Beck 已提交
741 742 743 744 745 746 747 748 749
  <li class="major rfe">
    UI redesign: Changed header, made layout &lt;div&gt;-based and responsive
    (<a href="https://github.com/jenkinsci/jenkins/pull/1310">pull 1310</a>)
  <li class=rfe>
    Improved handling of X-Forwarded-* headers
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23294">issue 23294</a>)
  <li class=bug>
    Do not offer automatic upgrade if war parent directory is not writable
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23683">issue 23683</a>)
K
Kohsuke Kawaguchi 已提交
750
</ul>
751
<h3><a name=v1.571>What's new in 1.571</a> (2014/07/07)</h3>
K
Kohsuke Kawaguchi 已提交
752
<ul class=image>
753 754 755
  <li class=bug>
    <code>IllegalArgumentException</code> from <code>AbstractProject.getEnvironment</code> when trying to get environment variables from an offline slave.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23517">issue 23517</a>)
O
Oliver Gondža 已提交
756 757 758
  <li class=bug>
    Overall.READ is sufficient to access /administrativeMonitor/hudsonHomeIsFull/
    (SECURITY-134)
O
Oliver Gondža 已提交
759 760 761
  <li class=bug>
    Master computer is not notified using ComputerListener
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23481">issue 23481</a>)
K
Kohsuke Kawaguchi 已提交
762
</ul>
763
<h3><a name=v1.570>What's new in 1.570</a> (2014/06/29)</h3>
K
Kohsuke Kawaguchi 已提交
764
<ul class=image>
O
Oliver Gondža 已提交
765 766 767
  <li class=rfe>
    Add CLI commands to add jobs to and remove jobs from views (add-job-to-view, remove-job-from-view).
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23361">issue 23361</a>)
768 769 770
  <li class=rfe>
    UI improvements / refreshing.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23492">issue 23492</a>)
771 772 773
  <li class=bug>
    Failed to correctly resave a project configuration containing both a forward and a reverse build trigger.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23191">issue 23191</a>)
774 775 776
  <li class=bug>
    Long log output resulted in missing Console link in popup.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-14264">issue 14264</a>)
O
Oliver Gondža 已提交
777 778 779
  <li class="major bug">
    HTTP error 405 when trying to restart ssh host.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23094">issue 23094</a>)
O
Oliver Gondža 已提交
780 781 782
  <li class=rfe>
    Move 'None' Source Code Management option to top position.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23434">issue 23434</a>)
783
  <li class=bug>
O
Oleg Nenashev 已提交
784
    Fixed <code>NullPointerException</code> when <code>ArctifactArchiver</code> is called for a build with the undefined status.
785
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23526">issue 23526</a>)
O
Oleg Nenashev 已提交
786 787 788
  <li class=rfe>
    Allow disabling use of default exclude patterns in <code>ArctifactArchiver</code> (.git, .svn, etc.).
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20086">issue 20086</a>)
789 790 791
  <li class=bug>
    Fixed <code>NullPointerException</code> when &quot;properties&quot; element is missing in a job's configuration submission by JSON
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23437">issue 23437</a>)
K
Kohsuke Kawaguchi 已提交
792
</ul>
793
<h3><a name=v1.569>What's new in 1.569</a> (2014/06/23)</h3>
K
Kohsuke Kawaguchi 已提交
794
<ul class=image>
K
Kohsuke Kawaguchi 已提交
795 796 797
  <li class=rfe>
    Jenkins can now kill Win32 processes from Win64 JVMs.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23410">issue 23410</a>)
798 799 800
  <li class=rfe>
    Allow custom security realm plugins to fire events to <code>SecurityListener</code>s.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23417">issue 23417</a>)
801 802 803
  <li class=bug>
    Recover gracefully if a build permalink has a non-numeric value.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21631">issue 21631</a>)
804 805 806
  <li class=bug>
    Fix form submission via the Enter key for Internet Explorer version 9.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22373">issue 22373</a>)
807 808 809
  <li class='major bug'>
    When Jenkins had a lot of jobs, submitting a view configuration change could overload the web server, even if few of the jobs were selected.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20327">issue 20327</a>)
K
Kohsuke Kawaguchi 已提交
810
</ul>
811
<h3><a name=v1.568>What's new in 1.568</a> (2014/06/15)</h3>
K
Kohsuke Kawaguchi 已提交
812
<ul class=image>
813 814 815
  <li class=bug>
    Fixed JNLP connection handling problem
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22932">issue 22932</a>)
O
Oleg Nenashev 已提交
816 817 818
  <li class=bug>
    Fixed <code>NullPointerException</code> caused by the uninitialized <code>ProcessStarter</code> environment in build wrappers
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20559">issue 20559</a>)
K
Kohsuke Kawaguchi 已提交
819 820 821
  <li class=rfe>
    Support the range notation for pagination in API
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23228">issue 23228</a>)
822 823 824
  <li class=bug>
    Incorrect redirect after deleting a folder.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23375">issue 23375</a>)
825 826 827
  <li class=bug>
    Incorrect links from Build History page inside a folder.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19310">issue 19310</a>)
828 829 830
  <li class=rfe>
    API changes allowing new job types to use SCM plugins.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23365">issue 23365</a>)
O
Oleg Nenashev 已提交
831 832 833
  <li class=rfe>
    API changes allowing to create nested launchers (<code>DecoratedLauncher</code>)
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19454">issue 19454</a>)
K
Kohsuke Kawaguchi 已提交
834
</ul>
835
<h3><a name=v1.567>What's new in 1.567</a> (2014/06/09)</h3>
K
Kohsuke Kawaguchi 已提交
836
<ul class=image>
837 838 839
  <li class="bug">
    Fixed a reference counting bug in the remoting layer.
    (<a href="https://github.com/jenkinsci/remoting/commit/387433c98b66bf453e27198973daa758787095b3">commit</a>)
840 841 842
  <li class="bug">
    Avoid repeatedly reading symlinks from disk to resolve build permalinks.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22822">issue 22822</a>)
J
Jesse Glick 已提交
843 844 845
  <li class="bug">
    Show custom build display name in executors widget.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-10477">issue 10477</a>)
846 847 848
  <li class="bug">
    CodeMirror support for shell steps broke initial configuration.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23151">issue 23151</a>)
V
Vojtech Juranek 已提交
849 850 851
  <li class="bug">
    Jenkins on Linux can not restart after plugin update when started without full path to java executable
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22818">issue 22818</a>)
O
Oleg Nenashev 已提交
852 853 854
  <li class="bug">
    Fixed <code>NullPointerException</code> when a build triggering returns null cause
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20499">issue 20499</a>)
O
Oleg Nenashev 已提交
855 856
  <li class="bug">
    Fixed <code>NullPointerException</code> on plugin installations when invalid update center is set
K
Kohsuke Kawaguchi 已提交
857
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20031">issue 20031</a>)
O
Oleg Nenashev 已提交
858 859 860
  <li class="bug">
    Use DISABLED_ANIME icon while building a disabled project
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-8358">issue 8358</a>)
O
Oleg Nenashev 已提交
861 862 863
  <li class="bug">
    Process the items hierarchy when displaying the Show Poll Thread Count option
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22934">issue 22934</a>)
864 865 866 867
  <li class="bug">
    Compressed output was turned on even before Access Denied errors were shown for disallowed Remote API requests, yielding a confusing error.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17374">issue 17374</a>)
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18116">issue 18116</a>)
O
Oleg Nenashev 已提交
868 869
  <li class="bug">
    Properly close input streams in <code>FileParameterValue</code>
K
Kohsuke Kawaguchi 已提交
870
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22693">issue 22693</a>)
O
Oleg Nenashev 已提交
871
  <li class="bug">
O
Oleg Nenashev 已提交
872
    Incorrect failure age in the JUnit test results
K
Kohsuke Kawaguchi 已提交
873
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18626">issue 18626</a>)
O
Oleg Nenashev 已提交
874 875
  <li class="bug">
    Fixed deletion links for JVM Crash error logs
K
Kohsuke Kawaguchi 已提交
876
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22617">issue 22617</a>)
D
Daniel Beck 已提交
877 878
  <li class="rfe">
    Distinguish &quot;nodes for label offline&quot; from &quot;no nodes for label&quot;
K
Kohsuke Kawaguchi 已提交
879
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17114">issue 17114</a>)
D
Daniel Beck 已提交
880 881
  <li class="rfe">
    Add causes to queue item tool tip
K
Kohsuke Kawaguchi 已提交
882
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19250">issue 19250</a>)
883 884
  <li class="rfe">
    RPM: added JENKINS_HTTPS_KEYSTORE and JENKINS_HTTPS_KEYSTORE_PASSWORD options to Jenkins sysconfig file
K
Kohsuke Kawaguchi 已提交
885
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-11673">issue 11673</a>)
886 887
  <li class="bug">
    RPM: Do not install jenkins.repo file
O
Oliver Gondža 已提交
888 889 890 891
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22690">issue 22690</a>)
  <li class="rfe">
    Don't advertise POSTing config.xml on master
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16264">issue 16264</a>)
O
Oliver Gondža 已提交
892
  <li class="major bug">
O
Oliver Gondža 已提交
893 894
    Handle null parameter values to avoid massive executor deaths
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15094">issue 15094</a>)
O
Oleg Nenashev 已提交
895
  <li class="rfe">
O
Oleg Nenashev 已提交
896
    Added an option to archive artifacts only when the build is successful
O
Oleg Nenashev 已提交
897
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22699">issue 22699</a>)
K
Kohsuke Kawaguchi 已提交
898
</ul>
899
<h3><a name=v1.566>What's new in 1.566</a> (2014/06/01)</h3>
K
Kohsuke Kawaguchi 已提交
900
<ul class=image>
901 902 903
  <li class="rfe">
    Configurable case sensitivity mode for user IDs.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22247">issue 22247</a>)
904 905 906
  <li class="bug">
    Extension point for project naming strategies did not work from actual plugins.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23127">issue 23127</a>)
O
Oliver Gondža 已提交
907 908 909
  <li class="rfe">
    Introduce directly modifiable views
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22967">issue 22967</a>)
D
Daniel Beck 已提交
910 911 912
  <li class="bug">
    Jenkins cannot restart Windows service
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22685">issue 22685</a>)
K
Kohsuke Kawaguchi 已提交
913
</ul>
914
<h3><a name=v1.565>What's new in 1.565</a> (2014/05/26)</h3>
K
Kohsuke Kawaguchi 已提交
915
<ul class=image>
916 917 918
  <li class="bug">
    Misleading error message trying to dynamically update a plugin (which is impossible) on an NFS filesystem.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-12753">issue 12753</a>)
J
Jesse Glick 已提交
919 920
  <li class="bug">
    Updated component used by the swap space monitor to better support Debian and AIX.
921 922 923
  <li class="bug">
    SSH slave connections die after the slave outputs 4MB of stderr, usually during findbugs analysis
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22938">issue 22938</a>)
924 925 926
  <li class="bug">
    Polling no longer triggers builds (regression 1.560)
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22750">issue 22750</a>)
927 928 929
  <li class="bug">
    Allow markup formatter to be selected without enabling security.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22028">issue 22028</a>)
930 931 932
  <li class="bug">
    Fixed localization of build environment variable help.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22867">issue 22867</a>)
K
Kohsuke Kawaguchi 已提交
933
</ul>
934
<h3><a name=v1.564>What's new in 1.564</a> (2014/05/19)</h3>
K
Kohsuke Kawaguchi 已提交
935
<ul class=image>
D
Daniel Beck 已提交
936 937 938 939 940 941
  <li class="rfe">
    Improve list view performance on large instances with folders.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22720">issue 22720</a>)
  <li class="rfe">
    Add indicator when build queue is filtered.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22698">issue 22698</a>)
942 943 944 945
  <li class="bug">
    Update bundled Matrix project plugin to 1.2 fixing issues introduced in 1.561.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22879">issue 22879</a>,
    <a href="https://issues.jenkins-ci.org/browse/JENKINS-22798">issue 22798</a>)
K
Kohsuke Kawaguchi 已提交
946
</ul>
947
<h3><a name=v1.563>What's new in 1.563</a> (2014/05/11)</h3>
K
Kohsuke Kawaguchi 已提交
948
<ul class=image>
949 950 951
  <li class="major bug">
    Memory exhausion in remoting channel since 1.560.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22734">issue 22734</a>)
952 953 954
  <li class="rfe">
    Configurable size for log buffer.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22840">issue 22840</a>)
955 956 957
  <li class="rfe">
    Gesture to clear log buffer.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22839">issue 22839</a>)
J
Jesse Glick 已提交
958 959 960
  <li class=bug>
    Prevent up to two-minute delay before scheduling jobs from a cron trigger.
    (<a href="https://github.com/jenkinsci/jenkins/pull/1216">pull request 1216</a>)
961 962 963
  <li class="bug">
    Occasional attempts to delete a build during log rotation which had already been deleted.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22395">issue 22395</a>)
964 965 966
  <li class="bug">
    Again show proper display names for build parameters.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22755">issue 22755</a>)
K
Kohsuke Kawaguchi 已提交
967
</ul>
968
<h3><a name=v1.562>What's new in 1.562</a> (2014/05/03)</h3>
K
Kohsuke Kawaguchi 已提交
969
<ul class=image>
970 971 972
  <li class=bug>
    Next build link was not reliably available from a previous build after starting a new one.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20662">issue 20662</a>)
O
Oliver Gondža 已提交
973 974 975 976 977 978
  <li class="bug">
    Debian postinst: check for present user/group before adding them.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22715">issue 22715</a>)
  <li class="rfe">
    Add distance between time tick labels on load statistics.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22686">issue 22686</a>)
D
Daniel Beck 已提交
979 980 981 982 983 984 985 986 987
  <li class="bug">
    Correctly show load statistics for master node.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22689">issue 22689</a>)
  <li class="rfe">
    Make load statistics graph font configurable, use sans serif font by default.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22688">issue 22688</a>)
  <li class="rfe">
    Add links to nodes on thread dump page for easier navigation.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22672">issue 22672</a>)
K
Kohsuke Kawaguchi 已提交
988
</ul>
989
<h3><a name=v1.561>What's new in 1.561</a> (2014/04/27)</h3>
K
Kohsuke Kawaguchi 已提交
990
<ul class=image>
K
Kohsuke Kawaguchi 已提交
991 992 993
  <li class=bug>
    Fixed a corner case handling of tool installation.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16846">issue 16846</a>)
994 995 996
  <li class=rfe>
    Enabled log rotation on the OSX package
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15178">issue 15178</a>)
K
Kohsuke Kawaguchi 已提交
997 998 999 1000
  <li class=bug>
    When measuring the length of the queue, jobs that consist of multiple subtasks should
    count as more than 1.
    (<a href="https://github.com/jenkinsci/jenkins/pull/742">pull request 742</a>)
K
Kohsuke Kawaguchi 已提交
1001 1002 1003
  <li class=rfe>
    Close drop-down button menu when clicking outside
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17050">issue 17050</a>)
K
Kohsuke Kawaguchi 已提交
1004 1005 1006
  <li class=bug>
    RunParameter with filtering enabled incorrectly includes builds which have not yet completed
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20974">issue 20974</a>)
1007
  <li class=bug>
1008 1009
    Fixed NPE if <tt>RunParameterValue</tt> points to a stable build.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20857">issue 20857</a>)
1010
  <li class=bug>
1011 1012 1013
    Fixed a JavaScript problem in sortable table with IE8.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21729">issue 21729</a>)
  <li class=bug>
1014 1015
    More efficient deletion of old builds (specified by date).
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22607">issue 22607</a>)
J
Jesse Glick 已提交
1016 1017
  <li class=rfe>
    The matrix project type was moved into its own plugin.
1018 1019 1020
  <li class=bug>
    Linkage errors in notifiers could leak workspace leases.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21622">issue 21622</a>)
1021 1022 1023
  <li class=bug>
    Better correction of the anomalous condition that several builds of a job specify the same number.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22631">issue 22631</a>)
1024 1025 1026
  <li class=bug>
    Under certain conditions, a running build could mistakenly be shown as completed (and failed), while still producing output.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22681">issue 22681</a>)
S
Stefan Wolf 已提交
1027 1028 1029
  <li class=bug>
    Fix a bug which only showed the first detail part for radio buttons.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22583">issue 22583</a>)
1030 1031
  <li class=rfe>
    Update version of bundled Mailer plugin to 1.8 to avoid issues with older versions
O
Oliver Gondža 已提交
1032 1033 1034 1035 1036 1037
  <li class=rfe>
    Show larger load statistics graphs.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22674">issue 22674</a>)
  <li class=rfe>
    Linebreak project names less aggressively.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22670">issue 22670</a>)
1038 1039
  <li class=rfe>
    Added a new extension point for more pluggable JNLP slave handling
O
Oliver Gondža 已提交
1040 1041 1042 1043 1044 1045
  <li class=bug>
    Don't ask for confirmation when it doesn't make any sense.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21720">issue 21720</a>)
  <li class=bug>
    Jenkins asks for confirmation before leaving form even though user is not authorized to make changes.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20597">issue 20597</a>)
D
Daniel Beck 已提交
1046 1047 1048 1049 1050 1051 1052 1053 1054
  <li class=rfe>
    Make the computers monitor status row look different from regular node rows.
    (<a href="https://github.com/jenkinsci/jenkins/pull/1095">pull request 1095</a>)
  <li class=rfe>
    Do not offer "Install without restart" for plugin updates.
    (<a href="https://github.com/jenkinsci/jenkins/pull/1125">pull request 1125</a>)
  <li class=rfe>
    Require POST on more actions.
    (<a href="https://github.com/jenkinsci/jenkins/pull/877">pull request 877</a>)
1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
  <li class=rfe>
    Optimize image sizes.
    (<a href="https://github.com/jenkinsci/jenkins/pull/648">pull request 648</a>)
  <li class=bug>
    Properly close resources in case of exceptions.
    (<a href="https://github.com/jenkinsci/jenkins/pull/737">pull request 737</a>)
  <li class=rfe>
    Fix warning on JBoss AS7 due to unnecessary xpp3_min dependency.
    (<a href="https://github.com/jenkinsci/jenkins/pull/733">pull request 733</a>)
  <li class="rfe">
    Return queue item location when triggering buildWithParameters.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-13546">issue 13546</a>)
K
Kohsuke Kawaguchi 已提交
1067
</ul>
1068
<h3><a name=v1.560>What's new in 1.560</a> (2014/04/20)</h3>
K
Kohsuke Kawaguchi 已提交
1069
<ul class=image>
1070 1071 1072 1073 1074 1075
  <li class='major rfe'>
    Enforcing build trigger authentication at runtime by checking authentication associated with a build, rather than at configuration time.
    For compatibility, enforcement is skipped by default; you must install the Authorize Project plugin or similar for this to take effect.
    The “upstream pseudo trigger” was also removed in favor of a true trigger configured on the downstream project;
    you may use either the post-build action or the trigger according to where you want this configuration stored, and who is authorized to change it.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16956">issue 16956</a>)
1076 1077 1078
  <li class=bug>
    Fixed NPE from view new job name autocompletion since 1.553.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22142">issue 22142</a>)
1079 1080 1081
  <li class='major bug'>
    Deadlocks in concurrent builds under some conditions since 1.556.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22560">issue 22560</a>)
K
Kohsuke Kawaguchi 已提交
1082 1083
  <li class=rfe>
    JNLP slaves are now handled through NIO-based remoting channels for better scalability.
K
Kohsuke Kawaguchi 已提交
1084 1085 1086
  <li class=rfe>
    Integrated codemirror v2.38.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22582">issue 22582</a>)
O
Oliver Gondža 已提交
1087 1088 1089
  <li class=bug>
    Listing plugins shortly after installation throws ConcurrentModificationException.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22553">issue 22553</a>)
O
Oliver Gondža 已提交
1090 1091 1092
  <li class=bug>
    Fixed NoSuchMethodException when destroying processes using JDK1.8.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21341">issue 21341</a>)
O
Oliver Gondža 已提交
1093 1094 1095
  <li class=rfe>
    Avoid irrelevant job queing while node is offline.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21394">issue 21394</a>)
K
Kohsuke Kawaguchi 已提交
1096 1097
  <li class=rfe>
    Debian package now creates 'jenkins' group
1098 1099 1100
  <li class=rfe>
    Suppress fingerprint link if fingerprint record isn't available.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21818">issue 21818</a>)
1101 1102 1103
  <li class=bug>
    Job hangs if one of multiple triggered builds was aborted
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21932">issue 21932</a>)
D
Daniel Beck 已提交
1104
  <li class=bug>
1105
    Don't submit form on Save after Apply in new window on some browsers.
D
Daniel Beck 已提交
1106
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20245">issue 20245</a>)
1107 1108 1109
  <li class=bug>
    Remotely triggered builds now show correct IP address through proxy.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18008">issue 18008</a>)
K
Kohsuke Kawaguchi 已提交
1110
</ul>
1111
<h3><a name=v1.559>What's new in 1.559</a> (2014/04/13)</h3>
K
Kohsuke Kawaguchi 已提交
1112
<ul class=image>
K
Kohsuke Kawaguchi 已提交
1113 1114 1115
  <li class=rfe>
    Slaves connected via Java Web Start now restart themselves when a connection to Jenkins is lost.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19055">issue 19055</a>)
1116 1117 1118
  <li class=bug>
    Fixed NPE from <code>Slave.createLauncher</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21999">issue 21999</a>)
1119 1120 1121
  <li class=bug>
    Faster rendering of views containing many items.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18364">issue 18364</a>)
K
Kohsuke Kawaguchi 已提交
1122
</ul>
1123
<h3><a name=v1.558>What's new in 1.558</a> (2014/04/06)</h3>
K
Kohsuke Kawaguchi 已提交
1124
<ul class=image>
1125 1126
  <li class=rfe>
    Cron-style trigger configuration will now display expected prior and subsequent run times.
1127 1128 1129
  <li class=bug>
    Incorrect filtering of build queue and executors widgets after 1.514.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20500">issue 20500</a>)
1130 1131 1132
  <li class=bug>
    <code>NoSuchMethodError: hudson.model.BuildAuthorizationToken.checkPermission(…)</code> from Build Token Root plugin since 1.556.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22382">issue 22382</a>)
1133 1134 1135
  <li class=rfe>
    Allow a <code>Trigger</code> to be a <code>DependencyDeclarer</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22397">issue 22397</a>)
1136 1137 1138
  <li class=bug>
    Fixed a slow down in resource loading caused by fix to JENKINS-18677.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21579">issue 21579</a>)
K
Kohsuke Kawaguchi 已提交
1139 1140 1141
  <li class=bug>
    <tt>jenkins.war</tt> file shouldn't be exploded into <tt>/tmp</tt>
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22442">issue 22442</a>)
K
Kohsuke Kawaguchi 已提交
1142 1143 1144
  <li class=bug>
    Fixed NPE in <tt>UserCause</tt>
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21875">issue 21875</a>)
1145 1146 1147
  <li class=rfe>
    Added <code>RobustMapConverter</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22398">issue 22398</a>)
1148 1149 1150 1151 1152 1153
  <li class='major bug'>
    JNLP slaves now satisfies stricter requirements imposed by JDK7u45.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20204">issue 20204</a>)
  <li class=bug>
    Fixed NPE executing <tt>Pipe.EOF</tt> with <tt>ProxyWriter</tt>
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20769">issue 20769</a>)
K
Kohsuke Kawaguchi 已提交
1154
</ul>
1155
<h3><a name=v1.557>What's new in 1.557</a> (2014/03/31)</h3>
K
Kohsuke Kawaguchi 已提交
1156
<ul class=image>
K
Kohsuke Kawaguchi 已提交
1157 1158 1159
  <li class=bug>
    Fixed <tt>ArrayIndexOutOfBoundsException</tt> in XStream with Oracle JDK8 release version
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18537">issue 18537</a>)
1160 1161 1162
  <li class=bug>
    Corrected permission checks for <code>copy-job</code> and <code>create-job</code> CLI commands.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22262">issue 22262</a>)
J
Jesse Glick 已提交
1163 1164
  <li class=bug>
    <code>identity.key</code>, used to secure some communications with Jenkins, now stored encrypted with the master key.
1165 1166 1167
  <li class=bug>
    When dynamically loading a plugin which another loaded plugin already had an optional dependency on, class loading errors could result before restart.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19976">issue 19976</a>)
1168 1169 1170
  <li class=bug>
    Memory leaks in the old data monitor.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19544">issue 19544</a>)
1171 1172 1173 1174
  <li class=rfe>
    Ability for custom view types to disable automatic refresh.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21190">issue 21190</a>)
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21191">issue 21191</a>)
1175 1176 1177
  <li class=rfe>
    Option to download metadata directly from Jenkins rather than going through the browser.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19081">issue 19081</a>)
L
Larry Shatzer, Jr 已提交
1178
  <li class=bug>
1179
    Allow JDK8 (and other versions) to be downloaded by JDKInstaller correctly.
1180
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22347">issue 22347</a>)
K
Kohsuke Kawaguchi 已提交
1181
</ul>
1182
<h3><a name=v1.556>What's new in 1.556</a> (2014/03/23)</h3>
K
Kohsuke Kawaguchi 已提交
1183
<ul class=image>
K
Kohsuke Kawaguchi 已提交
1184 1185 1186
  <li class=rfe>
    Access through API token and SSH key login now fully retains group memberships.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20064">issue 20064</a>)
1187 1188 1189
  <li class=rfe>
    API changes allowing more flexibility in unusual job types.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22131">issue 22131</a>)
1190 1191
  <li class=rfe>
    Job can be reloaded individually from disk with "job/FOO/reload" URL or "reload-job" CLI command
K
Kohsuke Kawaguchi 已提交
1192
</ul>
1193
<h3><a name=v1.555>What's new in 1.555</a> (2014/03/16)</h3>
K
Kohsuke Kawaguchi 已提交
1194
<ul class=image>
K
Kohsuke Kawaguchi 已提交
1195 1196 1197
  <li class=bug>
    Jenkins should recover gracefully from a failure to process "remember me" cookie
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-11643">issue 11643</a>)
K
Kohsuke Kawaguchi 已提交
1198 1199
  <li class=bug>
    Fixed Up link in matrix projects
D
Daniel Beck 已提交
1200
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21773">issue 21773</a>)
K
Kohsuke Kawaguchi 已提交
1201
</ul>
1202
<h3><a name=v1.554>What's new in 1.554</a> (2014/03/09)</h3>
K
Kohsuke Kawaguchi 已提交
1203
<ul class=image>
1204 1205 1206
  <li class=bug>
    Archiving of symlinks as artifacts did not work in some cases.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21958">issue 21958</a>)
1207 1208 1209
  <li class=bug>
    Slow rendering of directories with many entries in remote workspaces.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21780">issue 21780</a>)
K
Kohsuke Kawaguchi 已提交
1210
</ul>
1211
<h3><a name=v1.553>What's new in 1.553</a> (2014/03/02)</h3>
K
Kohsuke Kawaguchi 已提交
1212
<ul class=image>
J
Jesse Glick 已提交
1213 1214 1215 1216
  <li class=bug>
    Build history widget only showed the last day of builds.
    (Due to JENKINS-20892, even with this fix at most 20 builds are shown.)
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21159">issue 21159</a>)
1217 1218 1219
  <li class=bug>
    Random class loading error mostly known to affect static analysis plugins.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-12124">issue 12124</a>)
1220 1221 1222
  <li class=bug>
    After restarting Jenkins, users known only from changelogs could be shown as <code>First Last _first.last@some.org_</code>, breaking mail delivery.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16332">issue 16332</a>)
1223 1224 1225
  <li class=bug>
    CLI <code>build -s -v</code> command caused 100% CPU usage on the master.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20965">issue 20965</a>)
1226
  <li class=rfe>
H
Harald Albers 已提交
1227
    Slave started from Java Web Start can now install itself as a systemd service.
1228 1229
  <li class=rfe>
    Split the “raw HTML” markup formatter out of core into a bundled plugin.
1230 1231 1232 1233 1234
  <li class=bug>
    Do not show Maven modules and matrix configurations in the Copy Job dialog.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19559">issue 19559</a>)
  <li class=bug>
    Fix autocompletion for items in folders.
K
Kohsuke Kawaguchi 已提交
1235
    (<a href="https://github.com/jenkinsci/jenkins/pull/1124">pull request 1124</a>)
K
Kohsuke Kawaguchi 已提交
1236
</ul>
1237
<h3><a name=v1.552>What's new in 1.552</a> (2014/02/24)</h3>
K
Kohsuke Kawaguchi 已提交
1238
<ul class=image>
1239 1240 1241
  <li class=bug>
    Fixed handling of default JENKINS_HOME when storing CLI credentials
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21772">issue 21772</a>)
1242 1243 1244
  <li class=bug>
    Fixed broken action links on Label page
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21778">issue 21778</a>)
1245 1246 1247
  <li class=rfe>
    Allow Actions to contribute to Labels' main page
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21777">issue 21777</a>)
1248 1249 1250
  <li class=bug>
    Expensive symlink-related calls on Windows can be simplified.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20534">issue 20534</a>)
D
Daniel Beck 已提交
1251 1252
  <li class=rfe>
    Improve detection of broken reverse proxy setups.
K
Kohsuke Kawaguchi 已提交
1253
</ul>
1254
<h3><a name=v1.551>What's new in 1.551</a> (2014/02/14)</h3>
K
Kohsuke Kawaguchi 已提交
1255
<ul class=image>
K
Kohsuke Kawaguchi 已提交
1256 1257 1258
  <li class='major bug'>
    Valentine's day security release that contains more than a dozen security fixes.
    (<a href="https://wiki.jenkins-ci.org/display/SECURITY/Jenkins+Security+Advisory+2014-02-14">security advisory</a>)
J
Jesse Glick 已提交
1259 1260 1261
  <li class='major bug'>
    Regression in Windows slaves since 1.547.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21373">issue 21373</a>)
1262 1263 1264
  <li class=bug>
    Using <code>java -jar jenkins-core.jar folder/external-monitor-job cmd …</code> did not work.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21525">issue 21525</a>)
O
Oliver Gondža 已提交
1265 1266 1267
  <li class=bug>
    Jenkins crash on startup after upgrade from 1.546 to 1.548.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21474">issue 21474</a>)
O
Oliver Gondža 已提交
1268 1269 1270
  <li class=bug>
    f:combobox is narrow.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21612">issue 21612</a>)
1271 1272 1273
  <li class=bug>
    The workspace cleanup thread failed to handle the modern workspace location on master, and mishandled folders.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21023">issue 21023</a>)
1274 1275 1276
  <li class=bug>
    Fixed missing help items on "Configure Global Security" page
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19832">issue 19832</a>)
1277 1278 1279
  <li class=rfe>
    Sort groups on user index page alphabetically.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21673">issue 21673</a>)
1280 1281 1282
  <li class=bug>
    Should not be able to create a job named <code>.</code> (period).
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21639">issue 21639</a>)
V
Vojtech Juranek 已提交
1283 1284 1285
  <li class=rfe>
    Plugins implementing "AsyncPeriodicWork" can overwrite default logging level
    (<a href="https://github.com/jenkinsci/jenkins/pull/1115">pull request #1115</a>)
O
Oliver Gondža 已提交
1286 1287 1288
  <li class=bug>
    Wrong log message for out-of-order build record repair.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20730">issue 20730</a>)
1289 1290 1291
  <li class=bug>
    Existing Fingerprint Action is reused and not added a second time.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17606">issue 19832</a>)
1292 1293 1294
  <li class=bug>
    TestObject doesn't replace '%' character
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21707">issue 21707</a>)
1295 1296
  <li class=bug>
    "java -jar jenkins.war" should use unique session cookie for users who run multiple Jenkins on the same host.
K
Kohsuke Kawaguchi 已提交
1297
</ul>
1298
<h3><a name=v1.550>What's new in 1.550</a> (2014/02/09)</h3>
K
Kohsuke Kawaguchi 已提交
1299 1300 1301 1302
<ul class=image>
  <li class=bug>
    Report number of all jobs as part of usage statistics
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21448">issue 21448</a>)
1303 1304 1305
  <li class=bug>
    Replace description in error dialog instead of appending
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21457">issue 21457</a>)
K
Kohsuke Kawaguchi 已提交
1306
</ul>
1307
<h3><a name=v1.549>What's new in 1.549</a> (2014/01/25)</h3>
K
Kohsuke Kawaguchi 已提交
1308
<ul class=image>
K
Kohsuke Kawaguchi 已提交
1309 1310 1311
  <li class=bug>
    Removing the "keep this build forever" lock on a build should require the DELETE permission.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16417">issue 16417</a>)
1312 1313 1314
  <li class=bug>
    Files added to zip archive are closed properly.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20345">issue 20345</a>)
O
Olivier Lamy 已提交
1315 1316
  <li class=bug>
    Broken CSS when reloading Jenkins after a time of inactivity
O
Oliver Gondža 已提交
1317
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17526">issue 17526</a>)
O
Oleg Nenashev 已提交
1318 1319 1320
  <li class=rfe>
    Add Batch Command tool installer for Windows nodes.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21202">issue 21202</a>)
D
Daniel Beck 已提交
1321 1322 1323
  <li class=rfe>
    Allow more specific loggers to reduce log level.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21386">issue 21386</a>)
K
Kohsuke Kawaguchi 已提交
1324
</ul>
1325
<h3><a name=v1.548>What's new in 1.548</a> (2014/01/20)</h3>
K
Kohsuke Kawaguchi 已提交
1326
<ul class=image>
1327 1328 1329
  <li class=rfe>
    API for adding actions to a wide class of model objects at once.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18224">issue 18224</a>)
1330 1331 1332 1333 1334
  <li class='major rfe'>
    Added infrastructure for moving items into or out of folders.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20008">issue 20008</a>)
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18028">issue 18028</a>)
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18680">issue 18680</a>)
1335
  <li class=bug>
1336 1337
    <i>Apply</i> buttons did not work in Internet Explorer in compatibility mode.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19826">issue 19826</a>)
1338 1339 1340
  <li class="major bug">
    Builds can seem to disappear from a job in a folder if that folder is renamed.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18694">issue 18694</a>)
1341
  <li class=bug>
1342 1343
    <code>/login</code> offers link to <code>/opensearch.xml</code> which anonymous users cannot retrieve.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21254">issue 21254</a>)
1344 1345 1346
  <li class=rfe>
    Added API class <code>SecurityListener</code> to receive login events and similar.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20999">issue 20999</a>)
1347 1348 1349
  <li class=rfe>
    Option to hold lazy-loaded build references strongly, weakly, and more.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19400">issue 19400</a>)
K
Kohsuke Kawaguchi 已提交
1350
</ul>
1351
<h3><a name=v1.547>What's new in 1.547</a> (2014/01/12)</h3>
K
Kohsuke Kawaguchi 已提交
1352
<ul class=image>
1353 1354
  <li class=rfe>
    Split Windows slave functionality into its own plugin.
1355 1356 1357
  <li class="major bug">
    NPE since 1.545 when using aggregated test result publisher without specifying downstream jobs explicitly.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18410">issue 18410</a>)
V
Vojtech Juranek 已提交
1358 1359 1360
  <li class=bug>
    Fixed Trend Graph NPE when there isn't any builds
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21239">issue 21239</a>)
K
Kohsuke Kawaguchi 已提交
1361
</ul>
1362
<h3><a name=v1.546>What's new in 1.546</a> (2014/01/06)</h3>
K
Kohsuke Kawaguchi 已提交
1363
<ul class=image>
1364 1365 1366
  <li class="major bug">
    Builds disappear after renaming a job.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18678">issue 18678</a>)
1367 1368 1369
  <li class=bug>
    When clicking <i>Apply</i> to rename a job, tell the user that <i>Save</i> must be used instead.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17401">issue 17401</a>)
1370 1371 1372
  <li class="major bug">
    Exception from XStream running Maven builds on strange Java versions.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21183">issue 21183</a>)
1373 1374 1375
  <li class=bug>
    When clicking <i>Apply</i> results in an exception (error page), show it, rather than creating an empty dialog.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20772">issue 20772</a>)
K
Kohsuke Kawaguchi 已提交
1376
</ul>
K
Kohsuke Kawaguchi 已提交
1377
<h3><a name=v1.545>What's new in 1.545</a> (2013/12/31)</h3>
K
Kohsuke Kawaguchi 已提交
1378
<ul class=image>
1379 1380 1381
  <li class=bug>
      <code>CannotResolveClassException</code> breaks loading of entire containing folder, not just one job.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20951">issue 20951</a>)
1382 1383 1384
  <li class=bug>
    Better robustness against XML deserialization errors.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21024">issue 21024</a>)
1385 1386 1387
  <li class=bug>
    Minimizing disk I/O while loading the <em>names</em> of build records during Jenkins startup.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-21078">issue 21078</a>)
1388 1389 1390
  <li class=bug>
    Avoiding serializing the owning build as part of a test result action, as this can lead to errors later.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18410">issue 18410</a>)
K
Kohsuke Kawaguchi 已提交
1391
</ul>
K
Kohsuke Kawaguchi 已提交
1392
<h3><a name=v1.544>What's new in 1.544</a> (2013/12/15)</h3>
K
Kohsuke Kawaguchi 已提交
1393
<ul class=image>
O
Oliver Gondža 已提交
1394 1395 1396
  <li class=bug>
    RingBufferLogHandler throws ArrayIndexOutOfBoundsException after int-overflow.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-9120">issue 9120</a>)
O
Oliver Gondža 已提交
1397 1398 1399
  <li class=bug>
    Hudson shows 0GB free space when space available drops below 1GB.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-7776">issue 7776</a>)
J
Jesse Glick 已提交
1400 1401 1402
  <li class=rfe>
    Added filter field for installed plugins tab.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20219">issue 20219</a>)
1403 1404 1405
  <li class=bug>
      <code>groovysh</code> command did not work in authenticated Jenkins instances.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17929">issue 17929</a>)
1406 1407 1408
  <li class=bug>
    Avoid eagerly loading all builds when displaying lists of them (<i>Build History</i> and <i>Build Time Trend</i> UIs).
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20892">issue 20892</a>)
K
Kohsuke Kawaguchi 已提交
1409 1410 1411
  <li class=bug>
    Error page should be visible even if the anonymous user does not have overall/read access.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20866">issue 20866</a>)
J
Jesse Glick 已提交
1412 1413 1414
  <li class=bug>
    JavaScript errors when navigating away from a page with a build timeline widget while the timeline is loading.
    (<a href="https://github.com/jenkinsci/jenkins/pull/1041">pull request 1041</a>)
K
Kohsuke Kawaguchi 已提交
1415 1416 1417
  <li class=bug>
    Fixed a possible dead lock problem in deleting projects.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19446">issue 19446</a>)
1418 1419 1420
</ul>
<h3><a name=v1.543>What's new in 1.543</a> (2013/12/10)</h3>
<ul class=image>
K
Kohsuke Kawaguchi 已提交
1421 1422 1423 1424
  <li class=bug>
    HTML metacharacters not escaped in log messages.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20800">issue 20800</a>)
</ul>
K
Kohsuke Kawaguchi 已提交
1425
<h3><a name=v1.542>What's new in 1.542</a> (2013/12/02)</h3>
K
Kohsuke Kawaguchi 已提交
1426
<ul class=image>
K
Kohsuke Kawaguchi 已提交
1427 1428 1429
  <li class=bug>
    Improved error diagnosis for jzlib deflate problem.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20618">issue 20618</a>)
1430 1431 1432
  <li class=bug>
    Improved error diagnosis for CLI stream corruption.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18058">issue 18058</a>)
O
Oliver Gondža 已提交
1433 1434 1435
  <li class=bug>
    Don't hold off building until saved for jobs copied from CLI.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20744">issue 20744</a>)
O
Oliver Gondža 已提交
1436 1437 1438
  <li class="major rfe">
    Allow build queue and executor status panes to be collapsed.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-5622">issue 5622</a>)
K
Kohsuke Kawaguchi 已提交
1439 1440
  <li class="major bug">
    Jenkins 1.540 just doesn't boot on Windows at all.
1441
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20630">issue 20630</a>)
K
Kohsuke Kawaguchi 已提交
1442
</ul>
K
Kohsuke Kawaguchi 已提交
1443
<h3><a name=v1.541>What's new in 1.541</a> (2013/11/24)</h3>
K
Kohsuke Kawaguchi 已提交
1444
<ul class=image>
1445 1446 1447
  <li class=rfe>
    Add option to create view by copying an existing one.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-13978">issue 13978</a>)
K
Kohsuke Kawaguchi 已提交
1448 1449 1450
  <li class=rfe>
    Introduced the boot failure hook script that gets executed when Jenkins fails to start.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20609">issue 20609</a>)
K
Kohsuke Kawaguchi 已提交
1451 1452 1453
  <li class=bug>
    Fixed "java.lang.NoClassDefFoundError: JarURLConnection" on OpenJDK
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20163">issue 20163</a>)
1454 1455 1456
  <li class=bug>
    <code>FileAlreadyExistsException</code> upon “deleted” symlink while (re)creating it.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20610">issue 20610</a>)
1457 1458 1459
  <li class=bug>
    Allow background tasks to run simultaneously, preventing task blockage.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19622">issue 19622</a>)
V
Vojtech Juranek 已提交
1460 1461 1462
  <li class=bug>
    Fixed failed tests displaying as Yellow in JUnit history plot
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-7866">issue 7866</a>)
K
Kohsuke Kawaguchi 已提交
1463
</ul>
K
Kohsuke Kawaguchi 已提交
1464
<h3><a name=v1.540>What's new in 1.540</a> (2013/11/17)</h3>
K
Kohsuke Kawaguchi 已提交
1465
<ul class=image>
K
Kohsuke Kawaguchi 已提交
1466 1467 1468
  <li class=bug>
    CLI over HTTP was not working since 1.535.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20128">issue 20128</a>)
O
Olivier Lamy 已提交
1469
  <li class=bug>
O
Olivier Lamy 已提交
1470
    hudson appears in a the webpage title.
O
Olivier Lamy 已提交
1471
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-14380">issue 14380</a>)
1472 1473 1474
  <li class=bug>
    Linkage error in <code>InitializerFinder.discoverTasks</code> blocks startup.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20442">issue 20442</a>)
H
Harald Albers 已提交
1475 1476 1477
  <li class=rfe>
    Add Test button to check proxy connection
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20191">issue 20191</a>)
1478 1479
  <li class=rfe>
    Collect and report JVM crash dump files to assist trouble-shooting
1480 1481 1482
  <li class=bug>
      <code>ClassCastException</code>s sometimes shown from views set to be recursive.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20415">issue 20415</a>)
J
Jesse Glick 已提交
1483 1484 1485
  <li class=rfe>
    Show different “up” link for jobs in folders.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20106">issue 20106</a>)
1486 1487 1488
  <li class=rfe>
    Add log handling line beginning with 'file://' as URL.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19866">issue 19866</a>)
1489
  <li class='major bug'>
K
Kohsuke Kawaguchi 已提交
1490 1491
    Builds of a concurrently executable job might end up colliding on the same workspace.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-10615">issue 10615</a>)
1492
  <li class=bug>
D
Daniel Beck 已提交
1493
    Fixed error during installation of .deb package (/var/run/jenkins doesn't exists)
1494
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20407">issue 20407</a>)
V
Vojtech Juranek 已提交
1495 1496 1497
  <li class=bug>
    Global search box now remembers entered text
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18192">issue 18192</a>)
1498 1499 1500 1501
  <li class=rfe>
    Add extension point to allow plugins to contribute to the checking of
    assigned labels.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20514">issue 20514</a>)
O
Oliver Gondža 已提交
1502 1503 1504
  <li class=bug>
    Fixed issue where CLI required giving Overall read permission to anonymous.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-8815">issue 8815</a>)
1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516
  <li class=bug>
    Jar cache option wasn't taking effect on JNLP slaves.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20093">issue 20093</a>)
  <li class=bug>
    Interrupting remote class loading can lead to <tt>NoClassDefFoundError: Could not initialize class</tt>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19453">issue 19453</a>)
  <li class=rfe>
    Name channel executor threads for better diagnosability.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19004">issue 19004</a>)
  <li class=rfe>
    Better diagnosability for remoting <tt>StreamCorruptedException</tt>
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-8856">issue 8856</a>)
K
Kohsuke Kawaguchi 已提交
1517
</ul>
K
Kohsuke Kawaguchi 已提交
1518
<h3><a name=v1.539>What's new in 1.539</a> (2013/11/11)</h3>
K
Kohsuke Kawaguchi 已提交
1519 1520 1521 1522 1523 1524 1525
<ul class=image>
  <li class=rfe>
    Core started relying on Java6 API, completing Java5 -&gt; Java6 migration.
    (<a href="https://groups.google.com/d/topic/jenkinsci-dev/c_XTbO52PTM/discussion">discussion</a>)
  <li class=rfe>
    Adding a batch of contributed localization from the community.
</ul>
K
Kohsuke Kawaguchi 已提交
1526
<h3><a name=v1.538>What's new in 1.538</a> (2013/11/03)</h3>
K
Kohsuke Kawaguchi 已提交
1527
<ul class=image>
K
Kohsuke Kawaguchi 已提交
1528 1529 1530 1531
  <li class=rfe>
    Disabled, aborted, and not-build status now has different image names to allow
    themes to use different icons.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19438">issue 19438</a>)
K
Kohsuke Kawaguchi 已提交
1532 1533 1534
  <li class=rfe>
    Ask for confirmation if an user tries to leave an edited configuration page.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19835">issue 19835</a>)
K
Kohsuke Kawaguchi 已提交
1535 1536 1537
  <li class=rfe>
    Test failure summary appearance is improved.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19884">issue 19884</a>)
1538 1539 1540
  <li class=rfe>
    Added CLI commands that manipulate views
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19996">issue 19996</a>)
K
Kohsuke Kawaguchi 已提交
1541
  <li class=rfe>
K
Kohsuke Kawaguchi 已提交
1542
    Improved the /cli help screen.
K
Kohsuke Kawaguchi 已提交
1543
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20023">issue 20023</a>)
K
Kohsuke Kawaguchi 已提交
1544
  <li class=bug>
1545
    Polling-triggered jobs get scheduled en-mass on start-up if slaves aren't online yet.
K
Kohsuke Kawaguchi 已提交
1546
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-8408">issue 8408</a>)
K
Kohsuke Kawaguchi 已提交
1547 1548 1549
  <li class=bug>
    Fixed the handling of nested variable expansion.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20280">issue 20280</a>)
J
Jesse Glick 已提交
1550 1551 1552
  <li class=bug>
    NPE thrown from CLI <code>build</code> command under some circumstances.
    (<a href="https://github.com/jenkinsci/jenkins/pull/979">pull request 979</a>)
K
Kohsuke Kawaguchi 已提交
1553
  <li class=bug>
D
Daniel Beck 已提交
1554
    Fixed a bug in the compatibility transformer (since 1.527) that causes <tt>VerifyError</tt> in Ivy plugin and possibly others.
K
Kohsuke Kawaguchi 已提交
1555
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19383">issue 19383</a>)
1556 1557
  <li class=bug>
    Pass full list of all possible jobs to ViewJobFilter when recurse option is set
1558
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20143">issue 20143</a>)
1559 1560 1561
  <li class=rfe>
      <code>get-job</code> and <code>update-job</code> CLI commands can now work with folders, or indeed any <code>AbstractItem</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20236">issue 20236</a>)
1562 1563 1564
  <li class=rfe>
    Added API allowing plugins to hide entries from the context menu even while they appear in the sidepanel.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19173">issue 19173</a>)
1565
  </li>
K
Kohsuke Kawaguchi 已提交
1566
</ul>
K
Kohsuke Kawaguchi 已提交
1567
<h3><a name=v1.537>What's new in 1.537</a> (2013/10/27)</h3>
K
Kohsuke Kawaguchi 已提交
1568
<ul class=image>
1569 1570 1571
  <li class='rfe'>
    Upgrade bundled plugin versions: ssh-slaves to 1.5, and credentials to 1.9.1
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20071">issue 20071</a>)
1572 1573 1574
  <li class=bug>
    Build button column was broken in 1.535 for parameterized builds.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20080">issue 20080</a>)
1575 1576 1577
  <li class='major bug'>
    Miscalculation of environment variables caused some binaries (such as <code>ssh</code>) to not be found.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19926">issue 19926</a>)
1578 1579 1580
  <li class=rfe>
    Extension point for secure users of REST APIs (permitting JSONP and primitive XPath).
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16936">issue 16936</a>)
1581 1582
  <li class=bug>
    “Run a build” link in page shown when no workspace existed for a job was not functional; unlinking.
1583 1584 1585
  <li class=bug>
    Integer overflow could cause JavaScript functions to break in long-running Jenkins processes.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20085">issue 20085</a>)
K
Kohsuke Kawaguchi 已提交
1586 1587 1588
  <li class='major bug'>
    Reverted the JENKINS-18629 fix in 1.536 as it causes various regressions in plugins.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20262">issue 20262</a>)
K
Kohsuke Kawaguchi 已提交
1589
</ul>
K
Kohsuke Kawaguchi 已提交
1590
<h3><a name=v1.536>What's new in 1.536</a> (2013/10/20)</h3>
K
Kohsuke Kawaguchi 已提交
1591
<ul class=image>
K
Kohsuke Kawaguchi 已提交
1592 1593 1594
  <li class=bug>
    Fixed two file descriptor leaks.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-14336">issue 14336</a>)
O
Oliver Gondža 已提交
1595 1596 1597
  <li class=bug>
    RuntimeException if you try to save a config with a choice parameter that has no choices.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18434">issue 18434</a>)
1598 1599 1600
  <li class=bug>
    1.534 made ZIP downloads of artifacts work again, but missing a base directory inside the ZIP.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19947">issue 19947</a>)
1601
  <li class='major bug'>
1602 1603 1604
    Stapler error saving certain kinds of configuration.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18629">issue 18629</a>)
  <li class='major bug'>
1605 1606 1607 1608 1609 1610
    Upgrade Trilead SSH client library to version that does not cause connection loss when
    there is a lot of logging on the build slave and the performance improvements in
    ssh-slaves 0.27+ are enabled (
    <a href="https://issues.jenkins-ci.org/browse/JENKINS-18836">issue 18836</a>,
    <a href="https://issues.jenkins-ci.org/browse/JENKINS-18879">issue 18879</a>,
    <a href="https://issues.jenkins-ci.org/browse/JENKINS-19619">issue 19619</a>)
1611
  <li class='major rfe'>
K
Kohsuke Kawaguchi 已提交
1612
    Upgrade bundled iplugin versions: ssh-slaves to 1.4, ssh-credentials to 1.5.3 and
1613
    credentials to 1.8.3
S
Stephen Connolly 已提交
1614
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19945">issue 19945</a>)
1615 1616
  <li class='major rfe'>
    Executor threads are now created only on demand.
K
Kohsuke Kawaguchi 已提交
1617
</ul>
K
Kohsuke Kawaguchi 已提交
1618
<h3><a name=v1.535>What's new in 1.535</a> (2013/10/14)</h3>
K
Kohsuke Kawaguchi 已提交
1619
<ul class=image>
1620 1621 1622 1623 1624 1625
  <li class=bug>
    Windows JDK installer failed in a path with spaces.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19447">issue 19447</a>)
  <li class=bug>
    Windows JDK installer should not install a public JRE.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-8957">issue 8957</a>)
1626 1627 1628
  <li class='major bug'>
    After deleting last build, next build of last build is zombie.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19920">issue 19920</a>)
J
Jesse Glick 已提交
1629 1630
  <li class='rfe'>
    Split matrix authorization strategies into an independent plugin.
1631 1632
  <li class='rfe'>
    UI Samples plugin fully separated from core. To view samples during plugin development or at any other time, just install from the update center.
1633 1634 1635
  <li class=bug>
    View description should be clearly separated from the Jenkins system message.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18633">issue 18633</a>)
1636 1637 1638 1639
  <li class=bug>
    SCM polling sometimes broken since 1.527 due to a change in how environment variables are calculated.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19307">issue 19307</a>)
  <li class=bug>
1640 1641
    Breadcrumb bar moves away from header when scrolling past end of page on OS X.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19803">issue 19803</a>)
1642 1643 1644 1645 1646
  <li class='major rfe'>
    "java -jar jenkins.war" now runs on Jetty8. Command line options are still compatible.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18366">issue 18366</a>)
  <li class=rfe>
    "java -jar jenkins.war" gets the "--spdy" option to enable SPDY.
O
Oliver Gondža 已提交
1647 1648 1649
  <li class=rfe>
    Expand all/Collapse all functionality for artifact tree view.
    (<a href="https://github.com/jenkinsci/jenkins/pull/616">pull request 616</a>)
O
Oliver Gondža 已提交
1650 1651 1652
  <li class=rfe>
    Visualize queued jobs in view.
    (<a href="https://github.com/jenkinsci/jenkins/pull/531">pull request 531</a>)
K
Kohsuke Kawaguchi 已提交
1653
</ul>
K
Kohsuke Kawaguchi 已提交
1654
<h3><a name=v1.534>What's new in 1.534</a> (2013/10/07)</h3>
K
Kohsuke Kawaguchi 已提交
1655
<ul class=image>
1656 1657 1658
  <li class='major bug'>
    Default crumb issuer configurations saved in older releases did not load as of Jenkins 1.531.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19613">issue 19613</a>)
J
Jesse Glick 已提交
1659 1660 1661
  <li class='major bug'>
    As of 1.532 download of artifact ZIPs was broken.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19752">issue 19752</a>)
1662 1663 1664
  <li class='major bug'>
    Old copies of <code>maven3-agent.jar</code> on slaves were not being reliably updated, leading to errors.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19251">issue 19251</a>)
1665 1666 1667
  <li class='rfe'>
    Add option to disable "Remember me on this computer" checkbox in login screen.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15757">issue 15757</a>)
1668 1669 1670
  <li class='rfe'>
    Added postCheckout method for SCMs
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19740">issue 19740</a>)
K
Kohsuke Kawaguchi 已提交
1671
</ul>
1672
<h3><a name=v1.533>What's new in 1.533</a> (2013/09/29)</h3>
K
Kohsuke Kawaguchi 已提交
1673
<ul class=image>
J
Jesse Glick 已提交
1674 1675 1676
  <li class=rfe>
    Offer alternate error message for pattern-based project naming strategy.
    (<a href="https://github.com/jenkinsci/jenkins/pull/914">pull request 914</a>)
K
Kohsuke Kawaguchi 已提交
1677
</ul>
1678
<h3><a name=v1.532>What's new in 1.532</a> (2013/09/23)</h3>
K
Kohsuke Kawaguchi 已提交
1679
<ul class=image>
1680 1681 1682
  <li class='major bug'>
    Working around a GZip compression bug in jzlib affecting transfer of certain large, repetitive artifacts.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19473">issue 19473</a>)
J
Jesse Glick 已提交
1683 1684 1685
  <li class='major bug'>
    Lazy-loading bug: builds go missing.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19418">issue 19418</a>)
J
Jesse Glick 已提交
1686 1687 1688
  <li class=bug>
    (re)create build number->id symlink if missing when updating permalink.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19034">issue 19034</a>)
J
Jesse Glick 已提交
1689 1690 1691
  <li class=rfe>
    Display the full display name in title for jobs and views.
    (<a href="https://github.com/jenkinsci/jenkins/pull/884">pull request 884</a>)
1692 1693 1694
  <li class='major rfe'>
    Added a new extension point to control where archived artifacts get stored.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17236">issue 17236</a>)
1695 1696 1697
  <li class=rfe>
    Use fine-grained permissions for node manipulation via REST API &amp; CLI
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18485">issue 18485</a>)
S
Stefan Wolf 已提交
1698 1699 1700
  <li class='bug'>
    Make the link to the aggregated test result from the project page work.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-9637">issue 9637</a>)
K
Kohsuke Kawaguchi 已提交
1701
</ul>
1702
<h3><a name=v1.531>What's new in 1.531</a> (2013/09/16)</h3>
K
Kohsuke Kawaguchi 已提交
1703
<ul class=image>
1704 1705 1706
  <li class=bug>
    Deleting an external run did not immediately remove it from build list, leading to errors from log rotation.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19377">issue 19377</a>)
1707 1708 1709
  <li class=bug>
    When copying a directory from master to slave fails due to an error on the slave, properly report it.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-9540">issue 9540</a>)
J
Jesse Glick 已提交
1710 1711 1712
  <li class=bug>
    Identify user agent for Internet Explorer 11.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19171">issue 19171</a>)
1713 1714 1715
  <li class=bug>
    Since 1.518, fingerprint serialization broke when job or file names contained XML special characters like ampersands.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18337">issue 18337</a>)
1716 1717 1718
  <li class=bug>
    Robustness against truncated fingerprint files.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19515">issue 19515</a>)
K
Kohsuke Kawaguchi 已提交
1719 1720 1721
  <li class=rfe>
    JavaScript error in the checkUrl computation shouldn't break the job configuration page.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19457">issue 19457</a>)
1722 1723 1724
  <li class=rfe>
    Annotate the Advanced section if some fields are already customized.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-3107">issue 3107</a>)
V
Vojtech Juranek 已提交
1725 1726 1727
  <li class=bug>
    No events fired when project is enable/disable or the description is changed
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17108">issue 17108</a>)
K
Kohsuke Kawaguchi 已提交
1728
</ul>
1729
<h3><a name=v1.530>What's new in 1.530</a> (2013/09/09)</h3>
K
Kohsuke Kawaguchi 已提交
1730
<ul class=image>
1731 1732 1733
  <li class=bug>
    Send Maven agent JARs to slaves on demand, not unconditionally upon connection.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16261">issue 16261</a>)
1734 1735 1736 1737 1738 1739
  <li class=bug>
    Occasional race condition during startup.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18775">issue 18775</a>)
  <li class='major bug'>
    Robustness against startup error for users of Global Build Stats plugin.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17248">issue 17248</a>)
1740 1741 1742
  <li class='major bug'>
    404s from Javadoc and HTML Publisher plugins.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19168">issue 19168</a>)
1743 1744 1745
  <li class=bug>
    Build number symlinks and permalinks not updated for Maven module builds.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18846">issue 18846</a>)
K
Kohsuke Kawaguchi 已提交
1746
</ul>
1747
<h3><a name=v1.529>What's new in 1.529</a> (2013/08/26)</h3>
K
Kohsuke Kawaguchi 已提交
1748
<ul class=image>
O
Olivier Lamy 已提交
1749 1750
  <li class=rfe>
      With Apache Maven 3.1 build, logging configuration from the Apache Maven distribution is not used.
O
Olivier Lamy 已提交
1751 1752
  <li class=rfe>
      Avoid log duplication with Apache Maven 3.1 builds
1753 1754 1755
  <li class=bug>
    Ungraceful handling of empty matrix project axes.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19135">issue 19135</a>)
1756 1757
  <li class=bug>
    Updated Groovy to 1.8.9 to avoid <a href="http://jira.codehaus.org/browse/GROOVY-4292">GROOVY-4292</a>.
1758 1759 1760
  <li class='major bug'>
    CLI login command broken on Windows since 1.518.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19192">issue 19192</a>)
1761 1762 1763
  <li class=bug>
    A malformed JUnit result file should mark that test suite as a failure, but not interrupt archiving of other tests.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19186">issue 19186</a>)
1764 1765 1766
  <li class=rfe>
    Build for $username now shows also build scheduled by user
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16178">issue 16178</a>)
K
Kohsuke Kawaguchi 已提交
1767
</ul>
1768
<h3><a name=v1.528>What's new in 1.528</a> (2013/08/18)</h3>
K
Kohsuke Kawaguchi 已提交
1769
<ul class=image>
1770 1771
  <li class=rfe>
    Command line now supports "--sessionTimeout" option for controlling session timeout
K
Kohsuke Kawaguchi 已提交
1772 1773 1774
  <li class=bug>
    Form validation methods weren't getting triggered when one of its dependency controls change.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19124">issue 19124</a>)
1775 1776 1777
  <li class=bug>
    When POST is required for some HTTP operation but GET was used, the response should have status code 405.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16918">issue 16918</a>)
S
ssogabe 已提交
1778 1779 1780
  <li class=bug>
    Correct help text of Label field in automatic installation of tools in global configuration.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19091">issue 19091</a>)
1781 1782
  <li class=rfe>
    Use Guice from Google rather than a fork
V
Vojtech Juranek 已提交
1783 1784 1785
  <li class=bug>
    Jenkins does not invoke ProcessKillers for Windows
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19156">issue 19156</a>)
K
Kohsuke Kawaguchi 已提交
1786
</ul>
1787
<h3><a name=v1.527>What's new in 1.527</a> (2013/08/12)</h3>
K
Kohsuke Kawaguchi 已提交
1788
<ul class=image>
K
Kohsuke Kawaguchi 已提交
1789 1790 1791 1792 1793 1794
  <li class=bug>
    Fixed <tt>NoSuchFieldError: triggers</tt> with older Maven plugin
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18677">issue 18677</a>)
  <li class=rfe>
    Added bytecode transformation driven compatibility ensurance mechanism
    (<a href="https://groups.google.com/forum/#!topic/jenkinsci-dev/7qCClb36njo">discussion</a>)
J
Jesse Glick 已提交
1795 1796 1797
  <li class=rfe>
    Improve search to locate items inside folders.
    (<a href="https://github.com/jenkinsci/jenkins/pull/848">pull request 848</a>)
1798
    (<a href="https://github.com/jenkinsci/jenkins/pull/893">pull request 893</a>)
1799 1800 1801
  <li class=bug>
    Windows path separators not correctly escaped in Maven properties configuration.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-10539">issue 10539</a>)
1802 1803 1804
  <li class=rfe>
    Improved <tt>EnvironmentContributor</tt> to support project-level insertion.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19042">issue 19042</a>)
K
Kohsuke Kawaguchi 已提交
1805
</ul>
1806
<h3><a name=v1.526>What's new in 1.526</a> (2013/08/05)</h3>
K
Kohsuke Kawaguchi 已提交
1807
<ul class=image>
C
christ66 已提交
1808 1809 1810
  <li class=bug>
    HudsonAuthenticationEntryPoint can break CLI support, because the port isn't exposed properly.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18634">issue 18634</a>)
K
Kohsuke Kawaguchi 已提交
1811 1812 1813
  <li class=rfe>
    Report an user friendly error page if a deletion of a build fails.
    (<a href="https://github.com/jenkinsci/jenkins/pull/827">pull request 827</a>)
1814
  <li class=bug>
J
Typo.  
Jesse Glick 已提交
1815
    Maven build failure wasn't describing errors like Maven CLI does.
1816
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15025">issue 15025</a>)
1817 1818 1819
  <li class=bug>
    <code>MavenModuleSetBuild.getResult</code> is expensive.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18895">issue 18895</a>)
1820 1821 1822 1823 1824 1825
  <li class=bug>
    Revisited fix to be compatible for plugins.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18119">issue 18119</a>)
  <li class=bug>
    Ensuring <code>/log/all</code> shows only <code>INFO</code> and above messages, even if custom loggers display <code>FINE</code> or below.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18959">issue 18959</a>)
K
Kohsuke Kawaguchi 已提交
1826
  <li class=rfe>
1827
    Added a new monitor that detects and fixes out-of-order builds records.
K
Kohsuke Kawaguchi 已提交
1828
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18289">issue 18289</a>)
1829 1830 1831
  <li class=rfe>
    Added CLI command <code>create-node</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18282">issue 18282</a>)
O
Olivier Lamy 已提交
1832 1833 1834
  <li class=rfe>
    Can't build using maven 3.1.0
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15935">issue 15935</a>)
K
Kohsuke Kawaguchi 已提交
1835 1836 1837
  <li class=bug>
    Fixed Winstone+mod_proxy_ajp+SSL combo issue.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-5753">issue 5753</a>)
J
Jesse Glick 已提交
1838 1839 1840
  <li class=bug>
    <code>JENKINS_DEBUG_LEVEL</code> misinterpreted by Winstone, causing excessive logging.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18701">issue 18701</a>)
1841 1842 1843
  <li class='major bug'>
    Since 1.520, Jenkins requires Java 6 or later, breaking Maven builds set to use JDK 5. Now falls back to JVM of slave agent but sets compile/test flags to use defined JDK.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18403">issue 18403</a>)
1844 1845 1846
  <li class='major bug'>
    Since 1.517, Maven projects using Maven 2 could not build projects using extensions depending on Apache Commons Codec.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18178">issue 18178</a>)
1847 1848 1849
  <li class=bug>
    Test harness was packing copies of Maven into plugin archives under some conditions.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18918">issue 18918</a>)
I
imod 已提交
1850 1851 1852
  <li class=bug>
    Provided maven settings.xml in maven builder is lost.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15976">issue 15976</a>)
1853 1854 1855
  <li class=bug>
    Exception when running polling with a Maven installation not defined on master.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18898">issue 18898</a>)
1856 1857 1858
  <li class=bug>
    Since 1.477 GET on <code>/view/…/config.xml</code> included a spurious wrapper element.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17302">issue 17302</a>)
1859 1860
  <li class=rfe>
    Clearer display of log messages: chronological order, and coloration of repeated vs. fresh metadata (date, log level, log source).
K
Kohsuke Kawaguchi 已提交
1861 1862 1863
  <li class=bug>
    Fixed a regression that broke some plugins' form validation
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18776">issue 18776</a>)
S
ssogabe 已提交
1864 1865 1866
  <li class=bug>
    People View does Not Populate if JQuery plugin enabled.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18641">issue 18641</a>)
K
Kohsuke Kawaguchi 已提交
1867
</ul>
1868 1869
<h3><a name=v1.525>What's new in 1.525</a> (2013/07/29)</h3>
<p>Same as 1.524; botched release.</p>
1870
<h3><a name=v1.524>What's new in 1.524</a> (2013/07/23)</h3>
K
Kohsuke Kawaguchi 已提交
1871
<ul class=image>
1872 1873 1874
  <li class=bug>
    Clock Difference broken on Manage Nodes page
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18671">issue 18671</a>)
1875 1876 1877
  <li class=bug>
    Fixed another possible cause of an NPE from MatrixConfiguration.newBuild.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17728">issue 17728</a>)
1878 1879 1880
  <li class=bug>
    NPE in MavenFingerprinter.getArtifactRepositoryMaven21.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18441">issue 18441</a>)
1881 1882
  <li class=rfe>
    More reliability improvement in remote slave reconnection.
D
Daniel Beck 已提交
1883 1884 1885
  <li class="major bug">
    Do not load disabled plugins as dependencies for other plugins.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18654">issue 18654</a>)
K
Kohsuke Kawaguchi 已提交
1886
</ul>
1887
<h3><a name=v1.523>What's new in 1.523</a> (2013/07/14)</h3>
K
Kohsuke Kawaguchi 已提交
1888 1889 1890 1891 1892
<ul class=image>
  <li class=bug>
    Fixed: claiming of tests doesn't work in Maven jobs (claim-plugin)
     (<a href="https://issues.jenkins-ci.org/browse/JENKINS-14585">issue 14585</a>)
</ul>
1893
<h3><a name=v1.522>What's new in 1.522</a> (2013/07/06)</h3>
K
Kohsuke Kawaguchi 已提交
1894
<ul class=image>
K
Kohsuke Kawaguchi 已提交
1895 1896 1897
  <li class=bug>
    Fixed a regression in the config form with some plugins
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18585">issue 18585</a>)
K
Kohsuke Kawaguchi 已提交
1898 1899 1900
  <li class=bug>
    Fixed a dead lock in the <tt>Project</tt> class and improved the signature of the persisted XML form a bit.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18589">issue 18589</a>)
K
Kohsuke Kawaguchi 已提交
1901 1902 1903
  <li class=bug>
    Improved memory efficiency in parsing test reports with large stdio output files.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15382">issue 15382</a>)
K
Kohsuke Kawaguchi 已提交
1904 1905 1906
  <li class=rfe>
    Node monitoring now happens concurrently across all the slaves, so it'll be affected less by problematic slaves.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18438">issue 18438</a>)
1907 1908 1909
  <li class=bug>
    Deadlock during Maven builds Parsing POM step
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15846">issue 15846</a>)
1910 1911
  <li class=bug>
    If every node is restricted to tied jobs only, Matrix build jobs can never start.
K
Kohsuke Kawaguchi 已提交
1912
</ul>
1913
<h3><a name=v1.521>What's new in 1.521</a> (2013/07/02)</h3>
K
Kohsuke Kawaguchi 已提交
1914
<ul class=image>
K
Kohsuke Kawaguchi 已提交
1915 1916 1917
  <li class=bug>
    Build with parameters returns empty web page
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18425">issue 18425</a>)
K
Kohsuke Kawaguchi 已提交
1918 1919 1920
  <li class=bug>
    Access denied error results in ERR_CONTENT_DECODING_FAILED on most browsers, masking the root cause.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15437">issue 15437</a>)
K
Kohsuke Kawaguchi 已提交
1921 1922 1923 1924 1925
  <li class=bug>
    Fixed the master/slave handshake problem when a slave runs on non-ASCII compatible encoding (such as EBCDIC.)
  <li class=rfe>
    Added a diagnosis for <tt>StreamCorruptedException</tt> problem
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-8856">issue 8856</a>)
K
Kohsuke Kawaguchi 已提交
1926 1927 1928
  <li class=rfe>
    Matrix project's parent can be now tied to labels/slaves.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-7825">issue 7825</a>)
K
Kohsuke Kawaguchi 已提交
1929 1930 1931
  <li class=bug>
    Clean up fingerprint records that correspond to the deleted build recods
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18417">issue 18417</a>)
K
Kohsuke Kawaguchi 已提交
1932 1933 1934
  <li class=bug>
    Fixed "Comparison method violates its general contract" error in BuildTrigger.execute
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17247">issue 17247</a>)
K
Kohsuke Kawaguchi 已提交
1935 1936
  <li class=bug>
    Edited description wasn't reflected when pressing the "Apply" button.
1937 1938 1939 1940 1941
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18436">issue 18436</a>)
  <li class=bug>
    Fixed a regression in remoting since 1.519 that caused FindBugs plugins to break.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18349">issue 18349</a>,
     <a href="https://issues.jenkins-ci.org/browse/JENKINS-18405">issue 18405</a>)
1942 1943
  <li class=rfe>
    Revisited the extension point added in 1.519 that adds custom plexus components.
1944
</ul>
1945
<h3><a name=v1.520>What's new in 1.520</a> (2013/06/25)</h3>
K
Kohsuke Kawaguchi 已提交
1946
<ul class=image>
K
Kohsuke Kawaguchi 已提交
1947
  <li class=bug>
J
Typo.  
Jesse Glick 已提交
1948
    Slave launch thread should have the background activity credential.
K
Kohsuke Kawaguchi 已提交
1949
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15578">issue 15578</a>)
1950 1951 1952
  <li class=bug>
    “Build Now” link did not work for multijobs.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16974">issue 16974</a>)
J
Jesse Glick 已提交
1953 1954 1955
  <li class=bug>
    Unix vs. Windows mode not correctly retained for command launchers under some conditions.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18368">issue 18368</a>)
1956 1957 1958
  <li class=bug>
    Edit views with non-ASCII names did not work since 1.500.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18373">issue 18373</a>)
1959 1960 1961
  <li class='major bug'>
    Fixed API incompatibility since 1.489.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18356">issue 18356</a>)
J
Jesse Glick 已提交
1962 1963 1964
  <li class=bug>
    “Projects tied to slave” shows unrelated Maven module jobs.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17451">issue 17451</a>)
1965 1966 1967
  <li class=bug>
    Fixed file descriptor leak in fingerprint computation.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18351">issue 18351</a>)
1968 1969 1970
  <li class=bug>
    Test history was not shown if suite name was part of the test name.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15380">issue 15380</a>)
1971 1972
  <li class=rfe>
    Added a new extension point to monitor the flow of stuff in the queue.
K
Kohsuke Kawaguchi 已提交
1973 1974 1975
  <li class=rfe>
    Added a new extension point to monitor the provisioning of nodes from clouds.
    (<a href="https://github.com/jenkinsci/jenkins/pull/819">pull request 819</a>)
1976 1977
  <li class=rfe>
    Possible to create a custom <code>AbstractDiskSpaceMonitor</code>.
1978 1979 1980
  <li class=rfe>
    Executors running the builds can be now a subject of access control.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18285">issue 18285</a>)
1981 1982 1983 1984
  <li class='major rfe'>
    Core started relying on Java 1.6 as per the agreement in the dev list.
    If you have a serious objection against it, please let us know
    before we really start relying on 1.6 features.
1985 1986 1987 1988
  <li class='major bug'>
    Some actions confirmed by dialog were not working when CSRF crumbs were enabled.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17977">issue 17977</a>)
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18032">issue 18032</a>)
1989 1990 1991
  <li class=rfe>
    CLI list-jobs command should list all nested jobs.
    (<a href="https://github.com/jenkinsci/jenkins/pull/793">pull request 793</a>)
1992 1993 1994 1995
  <li class=rfe>
    Provide a mechanism to differentiate between node properties that are applicable
    to the master node only and node properties that can be applied to all nodes
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18381">issue 18381</a>)
1996 1997 1998 1999 2000 2001
  <li class=bug>
    Maven module links in the module list page are broken.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17713">issue 17713</a>)
  <li class='major bug'>
    100% CPU pegging in <tt>Deflator.deflateBytes</tt>
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-14362">issue 14362</a>)
K
Kohsuke Kawaguchi 已提交
2002
</ul>
2003
<h3><a name=v1.519>What's new in 1.519</a> (2013/06/17)</h3>
K
Kohsuke Kawaguchi 已提交
2004
<ul class=image>
J
Jesse Glick 已提交
2005 2006 2007
  <li class='major bug'>
    Log cluttered with irrelevant warnings about build timestamps when running on Windows on Java 6.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15587">issue 15587</a>)
2008 2009 2010
  <li class='major bug'>
    Fingerprint action deserialization problem fixed.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17125">issue 17125</a>)
K
Kohsuke Kawaguchi 已提交
2011 2012 2013
  <li class='rfe'>
    Updating the master computer's configuration from the slave list UI had no immediate effect.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17276">issue 17276</a>)
2014 2015
  <li class='rfe'>
    Improved the tracking of queued jobs and their eventual builds in the REST API.
2016 2017 2018
  <li class='rfe'>
    Configured log recorders can now pick up messages logged from slaves.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18274">issue 18274</a>)
2019 2020
  <li class='rfe'>
    Added a new extension point to contribute custom plexus components into Maven for the maven project type.
K
Kohsuke Kawaguchi 已提交
2021 2022 2023
  <li class='major rfe'>
    Remoting classloader performance improvement upon reconnection to the same slave.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15120">issue 15120</a>)
K
Kohsuke Kawaguchi 已提交
2024
</ul>
2025
<h3><a name=v1.518>What's new in 1.518</a> (2013/06/11)</h3>
K
Kohsuke Kawaguchi 已提交
2026
<ul class=image>
J
Jesse Glick 已提交
2027 2028 2029
  <li class=bug>
    NPE in <code>DefaultMatrixExecutionStrategyImpl.waitForCompletion</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18024">issue 18024</a>)
2030 2031 2032
  <li class=bug>
    Optimizations in fingerprint recording.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16301">issue 16301</a>)
2033 2034 2035
  <li class=bug>
    Using JNR-POSIX rather than JNA-POSIX for better platform support.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-14351">issue 14351</a>)
2036 2037 2038
  <li class='major bug'>
    Errors searching build records when builds were misordered.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15652">issue 15652</a>)
2039 2040 2041
  <li class='major bug'>
    Finding the last failed build for a job (e.g. from a view column) broke lazy loading.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16023">issue 16023</a>)
2042 2043
  <li class=bug>
    Do not fail startup in case <code>ListView.includeRegex</code> was syntactically malformed.
2044 2045 2046
  <li class=bug>
    CSS stylesheets misrendered in Chrome due to caching.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17684">issue 17684</a>)
2047 2048 2049
  <li class=bug>
    User icon in People broken if Jenkins root URL unconfigured.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18118">issue 18118</a>)
2050 2051 2052
  <li class=bug>
    Progress bar sometimes broken in People.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18119">issue 18119</a>)
K
Kohsuke Kawaguchi 已提交
2053
</ul>
2054
<h3><a name=v1.517>What's new in 1.517</a> (2013/06/02)</h3>
K
Kohsuke Kawaguchi 已提交
2055
<ul class=image>
2056 2057 2058
  <li class=rfe>
    Enable word breaking in potentially long strings like job names.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17030">issue 17030</a>)
J
Jesse Glick 已提交
2059 2060 2061
  <li class=rfe>
    Allow filtering of the Run parameter build list by result.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-7280">issue 7280</a>)
2062 2063 2064
  <li class=rfe>
    Add support for scalatest-maven-plugin.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18086">issue 18086</a>)
2065 2066 2067
  <li class=bug>
    When copying a folder, the display names of contained jobs were gratuitously cleared.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18074">issue 18074</a>)
2068 2069 2070
  <li class=bug>
    “Recurse in subfolders” option for list views produced exceptions when used with native Maven projects.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18025">issue 18025</a>)
J
Jesse Glick 已提交
2071 2072 2073
  <li class=bug>
    Using proper directory separator character for permalinks on Windows.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17681">issue 17681</a>)
2074 2075 2076 2077
  <li class="bug">
    Use markup formater to display parameter description.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18427">issue 18427</a>)
  </li>
K
Kohsuke Kawaguchi 已提交
2078
</ul>
2079
<h3><a name=v1.516>What's new in 1.516</a> (2013/05/27)</h3>
K
Kohsuke Kawaguchi 已提交
2080
<ul class=image>
2081 2082 2083
  <li class=bug>
    NPE from <code>Run.getDynamic</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17935">issue 17935</a>)
2084 2085 2086
  <li class=bug>
    Should be able to collect all log records at a given level using a blank logger name.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17983">issue 17983</a>)
2087 2088 2089
  <li class=bug>
    Reworked Upload Plugin gesture to work more like installation from an update center, and in particular to support dynamic load.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16652">issue 16652</a>)
2090 2091 2092
  <li class=bug>
    Errors in <code>init.groovy</code> halted startup; changed to just log a warning.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17933">issue 17933</a>)
K
Kohsuke Kawaguchi 已提交
2093
</ul>
2094
<h3><a name=v1.515>What's new in 1.515</a> (2013/05/18)</h3>
K
Kohsuke Kawaguchi 已提交
2095
<ul class=image>
O
Olivier Lamy 已提交
2096
  <li class=rfe>
2097 2098 2099
    Windows services now auto-restart in case of abnormal process termination.
  <li class=rfe>
    &lt;f:dropdownDescriptorSelector> does not allow defaulting to specifig instance
O
Olivier Lamy 已提交
2100
     (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17858">issue 17858</a>)
I
imod 已提交
2101
  <li class=rfe>
O
Olivier Lamy 已提交
2102 2103
    mark maven settings / global settings as default for new jobs
     (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17723">issue 17723</a>)
2104 2105 2106
  <li class=bug>
    Display Name is not shown.
     (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17715">issue 17715</a>)
2107 2108 2109
  <li class='major bug'>
    Symlink handling problem with build permalinks on Windows.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17681">issue 17681</a>)
2110 2111 2112
  <li class=bug>
    List views missing a required field were unloadable.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15309">issue 15309</a>)
J
Jesse Glick 已提交
2113 2114 2115
  <li class=bug>
    Maven module artifacts were not being deleted by the log rotator.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17508">issue 17508</a>)
2116 2117 2118
  <li class='major bug'>
    Properly find parent POMs when fingerprinting a Maven project.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17775">issue 17775</a>)
2119 2120 2121
  <li class=rfe>
    Allow the combination filter to accept parameter values.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-7285">issue 7285</a>)
2122 2123 2124
  <li class=rfe>
    Extension point to transform test names (for use with alternative JVM languages).
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17478">issue 17478</a>)
K
Kohsuke Kawaguchi 已提交
2125
</ul>
2126
<h3><a name=v1.514>What's new in 1.514</a> (2013/05/01)</h3>
K
Kohsuke Kawaguchi 已提交
2127
<ul class=image>
2128 2129
  <li class=rfe>
    Added a new <tt>set-build-parameter</tt> command that can update a build variable from within a build.
2130 2131
  <li class=rfe>
    Can use <code>-Dhudson.udp=-1</code> to disable UDP broadcast without showing an ugly exception.
2132 2133 2134
  <li class=bug>
    Third-party license display for core was broken since 1.506.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17724">issue 17724</a>)
2135
  <li class='major bug'>
2136
    Mitigation of exception from fingerprinting in a Maven project when a parent POM could not be located.
2137
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17775">issue 17775</a>)
2138 2139 2140
  <li class=bug>
    NPE from <code>MatrixConfiguration.newBuild</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17728">issue 17728</a>)
J
Jesse Glick 已提交
2141 2142 2143
  <li class=bug>
    Identify the short name of an uploaded plugin from the manifest, so it does not matter what the filename was.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-4543">issue 4543</a>)
2144 2145 2146
  <li class='major bug'>
    NPE configuring Copy Artifact with Maven jobs.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17402">issue 17402</a>)
2147 2148
  <li class=rfe>
    <code>/about</code> now links to license information for plugins as well.
J
Jesse Glick 已提交
2149 2150
  <li class=rfe>
    Updated bundled plugins.
K
Kohsuke Kawaguchi 已提交
2151
</ul>
2152
<h3><a name=v1.513>What's new in 1.513</a> (2013/04/28)</h3>
K
Kohsuke Kawaguchi 已提交
2153
<ul class=image>
2154 2155
  <li class=rfe>
    Slave status monitor page shows when the data is last obtained
2156 2157
  <li class=rfe>
    Delete button to highlight what it is going to delete.
J
Jesse Glick 已提交
2158 2159 2160
  <li class=bug>
    <code>StringIndexOutOfBoundsException</code> in <code>PackageResult.findCorrespondingResult</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17721">issue 17721</a>)
2161 2162 2163
  <li class=rfe>
    Breadcrumb is reworked to show descendants to provide additional navigational shortcuts.
    (<a href="https://wiki.jenkins-ci.org/display/JENKINS/FOSDEM+UI+Enhancement+discussion+notes+2013">discussion</a>)
2164 2165 2166
  <li class=bug>
    <code>hpi:run</code> did not work for bundled plugins.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18352">issue 18352</a>)
K
Kohsuke Kawaguchi 已提交
2167 2168 2169 2170 2171 2172 2173 2174 2175
  <li class=bug>
    Fixed CSRF vulnerabilities
    (SECURITY-63,SECURITY-69)
  <li class=bug>
    Fixed an XSS vulnerability via stylesheet
    (SECURITY-67)
  <li class=bug>
    Fixed an XSS vulnerability to copy arbitrary text into clipboard
    (SECURITY-71/CVE-2013-1808)
K
Kohsuke Kawaguchi 已提交
2176
</ul>
2177
<h3><a name=v1.512>What's new in 1.512</a> (2013/04/21)</h3>
K
Kohsuke Kawaguchi 已提交
2178
<ul class=image>
2179
  <li class=rfe>
J
Jesse Glick 已提交
2180 2181
    Views can now include jobs located within folders.
    (<a href="https://github.com/jenkinsci/jenkins/pull/757">pull 757</a>)
2182 2183 2184
  <li class=rfe>
    Added confirmation dialog before reloading configuration from disk.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15340">issue 15340</a>)
2185 2186
  <li class=rfe>
    Switched confirmation before deleting jobs or wiping out workspace to a dialog.
2187 2188 2189
  <li class=rfe>
    Different text than “Build Now”  for parameterized jobs.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-10738">issue 10738</a>)
S
ssogabe 已提交
2190 2191
  <li class=rfe>
    Check the view name with ajax.
2192 2193 2194
  <li class=bug>
    “Build Now” context menu item broken for parameterized jobs.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17110">issue 17110</a>)
2195 2196 2197
  <li class=bug>
    Incorrect redirection after delete of job in folder in view.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17575">issue 17575</a>)
2198 2199 2200
  <li class=bug>
    ”My Views" links leads to 404 Not Found.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17317">issue 17317</a>)
2201
  <li class=bug>
K
Kohsuke Kawaguchi 已提交
2202
    Quoting Issue with JDK Installer with Windows Installer.
2203
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-5408">issue 5408</a>)
J
Jesse Glick 已提交
2204 2205 2206
  <li class=bug>
    Restored compatibility in <code>ArtifactArchiver</code> signature; broken in 1.509 and could affect plugins.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17637">issue 17637</a>)
K
Kohsuke Kawaguchi 已提交
2207 2208 2209
  <li class=bug>
    Fixed a bug in the logic that hides context menu anchor 'v'
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-13995">issue 13995</a>)
K
Kohsuke Kawaguchi 已提交
2210
</ul>
2211
<h3><a name=v1.511>What's new in 1.511</a> (2013/04/14)</h3>
K
Kohsuke Kawaguchi 已提交
2212
<ul class=image>
2213 2214 2215
  <li class=bug>
    JUnit result archiver should only fail builds if there are really no results - i.e. also no skipped tests.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-7970">issue 7970</a>)
2216 2217 2218
  <li class='major bug'>
      <code>NullPointerException</code> related to lazy loading when loading some builds using fingerprinting.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16845">issue 16845</a>)
2219 2220 2221
  <li class=rfe>
    Better display of parameters in queue items.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17454">issue 17454</a>)
2222 2223 2224
  <li class='bug'>
    sort order of plugin list is not working by default.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17039">issue 17039</a>)
K
Kohsuke Kawaguchi 已提交
2225
</ul>
2226
<h3><a name=v1.510>What's new in 1.510</a> (2013/04/06)</h3>
K
Kohsuke Kawaguchi 已提交
2227
<ul class=image>
K
Kohsuke Kawaguchi 已提交
2228 2229 2230
  <li class=bug>
    <tt>UnsatisfiedLinkError</tt> on <tt>CreateSymbolicLinkw</tt> on Windows XP.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17343">issue 17343</a>)
2231 2232 2233 2234
  <li class=bug>
    Flyweight tasks should execute on the master if there's no static
    executors available.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-7291">issue 7291</a>)
2235 2236 2237
  <li class='major bug'>
    Download tool installations directly from the slave when possible, since this is much faster than going through the master.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17330">issue 17330</a>)
J
Jesse Glick 已提交
2238 2239 2240
  <li class=bug>
    Improved UI for implicitly locked builds.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-10197">issue 10197</a>)
2241 2242 2243
  <li class=bug>
    Incorrect URL computation broke context menu for computers with spaces in their names.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-18236">issue 18236</a>)
K
Kohsuke Kawaguchi 已提交
2244 2245 2246
  <li class=rfe>
    Promote the use of 'H' in cron.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17311">issue 17311</a>)
2247 2248 2249
  <li class='major rfe'>
    Context menu no longer automatically pops up
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-13995">issue 13995</a>)
K
Kohsuke Kawaguchi 已提交
2250
</ul>
2251
<h3><a name=v1.509>What's new in 1.509</a> (2013/04/02)</h3>
K
Kohsuke Kawaguchi 已提交
2252
<ul class=image>
2253 2254 2255
  <li class='major bug'>
    Heavy thread congestion saving fingerprints.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-13154">issue 13154</a>)
2256
  <li class=rfe>
J
Jesse Glick 已提交
2257 2258
    Option to make the build not fail if there is nothing to archive.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-10502">issue 10502</a>)
2259 2260 2261
  <li class=rfe>
    Better report file deletion failures.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17271">issue 17271</a>)
2262 2263 2264
  <li class=bug>
    "Local to the workspace" repository locator does not work when building one module in isolation.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17331">issue 17331</a>)
2265 2266 2267
  <li class=bug>
    Master node mode not correctly displayed in <code>/computer/(master)/configure</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17263">issue 17263</a>)
K
Kohsuke Kawaguchi 已提交
2268 2269 2270
  <li class='major rfe'>
    Performance improvement in master/slave communication throughput
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-7813">issue 7813</a>)
2271 2272 2273 2274 2275 2276
  <li class=bug>
    Quoted label expression can result into dead executors (throwing exception)
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17128">issue 17128</a>)
  <li class=bug>
    ChangeLog should produce some output even if some (plugin) annotator fails
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17084">issue 17084</a>)
2277
  <li class=bug>
K
Kohsuke Kawaguchi 已提交
2278
    View name should not allow "..".
2279
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16608">issue 16608</a>)
K
Kohsuke Kawaguchi 已提交
2280
</ul>
2281
<h3><a name=v1.508>What's new in 1.508</a> (2013/03/25)</h3>
K
Kohsuke Kawaguchi 已提交
2282 2283 2284 2285 2286
<ul class=image>
  <li class='major bug'>
    Fixing a regression in 1.507 that causes a failure to load matrix jobs.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17337">issue 17337</a>)
</ul>
2287
<h3><a name=v1.507>What's new in 1.507</a> (2013/03/24)</h3>
K
Kohsuke Kawaguchi 已提交
2288
<ul class=image>
2289 2290 2291 2292
  <li class=rfe>
      Show the reason for a skipped test if the test result contains one
      (<a href="https://issues.jenkins-ci.org/browse/JENKINS-8713">issue 8713</a>)
  </li>
K
Kohsuke Kawaguchi 已提交
2293 2294 2295
  <li class=bug>
    an in-progress build was dropped from JSON API when lazy-loading was introduced.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15583">issue 15583</a>)
K
Kohsuke Kawaguchi 已提交
2296 2297 2298
  <li class=bug>
    In-progress builds now survive the "reload from disk" administrator action.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-3265">issue 3265</a>)
2299 2300 2301
  <li class=bug>
    If artifact archiving failed with an I/O error, the build nonetheless was considered to be a success.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-2058">issue 2058</a>)
K
Kohsuke Kawaguchi 已提交
2302 2303 2304
  <li class=bug>
    Fixed a bad interaction between Windows symlinks and build record lazy loading.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15587">issue 15587</a>)
K
Kohsuke Kawaguchi 已提交
2305 2306 2307
  <li class=rfe>
    Remember the lastStable/Failed/Successful/etc builds to avoid eager loading builds.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16089">issue 16089</a>)
2308 2309
  <li class=bug>
    Wrong build result in post build steps after failed pre build step in maven projects.
K
Kohsuke Kawaguchi 已提交
2310
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17177">issue 17177</a>)
K
Kohsuke Kawaguchi 已提交
2311
</ul>
2312
<h3><a name=v1.506>What's new in 1.506</a> (2013/03/17)</h3>
K
Kohsuke Kawaguchi 已提交
2313
<ul class=image>
2314 2315 2316
  <li class='major bug'>
    Saving Global Jenkins Global Config wipes out the crumb issuer settings in the Global Security Config.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17087">issue 17087</a>)
2317 2318 2319
  <li class='major bug'>
    Made <code>--httpKeepAliveTimeout</code> option work (that was supposed to have been introduced in 1.503).
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16474">issue 16474</a>)
2320 2321 2322
  <li class=bug>
    Preview function for textareas using Jenkins markup did not work when CSRF protection was enabled.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17085">issue 17085</a>)
2323 2324 2325
  <li class=bug>
    Permalinks created in the wrong place when using external build directories.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17137">issue 17137</a>)
2326 2327 2328
  <li class=bug>
    External build directories not updated by job rename/delete.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17138">issue 17138</a>)
2329 2330 2331
  <li class=bug>
    JNA-related error from Windows slave monitoring thrown repeatedly.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15796">issue 15796</a>)
J
Jesse Glick 已提交
2332 2333 2334
  <li class=bug>
    New JSON library corrects problems such as form values starting with <code>[</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-14827">issue 14827</a>)
K
Kohsuke Kawaguchi 已提交
2335
  <li class=rfe>
J
Jesse Glick 已提交
2336
    Improved the request handling performance (where the file lookup is expensive, such as on NFS).
K
Kohsuke Kawaguchi 已提交
2337
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16606">issue 16606</a>)
2338 2339
  <li class=rfe>
    Windows symbolic support on Java5/6.
2340 2341
  <li class=rfe>
    Improved the duration browsers cache static resources.
K
Kohsuke Kawaguchi 已提交
2342
</ul>
2343
<h3><a name=v1.505>What's new in 1.505</a> (2013/03/10)</h3>
K
Kohsuke Kawaguchi 已提交
2344
<ul class=image>
J
Jesse Glick 已提交
2345 2346 2347
  <li class='major bug'>
    Exception in flyweight tasks when checking if an executor is interrupted.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-17025">issue 17025</a>)
2348 2349 2350
  <li class='major bug'>
    JNA-related linkage errors on Windows not handled gracefully.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15466">issue 15466</a>)
J
Jesse Glick 已提交
2351 2352 2353
  <li class='major bug'>
    Builds disappear from build history after completion (revisited).
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15156">issue 15156</a>)
2354 2355 2356 2357 2358 2359
  <li class=rfe>
    Added run display name as an environment variable when RunParameter is used
    (<a href="https://github.com/jenkinsci/jenkins/pull/720">pull 720</a>)
  <li class=bug>
    Fixed "Manage" sub-contextmenu for non-standalone deployments
    (<a href="https://github.com/jenkinsci/jenkins/pull/721">pull 721</a>)
K
Kohsuke Kawaguchi 已提交
2360 2361 2362
  <li class=bug>
    Absolute URLs in console output
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16368">issue 16368</a>)
2363
  <li class=bug>
2364
    Revert ampersand encoding which can cause backward incompatibility issue
2365
    (<a href="https://github.com/jenkinsci/jenkins/pull/683">pull 683</a>)
2366 2367 2368
  <li class=bug>
    Fix dependency graph computation when upstream build trigger is involved
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-13502">issue 13502</a>)
K
Kohsuke Kawaguchi 已提交
2369 2370 2371
  <li class=bug>
    Disabled Authenticode verification for Windows services.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15596">issue 15596</a>)
K
Kohsuke Kawaguchi 已提交
2372
</ul>
2373
<h3><a name=v1.504>What's new in 1.504</a> (2013/03/03)</h3>
K
Kohsuke Kawaguchi 已提交
2374
<ul class=image>
K
Kohsuke Kawaguchi 已提交
2375 2376 2377
  <li class='major bug'>
    Fixed a regression in the "discard old builds" in 1.503.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16979">issue 16979</a>)
2378 2379 2380
  <li class='major bug'>
    Maven 3.0.5 upgrade.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16965">issue 16965</a>)
2381 2382 2383
  <li class=bug>
    Not all log messages were being captured at <code>/log/all</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16952">issue 16952</a>)
2384 2385 2386
  <li class=bug>
    Incorrect or missing XML encoding declaration on some REST API pages.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16881">issue 16881</a>)
2387 2388 2389
  <li class=bug>
   Fixed: Human readable file size method returns ",00" for files with byte length 0
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16630">issue 16630</a>)
2390 2391 2392
  <li class=bug>
    “Build” from job context menu produced a confusing warning page.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16844">issue 16844</a>)
2393 2394 2395
  <li class=bug>
    Maven2 builds with non-standard test plugins failed.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16928">issue 16928</a>)
2396 2397 2398
  <li class=rfe>
    Started bundling XStream 1.4.4
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-12542">issue 12542</a>)
2399 2400 2401
  <li class=rfe>
    Significant improvement in Traditional Chinese localizations.
    (<a href="https://github.com/jenkinsci/jenkins/pull/716">pull 716</a>)
K
Kohsuke Kawaguchi 已提交
2402
</ul>
2403
<h3><a name=v1.503>What's new in 1.503</a> (2013/02/26)</h3>
2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445
<ul class=image>
  <li class=bug>
    ${ITEM_FULLNAME} variable was not working for Maven projects on Windows,
    so introduced ${ITEM_FULL_NAME} instead.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-12251">issue 12251</a>)
  <li class=bug>
    Lock contention issue in build history view.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16831">issue 16831</a>)
  <li class=bug>
    Fixed the HTTP request thread saturation problem with Winstone.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16474">issue 16474</a>)
  <li class=bug>
    Script evaluation script error on IE.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16561">issue 16561</a>)
  <li class=bug>
    surefire-reports not detected for android-maven-plugin
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16776">issue 16776</a>)
  <li class=bug>
    maven-failsafe-plugin tests not recognized anymore
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16696">issue 16696</a>)
  <li class=bug>
    UI waiting on a queue lock to display cause of queue blockage.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16833">issue 16833</a>)
  <li class=bug>
    UpdateCenter REST API chokes if there was a plugin installation failure.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16836">issue 16836</a>)
  <li class=bug>
    Missing build title in /rssAll when build has no test result.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16770">issue 16770</a>)
  <li class=bug>
    Changed the way matrix axis values are exposed as env variables
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-11577">issue 11577</a>)
  <li class=bug>
    Maven 3 builds ignored quiet (-q) and debug (-X) options
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16843">issue 16843</a>)
  <li class=rfe>
    JNLP slave installers can now work transparently with secured Jenkins.
    (SECURITY-54 / despite the ticket marker, this is not a security vulnerability)
  <li class=rfe>
    "Discard old build records" behavior is now pluggable, allowing plugins to define custom logic.
</ul>
<h3><a name=v1.502>What's new in 1.502</a> (2013/02/16)</h3>
K
Kohsuke Kawaguchi 已提交
2446
<ul class=image>
K
Kohsuke Kawaguchi 已提交
2447 2448 2449
  <li class='major bug'>
    Miscellaneous security vulnerability fixes. See the advisory for more details.
    (SECURITY-13,16,46,47,54,55,59,60,61)
J
Jesse Glick 已提交
2450 2451 2452
  <li class='major bug'>
    Builds disappear from build history after completion.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15156">issue 15156</a>)
2453 2454 2455
  <li class=bug>
    Plugin Manager’s Filter field did not work. Regression in 1.500.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16651">issue 16651</a>)
2456 2457 2458 2459 2460 2461 2462 2463
  <li class=bug>
    DISCOVER-able jobs break the build queue widget
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16682">issue 16682</a>)
  <li class=rfe>
    Extension point to provide access to workspace even when node is offline
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16454">issue 16454</a>)
  <li class=rfe>
    Extension point to listen BuildStep execution
K
Kohsuke Kawaguchi 已提交
2464
</ul>
2465
<h3><a name=v1.501>What's new in 1.501</a> (2013/02/10)</h3>
K
Kohsuke Kawaguchi 已提交
2466
<ul class=image>
2467 2468 2469
  <li class='major bug'>
    Reverted change in 1.500 causing serious regression in HTTPS reverse proxy setups.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16368">issue 16368</a>)
2470 2471 2472
  <li class='major bug'>
    Getting test results from custom test mojos failed build.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16573">issue 16573</a>)
2473 2474 2475
  <li class='major bug'>
    Restored Java 5 compatibility.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16554">issue 16554</a>)
2476 2477 2478
  <li class=bug>
    Bogus “Build Record Root Directory” inadequately diagnosed.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16457">issue 16457</a>)
2479 2480 2481
  <li class=bug>
    Plugin icons in the sidebar were not being properly cached.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16530">issue 16530</a>)
2482 2483 2484
  <li class='major bug'>
    Broadly as well as deeply nested build causes overwhelmed the UI after 1.482.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-15747">issue 15747</a>)
2485 2486
  <li class=bug>
    API typo <code>DependecyDeclarer</code> corrected.
J
Jesse Glick 已提交
2487 2488 2489
  <li class=bug>
    Avoid eagerly loading builds in <b>Changes in dependency</b> or culprit list.
    (<a href="https://github.com/jenkinsci/jenkins/pull/689">pull 689</a>)
2490 2491 2492
  <li class=bug>
    Run parameters do not support folders.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16462">issue 16462</a>)
O
Olivier Lamy 已提交
2493 2494 2495
  <li class=bug>
    Fixed RememberMe cookie signature generation.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16278">issue 16278</a>)
2496 2497 2498
  <li class=bug>
    Fixed NullPointerException when copying from existing Maven job
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16499">issue 16499</a>)
K
Kohsuke Kawaguchi 已提交
2499

K
Kohsuke Kawaguchi 已提交
2500
</ul>
2501
<h3><a name=v1.500>What's new in 1.500</a> (2013/01/26)</h3>
2502
<ul class=image>
2503 2504
  <li class=bug>
    Since 1.494, when signing up as a new user in the private security realm the email address was left unconfigured and a stack trace printed.
J
Jesse Glick 已提交
2505 2506 2507
  <li class=rfe>
    Enable transparent log decompression support.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-13655">issue 13655</a>)
2508 2509 2510
  <li class=rfe>
    Display authorities at <code>/user/*</code> for convenience.
    (<a href="https://github.com/jenkinsci/jenkins/pull/577">pull 577</a>)
2511
  <li class=bug>
2512 2513
    Slow rendering of view pages in large installations due to eager check whether the “People” link would show anything.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16244">issue 16244</a>)
2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547
  <li class=bug>
    Reduced size of memory leak in render-on-demand functionality used e.g. in configuration pages.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16341">issue 16341</a>)
  <li class=bug>
    Improving responsiveness of <b>People</b> page.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16342">issue 16342</a>)
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16397">issue 16397</a>)
  <li class=bug>
    Exception printed to log while adding <b>Build other projects</b> post-build step.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16444">issue 16444</a>)
  <li class=bug>
    <code>BindException</code> when using <code>--daemon</code> with JMX.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-14529">issue 14529</a>)
  <li class=bug>
    Improved logging and error output from SSHD in Jenkins.
  <li class=rfe>
    Linking to the <code>/threadDump</code> page from <code>/systemInfo</code> so it is discoverable.
  <li class='major bug'>
    Rekeying operation (from SECURITY-49 fix in 1.498) failed on Windows.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16319">issue 16319</a>)
  <li class=bug>
    JNLP slave index page failed to explain how to pass <code>-jnlpCredentials</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16273">issue 16273</a>)
  <li class=bug>
    Links should preserve used protocol
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16368">issue 16368</a>)
  <li class=bug>
    Don't report the same plugin twice in the update center if the filtering is in effect.
   <li class=bug>
     Accept any plugin with a 'test' goal as a test plugin in Maven jobs
     (<a href="https://issues.jenkins-ci.org/browse/JENKINS-8334">issue 8334</a>)
   <li class=rfe>
      Avoid unnecessary downloads if automatically installed tools are up-to-date
      (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16215">issue 16215</a>)
2548
</ul>
2549
<h3><a name=v1.499>What's new in 1.499</a> (2013/01/13)</h3>
2550 2551 2552 2553 2554
<ul class=image>
  <li class=bug>
    Fixed <tt>NoClassDefFoundError: Base64</tt> with the <tt>-jnlpCredentials</tt> option.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-9679">issue 9679</a>)
</ul>
2555
<h3><a name=v1.498>What's new in 1.498</a> (2013/01/07)</h3>
K
Kohsuke Kawaguchi 已提交
2556 2557 2558 2559 2560
<ul class=image>
  <li class='major bug'>
    The master key that was protecting all the sensitive data in <tt>$JENKINS_HOME</tt> was vulnerable.
    (SECURITY-49)
</ul>
2561
<h3><a name=v1.497>What's new in 1.497</a> (2013/01/06)</h3>
K
Kohsuke Kawaguchi 已提交
2562 2563 2564 2565 2566
<ul class=image>
  <li class=bug>
    Delete the oldest build but it still come up on HistoryWidget
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-16194">issue 16194</a>)
</ul>
K
Kohsuke Kawaguchi 已提交
2567 2568 2569 2570 2571 2572

<p>
<b>Older changelogs can be found in a <a href="changelog-old.html">separate file</a></b>

</body>
</html>