forked from jenkinsci/jenkins
-
Notifications
You must be signed in to change notification settings - Fork 1
/
changelog.html
5618 lines (5603 loc) · 288 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=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>)
<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>)
<li class=bug>
Identify user agent for Internet Explorer 11.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-19171">issue 19171</a>)
<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>)
<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>)
<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>)
</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.530>What's new in 1.530</a> <!--=DATE=--></h3>
<ul class=image>
<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>)
<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>)
<li class='major bug'>
404s from Javadoc and HTML Publisher plugins.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-19168">issue 19168</a>)
<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>)
</ul>
</div><!--=END=-->
<h3><a name=v1.529>What's new in 1.529</a> (2013/08/26)</h3>
<ul class=image>
<li class=rfe>
With Apache Maven 3.1 build, logging configuration from the Apache Maven distribution is not used.
<li class=rfe>
Avoid log duplication with Apache Maven 3.1 builds
<li class=bug>
Ungraceful handling of empty matrix project axes.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-19135">issue 19135</a>)
<li class=bug>
Updated Groovy to 1.8.9 to avoid <a href="http://jira.codehaus.org/browse/GROOVY-4292">GROOVY-4292</a>.
<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>)
<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>)
<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>)
</ul>
<h3><a name=v1.528>What's new in 1.528</a> (2013/08/18)</h3>
<ul class=image>
<li class=rfe>
Command line now supports "--sessionTimeout" option for controlling session timeout
<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>)
<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>)
<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>)
<li class=rfe>
Use Guice from Google rather than a fork
<li class=bug>
Jenkins does not invoke ProcessKillers for Windows
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-19156">issue 19156</a>)
</ul>
<h3><a name=v1.527>What's new in 1.527</a> (2013/08/12)</h3>
<ul class=image>
<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>)
<li class=rfe>
Improve search to locate items inside folders.
(<a href="https://github.com/jenkinsci/jenkins/pull/848">pull request 848</a>)
(<a href="https://github.com/jenkinsci/jenkins/pull/893">pull request 893</a>)
<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>)
<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>)
</ul>
<h3><a name=v1.526>What's new in 1.526</a> (2013/08/05)</h3>
<ul class=image>
<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>)
<li class=bug>
Maven build failure wasn't describing errors like Maven CLI does.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15025">issue 15025</a>)
<li class=bug>
<code>MavenModuleSetBuild.getResult</code> is expensive.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18895">issue 18895</a>)
<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>)
<li class=rfe>
Added a new monitor that detects and fixse out-of-order builds records.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18289">issue 18289</a>)
<li class=rfe>
Can't build using maven 3.1.0
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15935">issue 15935</a>)
<li class=bug>
Fixed Winstone+mod_proxy_ajp+SSL combo issue.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-5753">issue 5753</a>)
<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>)
<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>)
<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>)
<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>)
<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>)
<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>)
<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>)
<li class=rfe>
Clearer display of log messages: chronological order, and coloration of repeated vs. fresh metadata (date, log level, log source).
<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>)
<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>)
</ul>
<h3><a name=v1.525>What's new in 1.525</a> (2013/07/29)</h3>
<p>Same as 1.524; botched release.</p>
<h3><a name=v1.524>What's new in 1.524</a> (2013/07/23)</h3>
<ul class=image>
<li class=bug>
Clock Difference broken on Manage Nodes page
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18671">issue 18671</a>)
<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>)
<li class=bug>
NPE in MavenFingerprinter.getArtifactRepositoryMaven21.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18441">issue 18441</a>)
<li class=rfe>
More reliability improvement in remote slave reconnection.
</ul>
<h3><a name=v1.523>What's new in 1.523</a> (2013/07/14)</h3>
<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>
<h3><a name=v1.522>What's new in 1.522</a> (2013/07/06)</h3>
<ul class=image>
<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>)
<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>)
<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>)
<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>)
<li class=bug>
Deadlock during Maven builds Parsing POM step
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15846">issue 15846</a>)
<li class=bug>
If every node is restricted to tied jobs only, Matrix build jobs can never start.
</ul>
<h3><a name=v1.521>What's new in 1.521</a> (2013/07/02)</h3>
<ul class=image>
<li class=bug>
Build with parameters returns empty web page
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18425">issue 18425</a>)
<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>)
<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>)
<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>)
<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>)
<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>)
<li class=bug>
Edited description wasn't reflected when pressing the "Apply" button.
(<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>)
<li class=rfe>
Revisited the extension point added in 1.519 that adds custom plexus components.
</ul>
<h3><a name=v1.520>What's new in 1.520</a> (2013/06/25)</h3>
<ul class=image>
<li class=bug>
Slave launch thread should have the background activity credential.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15578">issue 15578</a>)
<li class=bug>
“Build Now” link did not work for multijobs.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16974">issue 16974</a>)
<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>)
<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>)
<li class='major bug'>
Fixed API incompatibility since 1.489.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18356">issue 18356</a>)
<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>)
<li class=bug>
Fixed file descriptor leak in fingerprint computation.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18351">issue 18351</a>)
<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>)
<li class=rfe>
Added a new extension point to monitor the flow of stuff in the queue.
<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>)
<li class=rfe>
Possible to create a custom <code>AbstractDiskSpaceMonitor</code>.
<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>)
<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.
<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>)
<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>)
<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>)
<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>)
</ul>
<h3><a name=v1.519>What's new in 1.519</a> (2013/06/17)</h3>
<ul class=image>
<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>)
<li class='major bug'>
Fingerprint action deserialization problem fixed.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17125">issue 17125</a>)
<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>)
<li class='rfe'>
Improved the tracking of queued jobs and their eventual builds in the REST API.
<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>)
<li class='rfe'>
Added a new extension point to contribute custom plexus components into Maven for the maven project type.
<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>)
</ul>
<h3><a name=v1.518>What's new in 1.518</a> (2013/06/11)</h3>
<ul class=image>
<li class=bug>
NPE in <code>DefaultMatrixExecutionStrategyImpl.waitForCompletion</code>.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18024">issue 18024</a>)
<li class=bug>
Optimizations in fingerprint recording.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16301">issue 16301</a>)
<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>)
<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>)
<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>)
<li class=bug>
Do not fail startup in case <code>ListView.includeRegex</code> was syntactically malformed.
<li class=bug>
CSS stylesheets misrendered in Chrome due to caching.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17684">issue 17684</a>)
<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>)
<li class=bug>
Progress bar sometimes broken in People.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18119">issue 18119</a>)
</ul>
<h3><a name=v1.517>What's new in 1.517</a> (2013/06/02)</h3>
<ul class=image>
<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>)
<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>)
<li class=rfe>
Add support for scalatest-maven-plugin.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18086">issue 18086</a>)
<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>)
<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>)
<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>)
<li class="bug">
Use markup formater to display parameter description.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18427">issue 18427</a>)
</li>
</ul>
<h3><a name=v1.516>What's new in 1.516</a> (2013/05/27)</h3>
<ul class=image>
<li class=bug>
NPE from <code>Run.getDynamic</code>.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17935">issue 17935</a>)
<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>)
<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>)
<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>)
</ul>
<h3><a name=v1.515>What's new in 1.515</a> (2013/05/18)</h3>
<ul class=image>
<li class=rfe>
Windows services now auto-restart in case of abnormal process termination.
<li class=rfe>
<f:dropdownDescriptorSelector> does not allow defaulting to specifig instance
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17858">issue 17858</a>)
<li class=rfe>
mark maven settings / global settings as default for new jobs
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17723">issue 17723</a>)
<li class=bug>
Display Name is not shown.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17715">issue 17715</a>)
<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>)
<li class=bug>
List views missing a required field were unloadable.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15309">issue 15309</a>)
<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>)
<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>)
<li class=rfe>
Allow the combination filter to accept parameter values.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-7285">issue 7285</a>)
<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>)
</ul>
<h3><a name=v1.514>What's new in 1.514</a> (2013/05/01)</h3>
<ul class=image>
<li class=rfe>
Added a new <tt>set-build-parameter</tt> command that can update a build variable from within a build.
<li class=rfe>
Can use <code>-Dhudson.udp=-1</code> to disable UDP broadcast without showing an ugly exception.
<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>)
<li class='major bug'>
Mitigation of exception from fingerprinting in a Maven project when a parent POM could not be located.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17775">issue 17775</a>)
<li class=bug>
NPE from <code>MatrixConfiguration.newBuild</code>.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17728">issue 17728</a>)
<li class='major bug'>
NPE configuring Copy Artifact with Maven jobs.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17402">issue 17402</a>)
<li class=rfe>
<code>/about</code> now links to license information for plugins as well.
<li class=rfe>
Updated bundled plugins.
</ul>
<h3><a name=v1.513>What's new in 1.513</a> (2013/04/28)</h3>
<ul class=image>
<li class=rfe>
Slave status monitor page shows when the data is last obtained
<li class=rfe>
Delete button to highlight what it is going to delete.
<li class=bug>
<code>StringIndexOutOfBoundsException</code> in <code>PackageResult.findCorrespondingResult</code>.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17721">issue 17721</a>)
<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>)
<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>)
<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)
</ul>
<h3><a name=v1.512>What's new in 1.512</a> (2013/04/21)</h3>
<ul class=image>
<li class=rfe>
Views can now include jobs located within folders.
(<a href="https://github.com/jenkinsci/jenkins/pull/757">pull 757</a>)
<li class=rfe>
Added confirmation dialog before reloading configuration from disk.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15340">issue 15340</a>)
<li class=rfe>
Switched confirmation before deleting jobs or wiping out workspace to a dialog.
<li class=rfe>
Different text than “Build Now” for parameterized jobs.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10738">issue 10738</a>)
<li class=rfe>
Check the view name with ajax.
<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>)
<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>)
<li class=bug>
”My Views" links leads to 404 Not Found.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17317">issue 17317</a>)
<li class=bug>
Quoting Issue with JDK Installer with Windows Installer.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-5408">issue 5408</a>)
<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>)
<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>)
</ul>
<h3><a name=v1.511>What's new in 1.511</a> (2013/04/14)</h3>
<ul class=image>
<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>)
<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>)
<li class=rfe>
Better display of parameters in queue items.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17454">issue 17454</a>)
<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>)
</ul>
<h3><a name=v1.510>What's new in 1.510</a> (2013/04/06)</h3>
<ul class=image>
<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>)
<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>)
<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>)
<li class=bug>
Improved UI for implicitly locked builds.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10197">issue 10197</a>)
<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>)
<li class=rfe>
Promote the use of 'H' in cron.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17311">issue 17311</a>)
<li class='major rfe'>
Context menu no longer automatically pops up
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13995">issue 13995</a>)
</ul>
<h3><a name=v1.509>What's new in 1.509</a> (2013/04/02)</h3>
<ul class=image>
<li class='major bug'>
Heavy thread congestion saving fingerprints.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13154">issue 13154</a>)
<li class=rfe>
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>)
<li class=rfe>
Better report file deletion failures.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17271">issue 17271</a>)
<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>)
<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>)
<li class='major rfe'>
Performance improvement in master/slave communication throughput
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-7813">issue 7813</a>)
<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>)
<li class=bug>
View name should not allow "..".
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16608">issue 16608</a>)
</ul>
<h3><a name=v1.508>What's new in 1.508</a> (2013/03/25)</h3>
<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>
<h3><a name=v1.507>What's new in 1.507</a> (2013/03/24)</h3>
<ul class=image>
<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>
<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>)
<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>)
<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>)
<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>)
<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>)
<li class=bug>
Wrong build result in post build steps after failed pre build step in maven projects.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17177">issue 17177</a>)
</ul>
<h3><a name=v1.506>What's new in 1.506</a> (2013/03/17)</h3>
<ul class=image>
<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>)
<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>)
<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>)
<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>)
<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>)
<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>)
<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>)
<li class=rfe>
Improved the request handling performance (where the file lookup is expensive, such as on NFS).
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16606">issue 16606</a>)
<li class=rfe>
Windows symbolic support on Java5/6.
<li class=rfe>
Improved the duration browsers cache static resources.
</ul>
<h3><a name=v1.505>What's new in 1.505</a> (2013/03/10)</h3>
<ul class=image>
<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>)
<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>)
<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>)
<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>)
<li class=bug>
Absolute URLs in console output
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16368">issue 16368</a>)
<li class=bug>
Revert ampersand encoding which can cause backward incompatibility issue
(<a href="https://github.com/jenkinsci/jenkins/pull/683">pull 683</a>)
<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>)
<li class=bug>
Disabled Authenticode verification for Windows services.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15596">issue 15596</a>)
</ul>
<h3><a name=v1.504>What's new in 1.504</a> (2013/03/03)</h3>
<ul class=image>
<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>)
<li class='major bug'>
Maven 3.0.5 upgrade.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16965">issue 16965</a>)
<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>)
<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>)
<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>)
<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>)
<li class=bug>
Maven2 builds with non-standard test plugins failed.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16928">issue 16928</a>)
<li class=rfe>
Started bundling XStream 1.4.4
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12542">issue 12542</a>)
<li class=rfe>
Significant improvement in Traditional Chinese localizations.
(<a href="https://github.com/jenkinsci/jenkins/pull/716">pull 716</a>)
</ul>
<h3><a name=v1.503>What's new in 1.503</a> (2013/02/26)</h3>
<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>
<ul class=image>
<li class='major bug'>
Miscellaneous security vulnerability fixes. See the advisory for more details.
(SECURITY-13,16,46,47,54,55,59,60,61)
<li class='major bug'>
Builds disappear from build history after completion.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15156">issue 15156</a>)
<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>)
<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
</ul>
<h3><a name=v1.501>What's new in 1.501</a> (2013/02/10)</h3>
<ul class=image>
<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>)
<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>)
<li class='major bug'>
Restored Java 5 compatibility.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16554">issue 16554</a>)
<li class=bug>
Bogus “Build Record Root Directory” inadequately diagnosed.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16457">issue 16457</a>)
<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>)
<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>)
<li class=bug>
API typo <code>DependecyDeclarer</code> corrected.
<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>)
<li class=bug>
Run parameters do not support folders.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16462">issue 16462</a>)
<li class=bug>
Fixed RememberMe cookie signature generation.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16278">issue 16278</a>)
<li class=bug>
Fixed NullPointerException when copying from existing Maven job
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16499">issue 16499</a>)
</ul>
<h3><a name=v1.500>What's new in 1.500</a> (2013/01/26)</h3>
<ul class=image>
<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.
<li class=rfe>
Enable transparent log decompression support.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13655">issue 13655</a>)
<li class=rfe>
Display authorities at <code>/user/*</code> for convenience.
(<a href="https://github.com/jenkinsci/jenkins/pull/577">pull 577</a>)
<li class=bug>
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>)
<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>)
</ul>
<h3><a name=v1.499>What's new in 1.499</a> (2013/01/13)</h3>
<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>
<h3><a name=v1.498>What's new in 1.498</a> (2013/01/07)</h3>
<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>
<h3><a name=v1.497>What's new in 1.497</a> (2013/01/06)</h3>
<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>
<h3><a name=v1.496>What's new in 1.496</a> (2012/12/30)</h3>
<ul class=image>
<li class=bug>
Aborting download of workspace files make Jenkins unstable
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-7114">issue 7114</a>)
<li class=bug>
Unstable main build of maven projects leads to post steps being executed even if configured not to
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-14102">issue 14102</a>)
<li class=bug>
Channel is already closed exception during threadDump
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16193">issue 16193</a>)
</ul>
<h3><a name=v1.495>What's new in 1.495</a> (2012/12/24)</h3>
<ul class=image>
<li class=bug>
Fixed <tt>java.lang.NoSuchMethodError: hudson.model.RunMap.put(Lhudson/model/Run;)Lhudson/model/Run;</tt>
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15487">issue 15487</a>)
<li class=bug>
Saving the update center list after the metadata has been fetched results in
the metadata being persisted twice
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15889">issue 15889</a>)
<li class=rfe>
When using container-managed security, display unprotected root actions in the configuration screen for convenience.
<li class=rfe>
Display class loading statistics in <code>/computer/<i>name</i>/systemInfo</code>.
<li class=rfe>
Added <tt>list-plugins</tt> CLI command.
<li class=rfe>
Added <tt>console</tt> CLI command that dumps console output from a build.
</ul>
<h3><a name=v1.494>What's new in 1.494</a> (2012/12/16)</h3>
<ul class=image>
<li class=bug>
Using file parameters could cause build records to not load.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13536">issue 13536</a>)
<li class=bug>
Possible race condition in RemoteClassLoader renders slave unusable.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-6604">issue 6604</a>)
<li class=bug>
If the CLI client is aborted during "build -s", abort the build.
<li class=bug>
WARNING: Caught exception evaluating: descriptor.getHelpFile(attrs.field). Reason: java.lang.NullPointerException.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15940">issue 15940</a>)
<li class=rfe>
Allows to disable triggering of downstream jobs (for a maven job)
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-1295">issue 1295</a>)
<li class=rfe>
E-mail delivery feature was split off to a separate plugin for better modularity.
(<a href="https://github.com/jenkinsci/jenkins/pull/629">pull 629</a>)
<li class=bug>
Context menu and tooltip of the queue items were colliding with each other
<li class=bug>
Fix combobox ui component
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16069">issue 16069</a>)
<li class=rfe>
Separated global security configuration into its own view.
(<a href="https://github.com/jenkinsci/jenkins/pull/628">pull 628</a>)
</ul>
<h3><a name=v1.493>What's new in 1.493</a> (2012/12/09)</h3>
<ul class=image>
<li class=bug>
Slave's Name should be trimmed of spaces at the beginning and end of the Name on Save.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15836">issue 15836</a>)
<li class=rfe>
Added new switch to ignore post-commit hooks in SCM polling triggers.
This requires that the SCM plugin supports this feature, too!
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-6846">issue 6846</a>)
</ul>
<h3><a name=v1.492>What's new in 1.492</a> (2012/11/25)</h3>
<ul class=image>
<li class=rfe>
XStream form of projects excessively strict about null fields.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15817">issue 15817</a>)
<li class=bug>
Build records were broken if timezone was changed while running.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15816">issue 15816</a>)
<li class=bug>
Symlink detection refinement on Java 7.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13202">issue 13202</a>)
<li class='major bug'>
Displaying massive test suite results could bring down Jenkins.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15818">issue 15818</a>)
<li class="major bug">
Jenkins kicks off the wrong downstream builds for Maven.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15367">issue 15367</a>)
<li class=bug>
Rotation of slave agent launch logs is broken for Windows masters.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15408">issue 15408</a>)
<li class=bug>
Failure to initialize the SSH daemon shouldn't fail the boot.
<li class=rfe>
Added new GUI-based slave installer for upstart