forked from jenkinsci/jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.html
2771 lines (2759 loc) · 144 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 become 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>
<!-- TODO replace with new link:
link rel="alternate" title="Hudson announcements" href="https://hudson.dev.java.net/servlets/ProjectNewsRSS" type="application/rss+xml" -->
<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>
<!-- TODO replace with new link: div align=right>
<a href="https://hudson.dev.java.net/servlets/ProjectNewsRSS"><img src=atom.gif border=0 alt="Atom"> Subscribe to RSS feed</a>
</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>
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=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>
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.
</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.405>What's new in 1.405</a> <!--=DATE=--></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>
</div><!--=END=-->
<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>
Added the build number to the test result graph tooltip.
<li class=rfe>
Added a new extension point to contribute transient View actions.
<li class=rfe>
Added "disable project" button.
<li class=rfe>
Added "set-build-description" CLI command.
</ul>
<h3><a name=v1.387>What's new in 1.387</a> (2010/11/27)</h3>
<ul class=image>
<li class=bug>
Avoid <tt>AbstractMethodError</tt> in the executors rendering.
<li class=bug>
Don't litter HUDSON_HOME with atomic*.xml files.
<li class=bug>
Hudson is made more robust in the face of malformed console annotations.
<li class=rfe>
Add parameter definition type and job name to job API
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8133">issue 8133</a>)
<li class=rfe>
"Install as a service" now supports Vista and Windows 7.
<li class=rfe>
"Restart Hudson" button should appear when a plugin is manually installed.
<li class=rfe>
In this release only the background is changed until Dec 5th to i387 chip,
to celebrate our 1.387 release (the feature is time bombed and will revert
to the butler after that date.)
</ul>
<h3><a name=v1.386>What's new in 1.386</a> (2010/11/19)</h3>
<ul class=image>
<li class=bug>
Support CSRF protection when submitting results of an external job.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7961">issue 7961</a>)
<li class=bug>
Allow build to start when polling interval is shorter than quiet period and
we need a workspace for polling.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8007">issue 8007</a>)
<li class=bug>
Fix escaping of some special characters when passing properties to Ant on Windows.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7657">issue 7657</a>)
<li class=bug>
Check poll_scm_threads.
<li class=bug>
"Retain long standard output/error" option could not be checked when
configuring a job.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7562">issue 7562</a>)
<li class=bug>
Build number in Build History status was off-by-one.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7973">issue 7973</a>)
<li class=bug>
Check whether the name of ToolInstlation is not null.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8088">issue 8088</a>)
<li class=bug>
Prevent AbstractMethodError because of new method in Queue.Executor interface.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8033">issue 8033</a>)
<li class=bug>
View "Delete" permission was not checked properly for showing link.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7605">issue 7605</a>)
<li class=bug>
Fix javascript error in IE for some UI elements, such as one used by copyartifact plugin.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6756">issue 6756</a>)
<li class=bug>
Fix serialization of array containing null elements.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8006">issue 8006</a>)
<li class=rfe>
Update bundled subversion plugin to version 1.20 and ssh-slaves to version 0.14.
</ul>
<h4><s><a name=v1.385>What's new in 1.385</a> (2010/11/15)</s></h4>
<ul class=image>
<li class=rfe> Oops, same as 1.384
</ul>
<h3><a name=v1.384>What's new in 1.384</a> (2010/11/05)</h3>
<ul class=image>
<li class=bug>
JDK download for auto installation was not honoring the proxy setting.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7327">issue 7327</a>)
<li class=bug>
Fixed the "Not in GZIP format" error when archiving site / copying files / etc.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7745">issue 7745</a>)
<li class=bug>
Fixed garbled node description.
(<a href="http://hudson.361315.n4.nabble.com/-td3023036.html#a3023036">Hudson-ja</a>)
<li class=bug>
Fixed 404 Not Found error when downgrade buttons are clicked.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7988">issue 7988</a>)
<li class=rfe>
Label expression textbox for "Restrict where this project can be run" now
provides autocompletion suggestions.
</ul>
<h3><a name=v1.383>What's new in 1.383</a> (2010/10/29)</h3>
<ul class=image>
<li class="major bug">
Fix security issue where a user with job configure permission could obtain
admin permission for their session.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7256">issue 7256</a>)
<li class=bug>
Build wrappers can now decorate the launcher or logger for matrix builds.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7868">issue 7868</a>)
<li class=bug>
Fixed a bug where non-existent optional dependencies can result in a cascading load failure.
<li class=rfe>
Added extension point to allow plugins to add global filters to console
log streams.
<li class=rfe>
Calculate "Estimated remaining time" for incremental Maven builds based on
the modules which are actually being build.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6544">issue 6544</a>)
</ul>
<h3><a name=v1.382>What's new in 1.382</a> (2010/10/24)</h3>
<ul class=image>
<li class=bug>
Recognize initialization tasks from plugins.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5427">issue 5427</a>)
<li class=bug>
Hudson was failing to report error messages in several situations during a build.
<li class=bug>
UI for tying jobs to labels wasn't shown in some situations.
</ul>
<h3><a name=v1.381>What's new in 1.381</a> (2010/10/16)</h3>
<ul class=image>
<li class=bug>
Fixed a race condition.
<li class=bug>
Fixed issue with LabelAxis longer than 30 characters causing failures when saving matrix job configuration.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7500">issue 7500</a>)
<li class=rfe>
Improved packet fragmentation in Winstone when writing out HTTP responses.
<li class=rfe><a href="http://wiki.jenkins-ci.org/display/JENKINS//Extension+Point+for+Project+Views+Navigation">Extension Point to provide alternate UI for Project Views implemented</a>
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-1467">issue 1467</a>)
</ul>
<h3><a name=v1.380>What's new in 1.380</a> (2010/10/09)</h3>
<ul class=image>
<li class=bug>
Safe restart was not working since 1.376
<li class=bug>
Don't let help icons get keyboard focus. This improves the keyboard navigability of the configuration page.
<li class=bug>
Debug message crept into the production code in 1.379.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7662">issue 7662</a>)
<li class=bug>
Fixed an AbstractMethodError in the UI with plugins (such as batch task.)
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7546">issue 7546</a>)
<li class=rfe>
Add "proxy compatible" option to default crumb issuing algoritm
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7518">issue 7518</a>)
</ul>
<h3><a name=v1.379>What's new in 1.379</a> (2010/10/02)</h3>
<ul class=image>
<li class='major bug'>
Fixed a pipe clogging problem that can result in a hanging build.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5977">issue 5977</a>,
<a href="http://issues.jenkins-ci.org/browse/JENKINS-7572">issue 7572</a>)
<li class=bug>
Fixed a possible NPE in computing dependency changes.
<li class=bug>
Fixed the malformed HTTP request error recovery behavior in Winstone.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7201">issue 7201</a>)
<li class=bug>
When checking module descendant relationships, SCM changelog paths were using system file separators while module paths were always using /s.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7611">issue 7611</a>)
<li class=bug>
Hudson was creating multiple instances of <tt>PageDecorator</tt>s, resulting in data consistency problem.
(<a href="http://hudson.361315.n4.nabble.com/PageDecorator-and-global-jelly-tp2552804p2552804.html">report</a>)
<li class=bug>
Fixed a possible AbstractMethodError
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7546">issue 7546</a>)
<li class=rfe>
Supported failsafe reports for the Maven2 job type.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-4229">issue 4229</a>)
</ul>
<h3><a name=v1.378>What's new in 1.378</a> (2010/09/25)</h3>
<ul class=image>
<li class='major bug'>
Improving the master/slave communication to avoid pipe clogging problem.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5977">issue 5977</a>)
<li class='major bug'>
Rolling back to Ant 1.8.0 due to bug in Ant 1.8.1 file copy with large files.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7013">issue 7013</a>)
<li class=bug>
Multiple fingerprints and "redeploy artifacts" links are added to M2 builds when multiple forked lifecycles are invovled.
<li class=bug>
Computation of the module build time in the m2 job was incorrect when multiple forked lifecycles are involved.
<li class=bug>
Standardized logic for determining alternate settings file location in Maven projects for POM parsing and actual Maven execution.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-4963">issue 4963</a>)
<li class=bug>
Side effect from earlier fix of <a href="http://issues.jenkins-ci.org/browse/JENKINS-7300">issue 7300</a> - some help files were linking to a now-moved file in SVN directly. Those are all changed to relative paths now.
<li class=bug>
BuildWrapper teardowns could not get result of build for Maven2 projects.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6033">issue 6033</a>)
<li class=bug>
Properly handle incremental builds of Maven projects using relative paths to modules.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5357">issue 5357</a>)
<li class=bug>
Setting of MAXOPENFILES was not reflected in the debian init script.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5721">issue 5721</a>)
<li class=bug>
Do not expose static resources under <tt>WEB-INF</tt> to clients
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7457">issue 7457</a>)
<li class=rfe>
Console annotations are added to highlight warnings/errors in Maven
<li class=rfe>
If a polling initiated a build, capture its log to the build.
<li class=rfe>
Added a new extension point to prolong the quiet down period programmatically.
<li class=rfe>
Added a new extension point to make the ping behaviour customizable.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5249">issue 5249</a>)
<li class=rfe>
Added a new classloader ("a la" child first for plugin)
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5360">issue 5360</a>)
</ul>
<h3><a name=v1.377>What's new in 1.377</a> (2010/09/19)</h3>
<ul class=image>
<li class=bug>
Moved nulling out of buildEnvironments to cleanUp, so that node variables are available in Publishers.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5925">issue 5925</a>)
<li class=bug>
Fixed a persistence problem in the label properties.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7378">issue 7378</a>)
<li class=bug>
Fixed a problem in saving configuration for matrix projects with multiple label axes.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7281">issue 7281</a>)
<li class=bug>
Fixed French localization problem.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6003">issue 6003</a>,
<a href="http://issues.jenkins-ci.org/browse/JENKINS-7404">issue 7404</a>)
<li class=rfe>
Matrix project now supports custom workspace.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5077">issue 5077</a>)
<li class='major rfe'>
Queue/execution model is extended to allow jobs that consume multiple executors on different nodes.
</ul>
<h3><a name=v1.376>What's new in 1.376</a> (2010/09/11)</h3>
<ul class=image>
<li class=bug>
Error in some remote API requests since 1.373.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7299">issue 7299</a>)
<li class=bug>
Fixed RSS of each user's "last builds only" are not found.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7384">issue 7384</a>)
<li class=bug>
Handle initialization problem more gracefully
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7380">issue 7380</a>)
<li class=bug>
A matrix build configuration page with multiple nodes/labels was broken since 1.373.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7281">issue 7281</a>)
<li class="rfe">
Added downgrade support for the core and plugins.
</ul>
<h3><a name=v1.375>What's new in 1.375</a> (2010/09/07)</h3>
<ul class=image>
<li class=bug>
CLI login did not work for about half of the CLI commands (those defined via @CLIMethod annotation).
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6628">issue 6628</a>)
<li class=bug>
Add escaping for comma character for Ant properties on Windows.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-2149">issue 2149</a>)
<li class=bug>
Small update to empty Ant properties on Windows fix from 1.374, now also working for two consecutive empty properties.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7204">issue 7204</a>)
<li class=bug>
Fixed a possible race condition during Hudson start up.
<li class=rfe>
Improved the memory consumption when used with LDAP.
<li class=rfe>
Improved console annotations for Ant.
<li class=rfe>
(Internal) ConsoleNotes can now inject its associated CSS.
</ul>
<h3><a name=v1.374>What's new in 1.374</a> (2010/08/27)</h3>
<ul class=image>
<li class=bug>
Unable to add empty Ant properties on Windows since 1.370.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7204">issue 7204</a>)
<li class=rfe>
Maven2 projects now pick up Flexmojo test results automatically.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6893">issue 6893</a>)
<li class=rfe>
Auto-completion can be now easily added to text boxes by plugins.
<li class=rfe>
Non build modules in incremental Maven builds are now set to NOT_BUILD at the beginning of the build, already.
<li class=rfe>
Plugins can now transform the console output.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7112">issue 7112</a>)
<li class=rfe>
Administrator can unpin plugins that are pinned.
<li class=rfe>
Memory footprint reduction with fingerprints.
<li class=rfe>
Added "This build is disabled" on Matrix project when it disabled.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7266">issue 7266</a>)
</ul>
<h3><a name=v1.373>What's new in 1.373</a> (2010/08/23)</h3>
<ul class=image>
<li class=bug>
Fixed a config page regression in the matrix project.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7213">issue 7213</a>)
<li class=bug>
Ant target annotation should allow colon in the target name.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7026">issue 7026</a>)
<li class=bug>
Fixed a 1.372 regression in handling whitespace and other characters in label names.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7216">issue 7216</a>)
<li class=bug>
Allow use of username/password parameters for CLI when using LDAP authentication.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6628">issue 6628</a>)
<li class=rfe>
Axes in multi-configuration projects are now extensible.
<li class=rfe>
Multi-configuration projects now allow multiple label/node axes.
<li class=rfe>
Improved the layout algorithm of the matrix project visualization.
(<a href="http://hudson.361315.n4.nabble.com/PATCH-Prefer-Y-axis-based-on-size-td2324178.html#a2324178">patch</a>)
<li class=rfe>
JUnit report archiving now captures stdout of tests run in Surefire.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-4158">issue 4158</a>)
<li class=rfe>
Updated bundled ssh-slaves plugin to version 0.13.
</ul>
<h3><a name=v1.372>What's new in 1.372</a> (2010/08/13)</h3>
<ul class=image>
<li class=rfe>
Persist matrix-based security settings in a consistent order
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7138">issue 7138</a>)
<li class='major rfe'>
Jobs can now use boolean expression over labels to control where they run.
</ul>
<h3><a name=v1.371>What's new in 1.371</a> (2010/08/09)</h3>
<ul class=image>
<li class="major bug">
A security hole in CLI command implementations enable unauthorized users
from executing commands.
(SECURITY-5)
</ul>
<h3><a name=v1.370>What's new in 1.370</a> (2010/08/07)</h3>
<ul class=image>
<li class=bug>
Added escaping of special characters when passing properties to Ant on Windows.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7108">issue 7108</a>)
<li class=bug>
Workaround issue in IBM JVM causing intermittent ClassNotFoundExceptions.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5141">issue 5141</a>)
<li class=bug>
Fixed a memory leak in Winstone
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5119">issue 5119</a>)
<li class=rfe>
Updated bundled cvs plugin to version 1.2.
<li class=rfe>
Incorporated community contributed translations in Korean and Dutch.
</ul>
<h3><a name=v1.369>What's new in 1.369</a> (2010/07/30)</h3>
<ul class=image>
<li class="major bug">
<code>X-Hudson</code> header not being sent in 1.368.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7100">issue 7100</a>)
<li class=bug>
NPE on build after incremental Maven builds are aborted.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6429">issue 6429</a>)
<li class=bug>
On-demand slaves would launch even when "only for tied jobs" is set.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7054">issue 7054</a>)
<li class=bug>
Fix links to ant targets in console output view that were added in 1.367.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7041">issue 7041</a>)
<li class=bug>
Avoid error with invalid or null primary view, such as in upgrade from older Hudson.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6938">issue 6938</a>)
<li class=bug>
Support LogRotator deletion of old artifacts in multiconfiguration projects.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6925">issue 6925</a>)
<li class=bug>
Build queue was not saved in safeRestart or safeExit.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6804">issue 6804</a>)
<li class=rfe>
CLI can now work with a reverse proxy that requires BASIC auth.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-3796">issue 3796</a>)
</ul>
<h3><a name=v1.368>What's new in 1.368</a> (2010/07/26)</h3>
<ul class=image>
<li class=bug>
Make <tt>/buildWithParameters</tt> support remote cause and user supplied cause text
for build via authentication token, just as <tt>/build</tt> does.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-7004">issue 7004</a>)
<li class=bug>
Auto install of JDK when master/slave are different platforms would fail.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6880">issue 6880</a>)
<li class=bug>
Modified to work with Tomcat 7.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6738">issue 6738</a>)
</ul>
<h3><a name=v1.367>What's new in 1.367</a> (2010/07/16)</h3>
<ul class=image>
<li class=bug>
Safe restart made Hudson unresponsive until all running jobs complete, since 1.361.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6649">issue 6649</a>)
<li class=bug>
Plugins with dependencies show wrong description on installed plugins page.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6966">issue 6966</a>)
<li class=bug>
Fix redirect after login when return URL has characters that need encoding.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6960">issue 6960</a>)
<li class=bug>
<input type='hidden'> field shouldn't be getting the plain text password value.
<li class=rfe>
Added a mechanism to register CLI option handler as an extension point.
<li class=rfe>
Added a CLI command 'set-build-result' that can be used from inside a build to set the build status.
<li class=rfe>
Show outline structure for Ant execution in the console output view.
<li class=rfe>
Remote API now supports the 'tree' filter query parameter which is more efficient and easier to use.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5940">issue 5940</a>)
</ul>
<h3><a name=v1.366>What's new in 1.366</a> (2010/07/09)</h3>
<ul class=image>
<li class='major bug'>
Fixed a possible security issue where a malicious user with the project
configuration access can trick Hudson into leaking the proxy password,
if Hudson is configured with a proxy with username/password.
(SECURITY-3)
<li class=bug>
Delete contained module builds when a maven project build is deleted, to avoid
orphaned builds which can then affect the displayed result of a prior build.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6779">issue 6779</a>)
<li class=bug>
Hide some sidepanel links that should not be shown in user-private views.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6832">issue 6832</a>)
<li class=bug>
Fix for file parameters that are copied to a subdirectory of the workspace.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6889">issue 6889</a>)
<li class=bug>
File parameters uploaded via the CLI are now displayed correctly on the build Parameters page.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6896">issue 6896</a>)
<li class=bug>
Allowed file parameters to be downloaded even when the name contains URL-unfriendly characters.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6897">issue 6897</a>)
<li class=bug>
Fixed a garbage in the raw console plain text output.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6034">issue 6034</a>)
<li class=bug>
"Hudson is loading" page didn't take the user back to the same page.
<li class=rfe>
Hudson can now remotely install JDK on Windows slaves when connecting via the
"Let Hudson control this Windows slave as a Windows service" mode.
<li class=rfe>
The "Let Hudson control this Windows slave as a Windows service" mode now allows the same Windows slave
to be used by multiple Hudson masters.
</ul>
<h3><a name=v1.365>What's new in 1.365</a> (2010/07/05)</h3>
<ul class=image>
<li class='major bug'>
Fixed a critical security problem. See <a href="http://infradna.com/content/security-advisory-2010-07-05">the advisory</a> for more details.
</ul>
<h3><a name=v1.364>What's new in 1.364</a> (2010/06/25)</h3>
<ul class=image>
<li class=bug>
Fixed a race condition where a queued build may get executed multiple times.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6819">issue 6819</a>)
<li class=bug>
Some UI labels related to JUnit results were shown in the wrong locale.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6824">issue 6824</a>)
<li class=rfe>
<tt>BuildWrapper</tt>s can now contribute build variables.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6497">issue 6497</a>)
</ul>
<h3><a name=v1.363>What's new in 1.363</a> (2010/06/18)</h3>
<ul class=image>