forked from jenkinsci/jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.html
2307 lines (2294 loc) · 121 KB
/
changelog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!--
We record noteworthy changes in this file, which then becomes http://jenkins-ci.org/changelog
Some tips:
- 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)
- 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.
- Link to bugs in the issue tracker, e-mail thread in the archive, and so on if you can.
-->
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<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">
Help other Jenkins users by letting the community know which releases you've used,
and whether they had any significant issues. <br>
Legend: <br>
<img src="http://ci.jenkins-ci.org/images/16x16/health-80plus.gif" width="16" height="16"
alt="Sunny"> = I use it on my production site without major issues. <br>
<img src="http://ci.jenkins-ci.org/images/16x16/health-40to59.gif" width="16" height="16"
alt="Cloudy"> = I don't recommend it. <br>
<img src="http://ci.jenkins-ci.org/images/16x16/health-00to19.gif" width="16" height="16"
alt="Lightning"> = I tried it but rolled back to a previous version. <br>
View ratings below, and click one of the icons next to your version to provide your input.
</div>
<a href="" onClick="document.getElementById('trunk').style.display=document.getElementById('rc').style.display='block';return false">
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=-->
<ul class=image>
<li class=>
</ul>
</div><!--=TRUNK-END=-->
<!-- these changes are controlled by the release process. DO NOT MODIFY -->
<div id="rc" style="display:none;"><!--=BEGIN=-->
<h3><a name=v1.593>What's new in 1.593</a> <!--=DATE=--></h3>
<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>
</div><!--=END=-->
<h3><a name=v1.593>What's new in 1.593</a> (2014/11/30)</h3>
<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>
<h3><a name=v1.592>What's new in 1.592</a> (2014/11/30)</h3>
<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>
<h3><a name=v1.591>What's new in 1.591</a> (2014/11/25)</h3>
<ul class=image>
<li class=bug>
Always use forward slashes in path separators during in ZIP archives generated by Directory Browser
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22514">issue 22514</a>)
</ul>
<h3><a name=v1.590>What's new in 1.590</a> (2014/11/16)</h3>
<ul class=image>
<li class=bug>
Basic Authentication in combination with Session is broken
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-25144">issue 25144</a>)
<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>)
<li class=bug>
Fixed various real or potential resource leaks discovered by <a href="https://scan.coverity.com/projects/94/">Coverity Scan</code>
(<a href="https://github.com/jenkinsci/jenkins/pull/1434">pull request 1434</a>)
<li class=rfe>
API changes: Expose <code>AbstractProject.AbstractProjectDescriptor#validateLabelExpression</code> for plugins.
(<a href="https://github.com/jenkinsci/jenkins/pull/1456">pull request 1456</a>)
<li class=rfe>
API method to aggregate multiple FormValidations into one.
(<a href="https://github.com/jenkinsci/jenkins/pull/1458">pull request 1458</a>)
<li class=rfe>
API method to get non-null <code>Jenkins</code> instance with internal validation
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-23339">issue 23339</a>)
</ul>
<h3><a name=v1.589>What's new in 1.589</a> (2014/11/09)</h3>
<ul class=image>
<li class=bug>
JNA error in <code>WindowsInstallerLink.doDoInstall</code>.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-25358">issue 25358</a>)
<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>
<li class=bug>
Unnecessarily slow startup time with a massive number of jobs.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-25473">issue 25473</a>)
<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>)
</ul>
<h3><a name=v1.587>What's new in 1.587</a> (2014/10/29)</h3>
<ul class=image>
<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>)
<li class=bug>
JNA update for deprecated JNA-POSIX library.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-24527">issue 24527</a>)
<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>)
</ul>
<h3><a name=v1.586>What's new in 1.586</a> (2014/10/26)</h3>
<ul class=image>
<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>)
<li class=bug>
Prevent empty file creation if file parameter is left empty.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-3539">issue 3539</a>)
<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>)
<li class=bug>
Existing <code>FileParameter</code>s should be handled as different values to avoid merging of queued builds
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-19017">issue 19017</a>)
</ul>
<h3><a name=v1.585>What's new in 1.585</a> (2014/10/19)</h3>
<ul class=image>
<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>)
<li class=rfe>
Missing workspace page should use 404 status code.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10450">issue 10450</a>)
<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>)
<li class=bug>
Updated SSH Slaves plugin to 1.8.
<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>)
<li class=bug>
Greater-than characters are not escaped in HTML outputs like e-mails
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16184">issue 16184</a>)
<li class=bug>
Thread starvation from <code>OldDataMonitor</code>.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-24763">issue 24763</a>)
<li class=bug>
Integer overflow in quiet-down timeout calculation
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-24914">issue 24914</a>)
<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>)
<li class=rfe>
Show keep build log reason in tool tips
(<a href="https://github.com/jenkinsci/jenkins/pull/1422">pull request 1422</a>)
<li class=bug>
Do not disable projects, which do not support such operation (like Matrix configurations)
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-24340">issue 24340</a>)
<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>)
<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>)
</ul>
<h3><a name=v1.584>What's new in 1.584</a> (2014/10/12)</h3>
<ul class=image>
<li class=rfe>
Diagnostic thread names are now available while requests are still in filters
<li class=rfe>
When killing Windows processes, check its critical flag to avoid BSoD
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-24453">issue 24453</a>)
<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>)
<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>)
</ul>
<h3><a name=v1.583>What's new in 1.583</a> (2014/10/01)</h3>
<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>)
</ul>
<h3><a name=v1.582>What's new in 1.582</a> (2014/09/28)</h3>
<ul class=image>
<li class=bug>
Channel reader thread can end up consuming 100% CPU.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-23471">issue 23471</a>)
<li class=bug>
CancelledKeyException can cause all JNLP slaves to disconnect (and the problem remains until restart).
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-24050">issue 24050</a>)
<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>)
<li class=bug>
Reduced the logging clutter about the lack of @ExportedBean.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-24458">issue 24458</a>)
<li class=bug>
Character encoding problem in form submission when file parameters are present.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11543">issue 11543</a>)
<li class=rfe>
Improved error handling and "in-progress" UI feedback in JNLP slave to service installation.
<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>)
<li class=bug>
umask setting on Debian did not work.
(<a href="https://github.com/jenkinsci/jenkins/pull/1397">pull 1397</a>)
<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>)
</ul>
<h3><a name=v1.581>What's new in 1.581</a> (2014/09/21)</h3>
<ul class=image>
<li class=rfe>
Use slightly larger Jenkins head icon.
(<a href="https://github.com/jenkinsci/jenkins/pull/1360">pull 1360</a>)
<li class=rfe>
Allow setting a system property to disable X-Frame-Options header.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-21881">issue 21881</a>)
<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>)
<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>)
</ul>
<h3><a name=v1.580>What's new in 1.580</a> (2014/09/14)</h3>
<ul class=image>
<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>)
<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>)
<li class=rfe>
Add editable descriptions for label atoms.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-6153">issue 6153</a>)
</ul>
<h3><a name=v1.579>What's new in 1.579</a> (2014/09/06)</h3>
<ul class=image>
<li class=bug>
<code>ConcurrentModificationException</code> in <code>RunListProgressiveRendering</code>.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-21437">issue 21437</a>)
<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>)
<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>)
<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>)
<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>)
<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>)
</ul>
<h3><a name=v1.578>What's new in 1.578</a> (2014/08/31)</h3>
<ul class=image>
<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>)
<li class=bug>
Deadlock in <code>OldDataMonitor</code>.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-24358">issue 24358</a>)
<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>)
</ul>
<h3><a name=v1.577>What's new in 1.577</a> (2014/08/24)</h3>
<ul class=image>
<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>)
<li class="major rfe">
Moved JUnit reporting functionality to a plugin.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-23263">issue 23263</a>)
<li class=bug>
Fixed ClassCastException on org.dom4j.DocumentFactory
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13709">issue 13709</a>)
<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>)
<li class=rfe>
Allow BuildStep to work with non-AbstractProject
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-23713">issue 23713</a>)
<li class=bug>
Improved class loading performance when using Groovy.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-24309">issue 24309</a>)
<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>)
<li class=rfe>
Make the lifetime of queue items cache configurable.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-19691">issue 19691</a>)
<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>
Properly consider busy executors when reducing a node's executor count.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-24095">issue 24095</a>)
</ul>
<h3><a name=v1.576>What's new in 1.576</a> (2014/08/18)</h3>
<ul class=image>
<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>)
<li class="bug">
Fixed a file descriptor leak with CLI connections.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-23248">issue 23248</a>)
<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>)
<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>)
<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>)
<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>)
<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>)
<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>)
<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>)
<li class="rfe">
Modernized sidebar <code><l:pane></code>s and making them work better with new layout.
(<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>)
<li class="rfe">
Add option to CLI to skip key authentication (e.g. when there's a password on the default key).
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-23970">issue 23970</a>)
<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>)
</ul>
<h3><a name=v1.575>What's new in 1.575</a> (2014/08/10)</h3>
<ul class=image>
<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>)
<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>)
<li class="rfe">
UI redesign: Shrink the top bar, change logo, changed links in top bar.
(<a href="https://github.com/jenkinsci/jenkins/pull/1327">pull 1327</a>,
(<a href="https://github.com/jenkinsci/jenkins/pull/1328">pull 1328</a>)
<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>)
<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>)
<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>)
<li class="rfe">
Autocomplete logger names.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-23994">issue 23994</a>)
<li class="bug">
UI redesign: Fix links in header bar when logged in.
<li class="rfe">
Do not show changes for the build at the lower bound of the changes list.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18902">issue 18902</a>)
<li class="bug">
Restrict access to SCM trigger status page to administrators.
(<a href="https://github.com/jenkinsci/jenkins/pull/1327">pull 1282</a>)
</ul>
<h3><a name=v1.574>What's new in 1.574</a> (2014/07/27)</h3>
<ul class=image>
<li class="rfe">
UI redesign: Use Helvetica as default font
(<a href="https://github.com/jenkinsci/jenkins/pull/1315">pull 1315</a>,
<a href="https://issues.jenkins-ci.org/browse/JENKINS-23840">issue 23840</a>)
<li class="bug">
Synchronization issue during tool installation
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17667">issue 17667</a>)
<li class="bug">
Use native encoding for filenames in downloaded ZIPs.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-20663">issue 20663</a>)
</ul>
<h3><a name=v1.573>What's new in 1.573</a> (2014/07/20)</h3>
<ul class=image>
<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>)
<li class='major bug'>
Fixed unnecessary eager loading of build records in certain code path.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18065">issue 18065</a>)
</ul>
<h3><a name=v1.572>What's new in 1.572</a> (2014/07/13)</h3>
<ul class=image>
<li class="major rfe">
UI redesign: Changed header, made layout <div>-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>)
</ul>
<h3><a name=v1.571>What's new in 1.571</a> (2014/07/07)</h3>
<ul class=image>
<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>)
<li class=bug>
Overall.READ is sufficient to access /administrativeMonitor/hudsonHomeIsFull/
(SECURITY-134)
<li class=bug>
Master computer is not notified using ComputerListener
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-23481">issue 23481</a>)
</ul>
<h3><a name=v1.570>What's new in 1.570</a> (2014/06/29)</h3>
<ul class=image>
<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>)
<li class=rfe>
UI improvements / refreshing.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-23492">issue 23492</a>)
<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>)
<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>)
<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>)
<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>)
<li class=bug>
Fixed <code>NullPointerException</code> when <code>ArctifactArchiver</code> is called for a build with the undefined status.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-23526">issue 23526</a>)
<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>)
<li class=bug>
Fixed <code>NullPointerException</code> when "properties" element is missing in a job's configuration submission by JSON
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-23437">issue 23437</a>)
</ul>
<h3><a name=v1.569>What's new in 1.569</a> (2014/06/23)</h3>
<ul class=image>
<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>)
<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>)
<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>)
<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>)
<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>)
</ul>
<h3><a name=v1.568>What's new in 1.568</a> (2014/06/15)</h3>
<ul class=image>
<li class=bug>
Fixed JNLP connection handling problem
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22932">issue 22932</a>)
<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>)
<li class=rfe>
Support the range notation for pagination in API
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-23228">issue 23228</a>)
<li class=bug>
Incorrect redirect after deleting a folder.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-23375">issue 23375</a>)
<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>)
<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>)
<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>)
</ul>
<h3><a name=v1.567>What's new in 1.567</a> (2014/06/09)</h3>
<ul class=image>
<li class="bug">
Fixed a reference counting bug in the remoting layer.
(<a href="https://github.com/jenkinsci/remoting/commit/387433c98b66bf453e27198973daa758787095b3">commit</a>)
<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>)
<li class="bug">
Show custom build display name in executors widget.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10477">issue 10477</a>)
<li class="bug">
CodeMirror support for shell steps broke initial configuration.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-23151">issue 23151</a>)
<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>)
<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>)
<li class="bug">
Fixed <code>NullPointerException</code> on plugin installations when invalid update center is set
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-20031">issue 20031</a>)
<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>)
<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>)
<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>)
<li class="bug">
Properly close input streams in <code>FileParameterValue</code>
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22693">issue 22693</a>)
<li class="bug">
Incorrect failure age in the JUnit test results
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18626">issue 18626</a>)
<li class="bug">
Fixed deletion links for JVM Crash error logs
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22617">issue 22617</a>)
<li class="rfe">
Distinguish "nodes for label offline" from "no nodes for label"
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17114">issue 17114</a>)
<li class="rfe">
Add causes to queue item tool tip
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-19250">issue 19250</a>)
<li class="rfe">
RPM: added JENKINS_HTTPS_KEYSTORE and JENKINS_HTTPS_KEYSTORE_PASSWORD options to Jenkins sysconfig file
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11673">issue 11673</a>)
<li class="bug">
RPM: Do not install jenkins.repo file
(<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>)
<li class="major bug">
Handle null parameter values to avoid massive executor deaths
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15094">issue 15094</a>)
<li class="rfe">
Added an option to archive artifacts only when the build is successful
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22699">issue 22699</a>)
</ul>
<h3><a name=v1.566>What's new in 1.566</a> (2014/06/01)</h3>
<ul class=image>
<li class="rfe">
Configurable case sensitivity mode for user IDs.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22247">issue 22247</a>)
<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>)
<li class="rfe">
Introduce directly modifiable views
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22967">issue 22967</a>)
<li class="bug">
Jenkins cannot restart Windows service
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22685">issue 22685</a>)
</ul>
<h3><a name=v1.565>What's new in 1.565</a> (2014/05/26)</h3>
<ul class=image>
<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>)
<li class="bug">
Updated component used by the swap space monitor to better support Debian and AIX.
<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>)
<li class="bug">
Polling no longer triggers builds (regression 1.560)
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22750">issue 22750</a>)
<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>)
<li class="bug">
Fixed localization of build environment variable help.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22867">issue 22867</a>)
</ul>
<h3><a name=v1.564>What's new in 1.564</a> (2014/05/19)</h3>
<ul class=image>
<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>)
<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>)
</ul>
<h3><a name=v1.563>What's new in 1.563</a> (2014/05/11)</h3>
<ul class=image>
<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>)
<li class="rfe">
Configurable size for log buffer.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22840">issue 22840</a>)
<li class="rfe">
Gesture to clear log buffer.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22839">issue 22839</a>)
<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>)
<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>)
<li class="bug">
Again show proper display names for build parameters.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22755">issue 22755</a>)
</ul>
<h3><a name=v1.562>What's new in 1.562</a> (2014/05/03)</h3>
<ul class=image>
<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>)
<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>)
<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>)
</ul>
<h3><a name=v1.561>What's new in 1.561</a> (2014/04/27)</h3>
<ul class=image>
<li class=bug>
Fixed a corner case handling of tool installation.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16846">issue 16846</a>)
<li class=rfe>
Enabled log rotation on the OSX package
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15178">issue 15178</a>)
<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>)
<li class=rfe>
Close drop-down button menu when clicking outside
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17050">issue 17050</a>)
<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>)
<li class=bug>
Fixed NPE if <tt>RunParameterValue</tt> points to a stable build.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-20857">issue 20857</a>)
<li class=bug>
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>
More efficient deletion of old builds (specified by date).
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22607">issue 22607</a>)
<li class=rfe>
The matrix project type was moved into its own plugin.
<li class=bug>
Linkage errors in notifiers could leak workspace leases.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-21622">issue 21622</a>)
<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>)
<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>)
<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>)
<li class=rfe>
Update version of bundled Mailer plugin to 1.8 to avoid issues with older versions
<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>)
<li class=rfe>
Added a new extension point for more pluggable JNLP slave handling
<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>)
<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>)
<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>)
</ul>
<h3><a name=v1.560>What's new in 1.560</a> (2014/04/20)</h3>
<ul class=image>
<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>)
<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>)
<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>)
<li class=rfe>
JNLP slaves are now handled through NIO-based remoting channels for better scalability.
<li class=rfe>
Integrated codemirror v2.38.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22582">issue 22582</a>)
<li class=bug>
Listing plugins shortly after installation throws ConcurrentModificationException.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22553">issue 22553</a>)
<li class=bug>
Fixed NoSuchMethodException when destroying processes using JDK1.8.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-21341">issue 21341</a>)
<li class=rfe>
Avoid irrelevant job queing while node is offline.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-21394">issue 21394</a>)
<li class=rfe>
Debian package now creates 'jenkins' group
<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>)
<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>)
<li class=bug>
Don't submit form on Save after Apply in new window on some browsers.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-20245">issue 20245</a>)
<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>)
</ul>
<h3><a name=v1.559>What's new in 1.559</a> (2014/04/13)</h3>
<ul class=image>
<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>)
<li class=bug>
Fixed NPE from <code>Slave.createLauncher</code>.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-21999">issue 21999</a>)
<li class=bug>
Faster rendering of views containing many items.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18364">issue 18364</a>)
</ul>
<h3><a name=v1.558>What's new in 1.558</a> (2014/04/06)</h3>
<ul class=image>
<li class=rfe>
Cron-style trigger configuration will now display expected prior and subsequent run times.
<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>)
<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>)
<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>)
<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>)
<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>)
<li class=bug>
Fixed NPE in <tt>UserCause</tt>
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-21875">issue 21875</a>)
<li class=rfe>
Added <code>RobustMapConverter</code>.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22398">issue 22398</a>)
<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>)
</ul>
<h3><a name=v1.557>What's new in 1.557</a> (2014/03/31)</h3>
<ul class=image>
<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>)
<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>)
<li class=bug>
<code>identity.key</code>, used to secure some communications with Jenkins, now stored encrypted with the master key.
<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>)
<li class=bug>
Memory leaks in the old data monitor.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-19544">issue 19544</a>)
<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>)
<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>)
<li class=bug>
Allow JDK8 (and other versions) to be downloaded by JDKInstaller correctly.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22347">issue 22347</a>)
</ul>
<h3><a name=v1.556>What's new in 1.556</a> (2014/03/23)</h3>
<ul class=image>
<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>)
<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>)
<li class=rfe>
Job can be reloaded individually from disk with "job/FOO/reload" URL or "reload-job" CLI command
</ul>
<h3><a name=v1.555>What's new in 1.555</a> (2014/03/16)</h3>
<ul class=image>
<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>)
<li class=bug>
Fixed Up link in matrix projects
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-21773">issue 21773</a>)
</ul>
<h3><a name=v1.554>What's new in 1.554</a> (2014/03/09)</h3>
<ul class=image>
<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>)
<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>)
</ul>
<h3><a name=v1.553>What's new in 1.553</a> (2014/03/02)</h3>
<ul class=image>
<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>)
<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>)
<li class=bug>
After restarting Jenkins, users known only from changelogs could be shown as <code>First Last [email protected]_</code>, breaking mail delivery.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16332">issue 16332</a>)
<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>)
<li class=rfe>
Slave started from Java Web Start can now install itself as a systemd service.
<li class=rfe>
Split the “raw HTML” markup formatter out of core into a bundled plugin.
<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.
(<a href="https://github.com/jenkinsci/jenkins/pull/1124">pull request 1124</a>)
</ul>
<h3><a name=v1.552>What's new in 1.552</a> (2014/02/24)</h3>
<ul class=image>
<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>)
<li class=bug>
Fixed broken action links on Label page
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-21778">issue 21778</a>)
<li class=rfe>
Allow Actions to contribute to Labels' main page
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-21777">issue 21777</a>)
<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>)
<li class=rfe>
Improve detection of broken reverse proxy setups.
</ul>
<h3><a name=v1.551>What's new in 1.551</a> (2014/02/14)</h3>
<ul class=image>
<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>)
<li class='major bug'>
Regression in Windows slaves since 1.547.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-21373">issue 21373</a>)
<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>)
<li class=bug>