forked from jenkinsci/jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.html
3239 lines (3227 loc) · 167 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=rfe>
Support for gziped log in consoleText
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10400">issue 10400</a>)
<li class=bug>
When run as "java -jar jenkins.war", failing to listen on HTTP ports should be fatal.
<li class=bug>
Fixed a race condition in the fingerprint computation
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10346">issue 10346</a>)
<li class=bug>
Fixed an occasional NPE when running Maven jobs
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9822">issue 9822</a>)
<li class=bug>
Fixed Maven build error if headless option is set and MAVEN_OPTS empty
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10375">issue 10375</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.422>What's new in 1.422</a> <!--=DATE=--></h3>
<!--=RC-CHANGES=-->
</div><!--=END=-->
<h3><a name=v1.421>What's new in 1.421</a> (2011/07/17)</h3>
<ul class=image>
<li class=bug>
NPE when requesting http://server/job/TEST-START/description and the description is empty
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10182">issue 10182</a>)
<li class=bug>
Redeploy artifacts for the whole project wasn't showing up for Maven3 projects.
<li class=bug>
PAM authentication wasn't working with Ubuntu 11.04
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9486">issue 9486</a>)
<li class=bug>
ToolCommandInstaller: Fix CR/LF and always make it Unix style.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9963">issue 9963</a>)
<li class=bug>
Empty emailAddress causes Mailer error.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10300">issue 10300</a>)
<li class=bug>
Label Alignment does not correctly work for top-level entries that span several lines
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10253">issue 10253</a>)
<li class=rfe>
PAM authentication now works with CLI login mechanism.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9681">issue 9681</a>)
<li class=rfe>
Jenkins behaves better in JRebel-enhanced environment during core/plugin development
(<a href="https://wiki.jenkins-ci.org/display/JENKINS/Developing+with+JRebel">details</a>)
<li class=rfe>
Generalized the mechanism to control scopes of security permissions
<li class=rfe>
Added an extension point to record arbitrary data to fingerprints.
<li class=rfe>
Build trigger dependency wasn't recalculated when jobs are copied.
<li class=rfe>
Exposed more remote APIs around archived Maven artifacts.
<li class=rfe>
Allow build directories and workspace directories in $JENKINS_HOME to be placed elsewhere.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-8446">issue 8446</a>)
<li class=rfe>
Mac installer update: set file permissions to be more in line with Mac conventions.
(<a href="https://github.com/jenkinsci/jenkins/pull/188">pull request 188</a>)
<li class=rfe>
Maven build script to produce the binary was significantly modified.
(<a href="https://github.com/jenkinsci/jenkins/pull/193">pull request 193</a>)
</ul>
<h3><a name=v1.420>What's new in 1.420</a> (2011/07/11)</h3>
<ul class=image>
<li class=bug>
Fix: jenkins did not record test results generated by the GWT maven plugin
(<a href="https://github.com/jenkinsci/jenkins/pull/186">pull request 186</a>)
<li class=bug>
Fixed a race condition in the remoting that can break the pipe support
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-8703">issue 8703</a>)
<li class=bug>
Restart button does not restart jenkins after plugin upload
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10044">issue 10044</a>)
<li class=bug>
Fixed a file handle leak in <tt>GET config.xml</tt> API call
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-8042">issue 8042</a>)
<li class=bug>
Fixed the redundant/incorrect encoding handling in XML configuration files.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-4525">issue 4525</a>)
<li class=bug>
File parameter didn't work correctly with matrix projects
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10108">issue 10108</a>)
<li class=bug>
Fixed the double escaping problem in the update center error message
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10081">issue 10081</a>)
<li class=bug>
Fixed JellyTagException in the manage page after Jenkins upgrade
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10066">issue 10066</a>)
<li class=rfe>
Groovy script console is now syntax highlighted.
<li class=rfe>
Improved the form validation to the "restrict where jobs can run" field.
<li class=rfe>
Text area to enter description is now syntax highlighted.
<li class=rfe>
Don't recalculate internal dependency graph if Maven dependencies haven't changed
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9301">issue 9301</a>)
</ul>
<h3><a name=v1.419>What's new in 1.419</a> (2011/07/05)</h3>
<ul class=image>
<li class=bug>
"Ant Version" field in "Invoke Ant" Build step missing in 1.416
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10036">issue 10036</a>)
<li class=bug>
post build deployment task fails with : Unbuffered entity enclosing request can not be repeated.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10076">issue 10076</a>)
<li class=bug>
After an unsuccessful Maven incremental build, make sure that all modules are deployed on the next successful one.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-5121">issue 5121</a>)
<li class=bug>
Fixed the permission issues on /Applications/Jenkins with OS X installer
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9398">issue 9398</a>)
<li class=bug>
Block up-/downstream Projects of matrix projects
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-4959">issue 4959</a>)
<li class=rfe>
Just like SSH connector, managed Windows connector now allows the machine name to be specified.
(<a href="https://github.com/jenkinsci/jenkins/pull/172">pull request #172</a>)
<li class=rfe>
Debian package no longer distributes /etc/apt/sources.list.d/jenkins.list
(<a href="https://github.com/jenkinsci/jenkins/pull/170">pull request #170</a>)
<li class=rfe>
Added SSH public key based CLI authentication
(<a href="https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+CLI">wiki</a>)
<li class=rfe>
Jenkins OS X installer now starts Jenkins upon system boot, not upon user login
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9399">issue 9399</a>)
<li class=rfe>
Improve the vertical alignment of form fields and labels
(<a href="https://github.com/jenkinsci/jenkins/pull/175">pull request #175</a>)
<li class=rfe>
Improve the column sorting behaviours
(<a href="https://github.com/jenkinsci/jenkins/pull/174">pull request #174</a>)
<li class=rfe>
Managed Windows slave launcher now lets you define a host name separately from the slave name.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10099">issue 10099</a>)
</ul>
<h3><a name=v1.418>What's new in 1.418</a> (2011/06/27)</h3>
<ul class=image>
<li class='major bug'>
Permissions from LDAP groups weren't working properly since 1.416
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-10075">issue 10075</a>)
<li class=bug>
"0 tests started to fail" makes no sense
(<a href="https://github.com/jenkinsci/jenkins/pull/165">pull request #165</a>)
<li class=bug>
Defined a proper way to interrupt the build and mark it as a failure.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9203">issue 9203</a>)
<li class=rfe>
Prevent a occasional JavaScript safety warning message when running in HTTPS
<li class=rfe>
About page should not autorefresh
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9967">issue 9967</a>)
<li class=rfe>
Added a new build parameter type that shows a text area
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5577">issue 5577</a>)
<li class=rfe>
Making views more reusable outside the root object.
<li class=ref>
Added a new hudson.footerURL system property to tweak the link displayed at
the bottom of the UI
<li class=ref>
Added a new hudson.security.WipeOutPermission system property to enable a
new WipeOut permission controlling the "Wipe Out Workspace" action.
</ul>
<h3><a name=v1.417>What's new in 1.417</a> (2011/06/20)</h3>
<ul class=image>
<li class='major bug'>
Fixed a regression in 1.416 that broke cloud plugins like libvirt and EC2.
</ul>
<h3><a name=v1.416>What's new in 1.416</a> (2011/06/18)</h3>
<ul class=image>
<li class=rfe>
Make captcha support optional; remove LGPL jcaptcha
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9915">issue 9915</a>)
<li class=bug>
Validate new view name relative to current context
<li class=bug>
Unfilled custom workspace textbox shouldn't be allowed.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9806">issue 9806</a>)
<li class=bug>
Fixed a bug in LDAP group search based on memberUid
(<a href="https://github.com/jenkinsci/jenkins/pull/151">pull request #151</a>)
<li class=bug>
If the user tries to run Jenkins on Java 1.4 and earlier, detect that more gracefully.
<li class=bug>
Fixed NPE in site generation when building a single Maven module
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7577">issue 7577</a>)
<li class=bug>
Fixed timeline on build trend page.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6439">issue 6439</a>)
<li class=bug>
Fixed the initialization order of plugins
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9960">issue 9960</a>)
<li class=bug>
Label/node tree is not visible in multi-configuration project config page
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9689">issue 9689</a>)
<li class=rfe>
<tt>LDAPBindSecurityRealm.groovy</tt> can be now overridden in <tt>$JENKINS_HOME</tt> if it exists.
<li class=rfe>
AJP port is customizable in RPM/OpenSUSE packages
(<a href="https://github.com/jenkinsci/jenkins/pull/149">pull request #149</a>)
<li class=rfe>
"Deploy to Maven repository" post build task should default to unique version, as per Maven3 default.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9807">issue 9807</a>)
<li class=rfe>
Improved the URL hyperlinking behavior in the console output
(<a href="https://github.com/jenkinsci/jenkins/pull/119">pull request #119</a>)
<li class=rfe>
Plugins can now override where jobs are executed.
<li class=rfe>
Rotate the slave log files instead of deleting them.
<li class=rfe>
Added a mechanism to control the XML parser behaviour
(<a href="https://github.com/jenkinsci/jenkins/pull/67">pull request #67</a>)
<li class=rfe>
Minor UI improvements for Jenkins update center.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9212">issue 9212</a>)
<li class='major rfe'>
Added a mechanism to write views in Groovy. The interface isn't committed yet. We are looking for feedback.
</ul>
<h3><a name=v1.415>What's new in 1.415</a> (2011/06/12)</h3>
<ul class=image>
<li class=bug>
Output correct version from java -jar jenkins.war --version (broken since 1.410)
<li class=bug>
Correct usage text from java -jar jenkins.war --help
<li class=bug>
Incremental maven jobs: if POM parsing failed, do a full build next time.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9848">issue 9848</a>)
<li class=bug>
Do not expose the proxy password in the HTML for Update Center
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-4000">issue 4000</a>)
<li class=rfe>
CLI command page now lists all the available commands
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9789">issue 9789</a>)
<li class=rfe>
Improve the post deployment job to make a clear error if you disabled artifacts archives
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9791">issue 9791</a>)
<li class=rfe>
Post-build deploy task for Maven jobs : Repositories definitions can now be read from the POMs.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9786">issue 9786</a>)
<li class=rfe>
Run maven jobs as headless process. on OSX this avoid jumping Dock icon to take focus.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9785">issue 9785</a>)
<li class=rfe>
Reduce memory consumption of dependency calculation in maven jobs.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9845">issue 9845</a>)
<li class=rfe>
Strongly encrypt the proxy password
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-4002">issue 4002</a>)
<li class=rfe>
Added an extension point to allow prodding the NodeProvisioner into taking action faster than it might usually.
<li class=bug>
When there are absolutely no executors for a specific label, there was an unnecessary delay in provisioning the
first node for that label.
</ul>
<h3><a name=v1.414>What's new in 1.414</a> (2011/06/04)</h3>
<ul class=image>
<li class=bug>
Fixed the concurrent modification exception in classloading during startup
<li class=bug>
Show an error message if no name is provided when creating a job (CLI)
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6958">issue 6958</a>)
<li class=bug>
Fix unescaped apostrophe in French translation.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9699">issue 9699</a>)
<li class=bug>
Allow building multiple downstream dependencies on a single job via DependencyGraph and BuildTrigger.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8985">issue 8985</a>)
<li class=bug>
Catch FileNotFoundException in Maven builds if Mojos are executed from a classes directory.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-5044">issue 5044</a>)
<li class=bug>
Fix NPE if node of last build isn't available anymore while polling for SCM changes.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9003">issue 9003 </a>)
<li class=rfe>
Set NODE_NAME for master node to "master"
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9671">issue 9671</a>)
<li class=rfe>
Jenkins Maven build does not recognize Tycho surfire reports with new groupId org.eclipse.tycho
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9326">issue 9326</a>)
<li class=rfe>
Add a default attribute to repeatableProperty and repeatable jelly tags
<li class=rfe>
Log which build steps have changed the build result to build console.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9687">issue 9687</a>)
</ul>
<h3><a name=v1.413>What's new in 1.413</a> (2011/05/22)</h3>
<ul class=image>
<li class=bug>
Fixed extra ' character in french translation.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9197">issue 9197</a>)
<li class=bug>
"Downgrade Jenkins" incorrectly shows 1.395
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9656">issue 9656</a>)
<li class=bug>
Fixed NPE in <tt>GlobalMatrixAuthorizationStrategy.doCheckName</tt>
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9412">issue 9412</a>)
<li class=bug>
Fixed a <tt>ClassCastException</tt> caused by multiple loading of the same class in different classloaders.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9017">issue 9017</a>)
<li class=rfe>
Support rebuilding a subset of matrix configurations
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-1613">issue 1613</a>)
<li class=rfe>
Gracefully handle old slave.jar to avoid <tt>AbstractMethodError</tt>
(<a href="https://groups.google.com/d/topic/jenkinsci-dev/KqFw4nfiQdE/discussion">thread</a>)
<li class=rfe>
Debian packages now do log rotation
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8641">issue 8641</a>)
<li class=rfe>
Provide more information to <tt>QueueTaskDispatcher</tt>
(<a href="https://groups.google.com/d/topic/jenkinsci-dev/H1o_essBS_A/discussion">thread</a>)
<li class=rfe>
Replaced all gif images with png images (transparency support).
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-3969">issue 3969</a>)
<li class=rfe>
Boldify names of executed mojos for Freestyle and Maven2/3 jobs using Maven3 in console output.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9691">issue 9691</a>)
</ul>
<h3><a name=v1.412>What's new in 1.412</a> (2011/05/16)</h3>
<ul class=image>
<li class=rfe>
Wait until updates are successfully installed before restarting Jenkins
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5047">issue 5047</a>)
</ul>
<h3><a name=v1.411>What's new in 1.411</a> (2011/05/09)</h3>
<ul class=image>
<li class=bug>
Allow blank rootDN in LDAPSecurityRealm.
(<a href="http://jenkins.361315.n4.nabble.com/LDAP-and-empty-root-DN-values-td2216124.html">thread</a>)
<li class=bug>
Fixed the UI rendering problem when certain controls are nested together.
<li class=bug>
Auto-refresh is now disabled when triggering a build with parameters
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7342">issue 7342</a>)
<li class=bug>
404 when clicking in the weather report column of a build that hasn't yet been run.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9532">issue 9532</a>)
<li class=bug>
Manually uploading a bundled plugin should trigger pin-down.
<li class=bug>
Clicking "History" from the left bar in a test result history page results in 404
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5450">issue 5450</a>)
<li class=rfe>
Add active configurations in remote API for matrix projects.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9248">issue 9248</a>)
<li class=rfe>
Link to the console output from the status icon of an entry in the HistoryWidget.
<li class=rfe>
Exploit commons-codec for Base64 encoding rather than proprietary sun.misc.BASE64Encoder
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9521">issue 9521</a>)
<li class=rfe>
Order of extension implementations is made bit more deterministic
</ul>
<h3><a name=v1.410>What's new in 1.410</a> (2011/05/01)</h3>
<ul class=image>
<li class=bug>
Maven3 with multiple threads does not work in Jenkins.
Fix support of -Tx maven 3 option.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9183">issue 9183</a>)
<li class=bug>
Jenkins Maven build does not recognize Tycho surefire reports
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9326">issue 9326</a>)
<li class=bug>
Fixed a persistence problem in <tt>View$PropertyList</tt>
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9367">issue 9367</a>)
<li class=bug>
Added unique instance identifier to UDP broadcast and DNS multicast information.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9230">issue 9230</a>)
<li class=bug>
jenkins.xml explains how to use hudson.exe for Windows
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9470">issue 9470</a>)
<li class=rfe>
Maven agent needs a fix for the 'hardcoded' socket connection to localhost
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6795">issue 6795</a>)
<li class=rfe>
Support custom workspace for maven/ivy projects
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8848">issue 8848</a>)
<li class=rfe>
Added a new extension point to execute background tasks more flexibly.
<li class=rfe>
Memory space monitor now works for Mac OS X Snow Leopard
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9374">issue 9374</a>)
</ul>
<h3><a name=v1.409>What's new in 1.409</a> (2011/04/25)</h3>
<ul class=image>
<li class=bug>
Some french strings are incorrect after renaming to Jenkins
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9334">issue 9334</a>)
<li class=bug>
Debian init script gives false positives for port already in use
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9281">issue 9281</a>)
<li class=bug>
"include culprits" should treat unstable and failure as the same
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-4617">issue 4617</a>)
<li class=bug>
fixed "Copy existing job" autocompletion.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9384">issue 9384</a>)
<li class=bug>
Zip/tar files created by Jenkins now properly retains Unix file modes.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9397">issue 9397</a>)
<li class=rfe>
Added two new CLI commands "wait-node-online" and "wait-node-offline" to block until a slave becomes online/offline.
<li class=rfe>
Move Jenkins URL setting from E-mail Notification to its own section in the main configuration.
<li class=rfe>
Add LOADING overlay when triggering a build with parameters
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9343">issue 9343</a>)
<li class=rfe>
Support self restart on Mac OS X 10.6 and onward
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7537">issue 7537</a>)
<li class=rfe>
Added "about Jenkins" screen that shows the 3rd party license acknowledgement.
</ul>
<h3><a name=v1.408>What's new in 1.408</a> (2011/04/18)</h3>
<ul class=image>
<li class='major bug'>
Fixed a regression that resulted in too much escaping
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9426">issue 9426</a>)
<li class='bug'>
Fixed a persistence problem in <tt>View$PropertyList</tt>
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9367">issue 9367</a>)
</ul>
<h3><a name=v1.407>What's new in 1.407</a> (2011/04/15)</h3>
<ul class=image>
<li class='major bug'>
Implemented comprehensive preventive measure against cross-site scripting.
(SECURITY-14)
<li class=bug>
Javadoc links on maven job page with only one module
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9202">issue 9202</a>)
<li class=bug>
Duplicate test results with Maven2 projects
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-1557">issue 1557</a>)
<li class=bug>
Re-fixed JDK1.6 dependency that has crept into the core in 1.400
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8914">issue 8914</a>)
<li class=bug>
eclipse-plugin packaging doesn't work with maven plugin support.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8348">issue 8438</a>)
<li class=bug>
Failed to parse POMs for packaging swc.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8448">issue 8448</a>)
<li class=bug>
Fixed "AdjunctManager is not installed" error when Jenkins failed to startup.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9271">issue 9271</a>)
<li class=rfe>
Jenkins has a new logo, thanks to Charles Lowell at The Frontside
</ul>
<h3><a name=v1.406>What's new in 1.406</a> (2011/04/11)</h3>
<ul class=image>
<li class=bug>
Default viewport of the Timeline widgets were off by one day.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6439">issue 6439</a>)
<li class=bug>
Label expression logic wasn't supporting a binary operator sequence like "a || b || c"
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8537">issue 8537</a>)
<li class=bug>
In matrix security, newly added rows weren't removable
<li class=bug>
Improve the stability of the test harness
<li class=bug>
Fixed a bug in handling ' and " in matrix build label axis
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9009">issue 9009</a>)
<li class=bug>
Fixed NPE in the "deploy to Maven repository" as a post-action.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9084">issue 9084</a>)
<li class=rfe>
Performance: Specify image sizes for faster page loading
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9182">issue 9182</a>)
<li class=rfe>
Support nested testsuites in the JUnit test result
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6545">issue 6545</a>)
<li class=rfe>
Added an extension point to allow adding transient actions to computers.
<li class=rfe>
Added an extension point to allow associating custom properties with views.
<li class=rfe>
Actions can now override their rendering in the parent model object.
<li class=rfe>
Jenkins is exposed to DNS multi-cast as Jenkins now
<li class=rfe>
Added a mechanism for plugins to write an invisible job property
<li class=rfe>
Added a mechanism for plugins to write an invisible node property
</ul>
<h3><a name=v1.405>What's new in 1.405</a> (2011/04/04)</h3>
<ul class=image>
<li class=bug>
Fixed link to javadoc in maven modules and add link to generated test javadoc
<li class=bug>
Fixed an AbstractMethodError in ItemGroupMixin.create when using some older plugins.
<li class=bug>
The "last duration" column was broken since 1.403.
<li class=bug>
Fixed a bug where XML API can produce malformed XML.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8988">issue 8988</a>)
<li class=bug>
Archive maven artifacts by their canonical names to avoid possible name conflicts
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9122">issue 9122</a>)
<li class=bug>
Marking modules as 'not build' in maven incremental builds didn't work anymore in maven 3 jobs
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9072">issue 9072</a>)
<li class=bug>
In incremental maven builds, modules could be left unbuilt, although they had SCM changes
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5764">issue 5764</a>)
<li class=bug>
Rebuilding dependency graph was taking much too long for big maven projects
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7535">issue 7535</a>)
<li class=bug>
Maven builds didn't work in JBoss 6.
<li class=rfe>
Ping setup for detecting bad master/slave communication is done more consistently now
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8990">issue 8990</a>)
<li class=rfe>
Expand environment variables in fingerprint targets
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9138">issue 9138</a>)
<li class=rfe>
Added an extension point to allow adding transient actions to computers.
</ul>
<h3><a name=v1.404>What's new in 1.404</a> (2011/03/27)</h3>
<ul class=image>
<li class=bug>
Regression in jenkins .401 maven plugin - deploy to repository post-task
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9084">issue 9084</a>)
<li class=bug>
Fixed a bug in persisting user configuration that causes NPE in some plugins
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9062">issue 9062</a>)
<li class=bug>
Replacement of some maven properties is not working
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8573">issue 8573</a>)
<li class=bug>
Fixed JDK1.6 dependency that has crept into the core in 1.400
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8914">issue 8914</a>)
<li class=bug>
When both "block build when upstream/downstream is building" are checked, the upstream block check wasn't taking effect.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8968">issue 8968</a>)
<li class=bug>
A project aggregating tests without any tests itself should now link properly
to latest aggregated results, rather than broken link to non-existent test
results.
<li class=bug>
Initial position of the "build time" timeline was off by one day
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8865">issue 8865</a>)
<li class=bug>
Build list tables had "Date" as column label, but actual content of the column was "Time Since".
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9102">issue 9102</a>)
<li class=bug>
PAM authentication fails to restore group membership information on "remember me" tokens.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9094">issue 9094</a>)
<li class=bug>
Upstream culprits did include culprits of an old build.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8567">issue 8567</a>)
<li class=bug>
Shell Task on Windows Slave Uses Incorrect /bin/sh.
<a href="http://issues.jenkins-ci.org/browse/JENKINS-8449">issue 8449</a>)
<li class=bug>
NPE during run - fingerprint cleanup thread.
<a href="http://issues.jenkins-ci.org/browse/JENKINS-6128">issue 6128</a>)
<li class=bug>
Failed to instantiate class hudson.slaves.DumbSlave.
<a href="http://issues.jenkins-ci.org/browse/JENKINS-7174">issue 7174</a>)
<li class=bug>
"Last Duration" column was showing all N/A. Regression in 1.403
<a href="http://issues.jenkins-ci.org/browse/JENKINS-9134">issue 9134</a>)
<li class=rfe>
Added the <tt>--mimeTypes</tt> command line option to define additional MIME type mappings.
<li class=rfe>
Added a new axis type to the matrix project that lets you use boolean expressions
(<a href="https://github.com/jenkinsci/jenkins/pull/66">pull request #66</a>)
<li class=rfe>
Improved the error diagnostics when a remote method call fails to deserialize.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9050">issue 9050</a>)
<li class=rfe>
Added "Manage Jenkins" link to the left side panel.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7743">issue 7743</a>)
<li class=rfe>
LDAP group names are now available as-is for the use in authorization. No upper casing / no 'ROLE_' prefix.
<li class=rfe>
Added a new extension point to contribute build variables.
</ul>
<h3><a name=v1.403>What's new in 1.403</a> (2011/03/20)</h3>
<ul class=image>
<li class='major bug'>
Fixed a race condition in the remote data transfer that results in silent file copy failures.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7871">issue 7871</a>)
<li class=bug>
Maven Plugin : Successful build ends with NPE
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8436">issue 8436</a>)
<li class=bug>
Fixed a deadlock when upstream and downstream jobs are blocked on each other
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8929">issue 8929</a>)
<li class=bug>
Email fails when sending to multiple recipients if _any_ of them are in error
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-9006">issue 9006</a>)
<li class=bug>
Ant properties with Windows %VAR% type variables did not expand since 1.370.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7442">issue 7442</a>)
<li class=bug>
Fixed a concurrent data access corruption in crumb generation.
<li class=rfe>
Allow maven builds to (opionally) make use of the token-macro-plugin.
<li class=rfe>
Proactively watch out for incomplete extensions to avoid cryptic NPE.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8866">issue 8866</a>)
<li class=rfe>
Added more event callbacks on <tt>ComputerListener</tt>
(<a href="http://jenkins.361315.n4.nabble.com/Hooking-into-failed-slave-launches-td3339646.html">thread</a>)
<li class=rfe>
Improved the auto-completion for creating a job by copying.
<li class=rfe>
Improved the performance of the configuration page rendering by lazy-loading fragments.
<li class=rfe>
Introduced a behind-the-scene mechanism to lazy-load portions of HTML pages.
<li class=rfe>
Introduced a behind-the-scene mechanism to simplify server/client communication through JavaScript proxies.
<li class=rfe>
Added an option to aggregated test results to include failed builds as well as passing and unstable builds.
<li class=rfe>
Added autocompletion to "Build after other projects" textbox, with support for "autoCompleteField" on textboxes without a true field.
<li class=rfe>
Include OS type and version of slave in the system information page.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8996">issue 8996</a>)
</ul>
<h3><a name=v1.402>What's new in 1.402</a> (2011/03/20)</h3>
<ul class=image>
<li class=bug>
Botched release. It doesn't exist.
</ul>
<h3><a name=v1.401>What's new in 1.401</a> (2011/03/13)</h3>
<ul class=image>
<li class=bug>
Fix for JENKINS-8711 breaks deployments with credentials
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8939">issue 8939</a>)
<li class=bug>
Environment variable not available for Maven build/POM parsing.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8865">issue 8865</a>)
<li class=bug>
Fixed a dead lock in concurrent builds of the same Maven projects.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-4220">issue 4220</a>)
<li class=bug>
Plugin Manager incorrectly displays "Changes will take effect when you restart Jenkins".
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8917">issue 8917</a>)
<li class=rfe>
Added Manage Jenkins link in sidepanel of Plugin Manager and Update Center.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8780">issue 8780</a>)
<li class=rfe>
Thread dump now reports all the threads from all the slaves, not just the master.
<li class=rfe>
Made the extension point implementation discovery logic customizable by a plugin
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8897">issue 8897</a>)
<li class=rfe>
Defined a mechanism to replace some of the key UI text.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8579">issue 8579</a>)
</ul>
<h3><a name=v1.400>What's new in 1.400</a> (2011/03/06)</h3>
<ul class=image>
<li class=bug>
NPE during in parsing POMs for Multi Module Build
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8525">issue 8525</a>)
<li class=bug>
Post build action deploy to maven repository can fail when using "use private maven repository option"
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8711">issue 8711</a>)
<li class=bug>
Groovy CLI command was failing to resolve plugin classes
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8892">issue 8892</a>)
<li class=rfe>
Exposing more key variables to the Groovy CLI command.
<li class=rfe>
Allow classworlds.conf to be externally configured for M3 builds
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8905">issue 8905</a>)
<li class=bug>
Configure the environment for Maven job type builds
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8092">issue 8902</a>)
</ul>
<h3><a name=v1.399>What's new in 1.399</a> (2011/02/27)</h3>
<ul class=image>
<li class='major bug'>
On IBM JDKs, Jenkins incorrectly ended up closing stdout to read from forked processes.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8420">issue 8420</a>)
<li class=bug>
Fixed a race condition in obtaining the tail of the output from remote process.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7809">issue 7809</a>)
<li class=bug>
Jenkins was unable to kill/list up native processses on 64bit Mac JVMs.
<li class=bug>
Many messages about RecordReaper IllegalArgumentException
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8647">issue 8647</a>)
<li class=bug>
Multiple polling events triggering a single build show up as multiple identical BuildActions in the sidebar, since there
is only one polling log file, regardless of how many times polling happened. Should only be the latest polling instance now.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7649">issue 7649</a>)
<li class=bug>
Fix javascript errors on config pages when view name or user name contains an apostrophe.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8789">issue 8789</a>)
<li class=bug>
Fix expansion of builtin environment variables in Ant properties on Windows.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7442">issue 7442</a>)
<li class=bug>
Fixed a log rotation configuration problem on openSUSE.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5784">issue 5784</a>)
<li class=bug>
Fixed a bug in the OpenSUSE startup script (again)
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5020">issue 5020</a>)
<li class=rfe>
Change prefix of BUILD_TAG variable to "jenkins-"
<li class=rfe>
Lock down maven plugin versions to shut up m3
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7275">issue 7275</a>)
<li class=rfe>
<tt>BuildWrapper</tt>s can now act on the build in progress before the checkout occurs.
<li class=rfe>
Improved the process forking abstractions so that plugins can more easily read from child processes.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7809">issue 7809</a>)
</ul>
<h3><a name=v1.398>What's new in 1.398</a> (2011/02/20)</h3>
<ul class=image>
<li class=bug>
MavenBuild does not respect the "alternate settings" value of its parent MavenModuleSetBuild
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8670">issue 8670</a>)
<li class=bug>
Jenkins wasn't telling build wrappers that builds were aborted when they were aborted.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8054">issue 8054</a>)
<li class=bug>
Maven deployment with uniqueVersion == true creating "new" versions for attached artifacts
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8651">issue 8651</a>)
<li class=bug>
Fixed a bug in the OpenSUSE startup script
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5020">issue 5020</a>)
<li class=bug>
Fixed a XSS vulnerability in the project relationship page.
<li class=bug>
"apt-get purge" with Debian should really purge
<li class=rfe>
Added a new extension point to expose unprotected root action.
<li class=rfe>
While editing description, inline help should show the syntax guide based on the current markup formatter.
<li class=rfe>
Started exposing JENKINS_URL, JENKINS_SERVER_COOKIE env vars in addition to legacy HUDSON_* variables
</ul>
<h3><a name=v1.397>What's new in 1.397</a> (2011/02/12)</h3>
<ul class=image>
<li class='major bug'>
Fixed a master/slave communication problem since 1.378 that often manifests as "Not in GZIP format"
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7745">issue 7745</a>)
<li class=bug>
When run as "java -jar jenkins.war", "~/.hudson" was still used as default.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8658">issue 8658</a>)
<li class=bug>
Debian package no longer messes around with the file permissions
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-4047">issue 4047</a>)
<li class=bug>
Fixed a JVM dependency in debian package so that it can run with OpenJDK
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8159">issue 8159</a>)
<li class=bug>
Fixed a log rotation configuration problem on Red Hat
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5784">issue 5784</a>)
<li class=bug>
Windows XP slave stopped working in 1.396 (related to name change)
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8676">issue 8676</a>)
<li class=bug>
Unnecessary log messages if a remote pipe is not read until EOF
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8592">issue 8592</a>)
<li class=bug>
Fixed a bug in the calendar computation.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-8656">issue 8656 in Hudson</a>)
<li class=bug>
Fixed an NPE when loading full build history.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8660">issue 8660</a>)
<li class=bug>
EXECUTOR_NUMBER uniqueness can degrate over time
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-4756">issue 4756</a>)
<li class=bug>
<tt>jenkins-cli.jar</tt> should honor <tt>JENKINS_URL</tt>.
<li class=rfe>
build RSS feeds now contain description of builds.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-3935">issue 3935</a>)
<li class=rfe>
Debian package will force-terminate Jenkins if it fails to shut down in 5 seconds.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5415">issue 5415</a>)
</ul>
<h3><a name=v1.396>What's new in 1.396</a> (2011/02/02)</h3>
<ul class=image>
<li class=bug>
Fixed a bug in crontab "day of week" handling in locales where a week starts from Monday.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8401">issue 8401</a>)
<li class=bug>
If a master fails to ping a slave, it should be hard-disconnected.
<li class=bug>
"java -jar hudson.war --daemon" was forcing umask 027. This includes Debian/redhat packages.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5114">issue 5114</a>)
<li class=rfe>
If the JNLP-connected slave drops out without the master not noticing, allow the reconnection
without rejecting it.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5055">issue 5055</a>)
<li class='major rfe'>
Fixed a trademark bug that caused a considerable fiasco by renaming to Jenkins
</ul>
<h3><a name=v1.395>What's new in 1.395</a> (2011/01/21)</h3>
<ul class=image>
<li class=bug>
Do not chmod/chown symlink targets in /var/lib/hudson (debian package)
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8502">issue 8502</a>)
<li class=bug>
M2 and M3 builds behave differently when tests fail.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8415">issue 8415</a>)
<li class=bug>
Hudson was failing to record the connection termination problem in slave logs.
<li class=bug>
Node names can be edited to include slashes and then cannot be removed.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8438">issue 8437</a>)
<li class=bug>
Fix temporarily offline slaves not showing active jobs
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8546">issue 8546</a>)
<li class=rfe>
Startup performance improvement
<li class=rfe>
Reduced the memory footprint used by fingerprints.
<li class=rfe>
Added a new extension point to support external login mechanisms.
<li class=rfe>
Heap dump of running Hudson instance can be obtained by requesting /heapDump from
the browser.
<li class=rfe>
MavenReporter#postExecute parameter Throwable error is always empty in case of mojo failure
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8493">issue 8493</a>)
<li class=rfe>
Improved the error diagnosis if a build fails because of the slave connectivity problem.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5073">issue 5073</a>)
</ul>
<h3><a name=v1.394>What's new in 1.394</a> (2011/01/15)</h3>
<ul class=image>
<li class=bug> Parsing poms fails if a module is a path to a pom (and not to a directory)
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8445">issue 8445</a>)
<li class=bug> M3 builds doesn't have a colorized console
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8411">issue 8411</a>)
<li class=bug> Bad path for submodules
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8452">issue 8452</a>)
<li class=rfe> Add more options to configure maven project building
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8406">issue 8406</a>)
<li class=rfe> Violations plugin tries to access nonexistant directory.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8418">issue 8418</a>)
<li class=rfe> maven2 build fails due to 'RELEASE' plugin version.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8462">issue 8462</a>)
<li class=rfe>
Block build when downstream projects are building.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7046">issue 7046</a>)
<li class=bug> nonRecursive option is not honored anymore when parsing pom
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8484">issue 8484</a>)
<li class=ref>
Maven 3 support : display same logging output as a maven build with the cli
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8490">issue 8490</a>)
</ul>
<h3><a name=v1.393>What's new in 1.393</a> (2011/01/09)</h3>
<ul class=image>
<li class=rfe>
Added CharacterEncodingFilter to prevent Non-ASCII characters from getting garbled.
<li class=bug> Maven mirrors not used when project uses Maven 2.2
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8387">issue 8387</a>)
<li class=bug> NPE while parsing POMs
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8391">issue 8391</a>)
<li class=bug> M2 POMs aren't parsed if there is a M3 control error like an invalid scope in a plugin dep.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8395">issue 8395</a>)
<li class=bug> POMs parsing fails in m2 projects which has a wrong inheritence (m3 constraint).
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8390">issue 8390</a>)
</ul>
<h3><a name=v1.392>What's new in 1.392</a> (2010/12/31)</h3>
<ul class=image>
<li class='major rfe'>
Maven 3 support in maven-plugin.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-4988">issue 4988</a>)
<li class=bug>
Turn Off "Show Friendly HTTP Error Messages" Feature on the Server Side.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8352">issue 8352</a>)
<li class=bug>
Hudson installed as Windows service wasn't restarting properly
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5090">issue 5090</a>)
<li class=bug>
Escape quotes.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8270">issue 8270</a>)
</ul>
<h3><a name=v1.391>What's new in 1.391</a> (2010/12/26)</h3>
<ul class=image>
<li class=bug>
failed to build with "Trigger builds remotely" enabled.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8319">issue 8319</a>)
<li class=rfe>
added a new extension point to use markup for job/user description
</ul>
<h3><a name=v1.390>What's new in 1.390</a> (2010/12/18)</h3>
<ul class=image>
<li class=bug>
" (from WhateverTest)" gratuitously appended to test result detail pages.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5655">issue 5655</a>)
<li class=bug>
Fixed a pipe leak to child processes.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8244">issue 8244</a>)
<li class=bug>
Fixed an NPE in ComputerRetentionWork
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-3696">issue 3696</a>)
<li class=bug>
Fixed an issue preventing to copy data on AIX, HP-UX or Linux for S/390.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8155">issue 8155</a>)
<li class=rfe>
Debian package init script now honors <tt>~/.profile</tt>.
<li class=rfe>
Build names (e.g., "#123") can be now modified by users/plugins to arbitrary text.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-53">issue 53</a>,
<a href="http://issues.jenkins-ci.org/browse/JENKINS-4884">issue 4884</a>)
<li class=rfe>
Allow the administrator to yank out dead executors.
</ul>
<h3><a name=v1.389>What's new in 1.389</a> (2010/12/11)</h3>
<ul class=image>
<li class=rfe>
Hide executors for offline nodes to conserve space in Build Executors Status list.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8252">issue 8252</a>)
<li class=bug>
throw AccessDeniedException if "Authentication Token" is invalid.
(<a href="http://hudson.361315.n4.nabble.com/-td3069369.html">hudson-ja</a>)
</ul>
<h3><a name=v1.388>What's new in 1.388</a> (2010/12/04)</h3>
<ul class=image>
<li class=bug>
Failure to UDP broadcast shouldn't kill the Hudson bootup process.
<li class=bug>
Fixed an <tt>AbstractMethodError</tt> in listing up executors.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8106">issue 8106</a>)
<li class=bug>
Slaves launched by JNLP fail to reprot their version numbers.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8060">issue 8060</a>)
<li class=bug>
Restarting Hudson via debian init script didn't wait for the process to really terminate.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7937">issue 7937</a>)
<li class=rfe>
Test history with long build records had a scalability problem.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-4621">issue 4621</a>)
<li class=rfe>