forked from jenkinsci/jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.html
4331 lines (4318 loc) · 221 KB
/
changelog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!--
We record noteworthy changes in this file, which then becomes http://jenkins-ci.org/changelog
Some tips:
- Record your changes between "TRUNK-BEGIN" and "TRUNK-END".
(except in rare cases when you are making changes in the RC branch,
in which case it goes to the rc section)
- There are four CSS classes to denote the kind of changes.
"rfe" for enhancement and "bug" for bug fixes,
plus "major" to indicate major RFE/bugfix.
- Link to bugs in the issue tracker, e-mail thread in the archive, and so on if you can.
-->
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>Changelog</title>
<link rel="stylesheet" TYPE="text/css" href="changelog.css">
<!--[if IE]>
<style type="text/css">div.rate-offset { bottom: 0.2em !important; left: 5em !important; }</style>
<![endif]-->
<script type="text/javascript" src="/rate/rate.js"></script>
</head>
<body>
<div align="right">Legend:
<span class="iconlegend">
<img src="images/rfe2.gif" alt="major RFE">major enhancement <img src="images/rfe.gif" alt="RFE">enhancement
<img src="images/bug2.gif" alt="major bug">major bug fix <img src="images/bug.gif" alt="bug">bug fix
</span><span style="visibility:hidden">xxxxx</span>
</div>
<div id="ratings" style="display:none; font-size:120%;
border:1px solid black; background-color:#eee; padding:0.5em; margin-bottom:1em">
Help other Jenkins users by letting the community know which releases you've used,
and whether they had any significant issues. <br>
Legend: <br>
<img src="http://ci.jenkins-ci.org/images/16x16/health-80plus.gif" width="16" height="16"
alt="Sunny"> = I use it on my production site without major issues. <br>
<img src="http://ci.jenkins-ci.org/images/16x16/health-40to59.gif" width="16" height="16"
alt="Cloudy"> = I don't recommend it. <br>
<img src="http://ci.jenkins-ci.org/images/16x16/health-00to19.gif" width="16" height="16"
alt="Lightning"> = I tried it but rolled back to a previous version. <br>
View ratings below, and click one of the icons next to your version to provide your input.
</div>
<a href="" onClick="document.getElementById('trunk').style.display=document.getElementById('rc').style.display='block';return false">
Upcoming changes</a>
<a href="" style="padding-left:3em" onClick="return loaddata(this)">Community ratings</a>
<!-- Record your changes in the trunk here. -->
<div id="trunk" style="display:none"><!--=TRUNK-BEGIN=-->
<ul class=image>
<li class=bug>
Updating job config.xml shouldn't clobber in-progress builds.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12318">issue 12318</a>)
<li class=rfe>
Search index includes all top-level jobs, not just jobs in the current view.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13148">issue 13148</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.472>What's new in 1.472</a> <!--=DATE=--></h3>
<ul class=image>
<li class=bug>
Fixed a synchronization problem between master/slave data communication.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11251">issue 11251</a>)
<li class=rfe>
Added a mechanism to filter extension points as they are discovered.
<li class=rfe>
Exposed the master's own node properties to be configured in <tt>/computer/(master)/configure</tt>
(whereas <tt>/configure</tt> controls global node properties that apply to all nodes.)
<li class=rfe>
Made the list of environment variables in the help page pluggable
(<a href="https://github.com/jenkinsci/jenkins/pull/434">pull 434</a>)
<li class=rfe>
Added a new hook to enable matrix project axes to change its values per build.
(<a href="https://github.com/jenkinsci/jenkins/pull/449">pull 449</a>)
</ul>
</div><!--=END=-->
<h3><a name=v1.471>What's new in 1.471</a> (2012/06/18)</h3>
<ul class=image>
<li class=bug>
JSON MIME type should be "application/json"
(<a href="http://java.net/jira/browse/STAPLER-17">STAPLER-17</a>)
<li class=bug>
Fixed: XML API Logs Too Much Information When Invalid Char is Present
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13378">issue 13378</a>)
<li class=rfe>
Improved the way we store hashed passwords.
(<a href="http://blog.linkedin.com/2012/06/06/linkedin-member-passwords-compromised/">motivation</a>)
<li class=rfe>
Reduce the total height of items shown in the view configuration page.
(<a href="https://github.com/jenkinsci/jenkins/pull/488">pull 488</a>)
<li class=rfe>
The CLI <tt>build</tt> command now has the <tt>-v</tt> option that reports the console output of the build in progress.
<li class=rfe>
The CLI <tt>build</tt> command can now wait until the start of the build.
</ul>
<h3><a name=v1.470>What's new in 1.470</a> (2012/06/13)</h3>
<ul class=image>
<li class=bug>
Problem in syncing mirrors with native packages. Re-releasing the same bits as 1.469 as 1.470.
</ul>
<h3><a name=v1.469>What's new in 1.469</a> (2012/06/11)</h3>
<ul class=image>
<li class=bug>
Fixed a regression in 1.468 that broke LDAP
</ul>
<h3><a name=v1.468>What's new in 1.468</a> (2012/06/11)</h3>
<ul class=image>
<li class=bug>
Added more MIME type mapping for Winstone.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13496">issue 13496</a>)
<li class=bug>
Winstone wasn't handling downloads bigger than 2GB.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12854">issue 12854</a>)
<li class=bug>
With 'on-demand' retention strategy, wrong slave can be started for jobs restricted to specific slave.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13735">issue 13735</a>)
<li class=bug>
Fixed encoding handling in e-mail headers.
(<a href="https://github.com/jenkinsci/jenkins/pull/486">pull 486</a>)
<li class=rfe>
Added a new extension point for custom checkout behaviour, especially targeted for matrix projects.
(<a href="https://github.com/jenkinsci/jenkins/pull/482">pull 482</a>)
<li class=rfe>
REST API now supports pretty printing of JSON and other formats.
<li class=rfe>
Allow the tree parameter and the xpath parameter to be used together in the REST API.
<li class=rfe>
Improved the background transparency of the animating ball icon
</ul>
<h3><a name=v1.467>What's new in 1.467</a> (2012/06/04)</h3>
<ul class=image>
<li class=bug>
When accessing a page that requires authentication, redirection to start authentication results in a content decoding failure.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13625">issue 13625</a>)
<li class=bug>
Fixed a bug in the way cloud support handles free-roaming jobs.
(<a href="https://groups.google.com/forum/?fromgroups#!topic/jenkinsci-dev/bUwGEgOwv4Q">discussion</a>)
<li class=bug>
Fixed a regression in untar operation in exotic platforms
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13202">issue 13202</a>)
<li class=bug>
Fixed a possible race condition
<li class=bug>
Fixed nested view not showing up with just read perm for View
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13429">issue 13429</a>)
<li class=rfe>
Allow file parameters to be viewed as plain text.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13640">issue 13640</a>)
<li class=rfe>
CLI connection to the master is now encrypted.
<li class=rfe>
Improve the low disk space warning message.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13826">issue 13826</a>)
<li class=rfe>
Matrix custom workspace support is improved to allow configuration builds to share workspace
<li class=rfe>
Added more context menus to hyperlinks in the console output
<li class=rfe>
Exposed plugin manager and update center to the REST API
<li class=rfe>
Added a new extension point for agent protocols.
<li class=rfe>
Enabled concurrent build support for matrix projects
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-6747">issue 6747</a>)
</ul>
<h3><a name=v1.466>What's new in 1.466</a> (2012/05/28)</h3>
<ul class=image>
<li class=bug>
Maven plugin: expand variables in "Room POM" field
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13822">issue 13822</a>)
<li class=rfe>
Exposed plugin manager and update center to the REST API
<li class=rfe>
Enabled concurrent build support for matrix projects
</ul>
<h3><a name=v1.465>What's new in 1.465</a> (2012/05/21)</h3>
<ul class=image>
<li class=bug>
Artifact archiving from an ssh slave fails if symlinks are present
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13202">issue 13202</a>)
</ul>
<h3><a name=v1.464>What's new in 1.464</a> (2012/05/14)</h3>
<ul class=image>
<li class=bug>
Don't try to set cookies on cachable requests.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12585">issue 12585</a>)
<li class=bug>
Fixed a regression in 1.462 that introduced Java6 dependency.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13659">issue 13659</a>)
<li class=bug>
Fixed JDK auto-installer
<li class=bug>
missing search image on plugin manager.
</ul>
<h3><a name=v1.463>What's new in 1.463</a> (2012/05/07)</h3>
<ul class=image>
<li class=bug>
Fixed a bug in the Content-Range header handling.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13125">issue 13125</a>)
<li class=bug>
Ant's default exclusion was preventing plugins from archiving some files.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13165">issue 13165</a>)
<li class=bug>
Fixed NPE in PAM authentication if the user is in a group that doesn't exist anymore.
<li class=bug>
End up more gracefully if there's some problem when searching for user partipication in the build
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13564">issue 13564</a>)
<li class=rfe>
Improved the performance of the fingerprint persistence.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13154">issue 13154</a>)
<li class=rfe>
PAM authentication supports '@group' to force interpretation as a group instead of user.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13526">issue 13526</a>)
<li class=rfe>
Honor the <tt>Accept</tt> header in the <tt>job/name/build</tt> URL.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13546">issue 13546</a>)
<li class=rfe>
Added a DISCOVER permission to allow anonymous users to be presented the login screen
when accessing job URLs.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-8214">issue 8214</a>)
<li class='major rfe'>
Publishers can be now reordered by the user.
(<a href="https://groups.google.com/forum/?fromgroups#!topic/jenkinsci-dev/UQLvxQclyb4">discussion</a>)
</ul>
<h3><a name=v1.462>What's new in 1.462</a> (2012/04/30)</h3>
<ul class=image>
<li class=bug>
API token authentication was broken in 1.461
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13600">issue 13600</a>)
<li class=rfe>
Added the filter textbox to the update center selector.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13476">issue 13476</a>)
<li class=rfe>
Move "View as plain text" link on console output page from top right to the sidepanel.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13389">issue 13389</a>)
<li class=rfe>
Convert "Delete this build" buttons into links in the sidepanel.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13387">issue 13387</a>)
<li class=rfe>
Validate project naming regex immediately.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13524">issue 13524</a>)
</ul>
<h3><a name=v1.461>What's new in 1.461</a> (2012/04/23)</h3>
<ul class=image>
<li class=bug>
Flag -U is not used during the parsing step of a Maven Job
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-8663">issue 8663</a>)
<li class=bug>
Custom workspace validation not working.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13404">issue 13404</a>)
<li class=rfe>
allow j/k navigation for search results
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13105">issue 13105</a>)
</ul>
<h3><a name=v1.460>What's new in 1.460</a> (2012/04/14)</h3>
<ul class=image>
<li class=bug>
Fixed: tests with the same name are no longer counted correctly.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13214">issue 13214</a>)
<li class=rfe>
Added a tag to copy text into clipboard for plugins
<li class=rfe>
Removed ASM dependency to avoid class incompatibility trobules.
<li class=rfe>
Supported hash token in the crontab syntax to distribute workload and avoid spikes.
</ul>
<h3><a name=v1.459>What's new in 1.459</a> (2012/04/09)</h3>
<ul class=image>
<li class=bug>
CLI - I/O error in channel Chunked connection/Unexpected termination of the channel - still occuring in Jenkins 1.449.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12037">issue 12037</a>)
<li class=bug>
Quiet period is blocking other jobs in queue.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12994">issue 12994</a>)
<li class=bug>
Loading All Build History Fails.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13238">issue 13238</a>)
<li class=rfe>
Added the View.READ permission to control visibility of views, and updated the default implementation to hide empty views.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-3681">issue 3681</a>)
<li class=rfe>
Added new extension point for transient build actions.
(<a href="https://github.com/jenkinsci/jenkins/pull/421">pull 421</a>)
</ul>
<h3><a name=v1.458>What's new in 1.458</a> (2012/04/02)</h3>
<ul class=image>
<li class=bug>
Build Status page continues to show flashing "building" icons after build completion.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13217">issue 13217</a>)
<li class=bug>
New Breadcrumb bar covers search suggestions
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13195">issue 13195</a>)
<li class=bug>
Fixed a log rotation portability problem on RedHat RPM package.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-5784">issue 5784</a>)
<li class=bug>
Computer.getHostName() returns null when it is not.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13185">issue 13185</a>)
<li class=bug>
Fixed a socket file descriptor leak.
<li class=rfe>
Run <tt>$JENKINS_HOME/init.groovy.d/*.groovy</tt> as the init script if present
(<a href="https://wiki.jenkins-ci.org/display/JENKINS/Configuring+Jenkins+upon+start+up">feature</a>)
<li class=rfe>
Improved the page loading performance, especially on large latency network
<li class=bug>
Resolve dependency issue between 'maven-plugin' and 'config-file-provider' plugin. If you are using the 'config-file-provider' plugin, you have to upgrade to version 1.9.1!
</ul>
<h3><a name=v1.457>What's new in 1.457</a> (2012/03/26)</h3>
<ul class=image>
<li class=bug>
Fixed a thread leak in the embedded servlet container.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9882">issue 9882</a>)
<li class=bug>
Fixed a file handle leak in serving static content
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13097">issue 13097</a>)
<li class=bug>
Breadcrumb popup menu gives javascript error on Internet Explorer 8.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13082">issue 13082</a>)
<li class=bug>
Ajax on Update Center does not work in prototype 1.7
<li class=bug>
'View as plain text' in Console Output is hidden by the new breadcrums bar
<li class=bug>
Last modification date of files in a zip are not the original timestamps
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-13122">issue 13122</a>)
<li class=bug>
"Reload Configuration from Disk" loses labels for swarm-clients
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-8043">issue 8043</a>)
<li class="rfe">
Jenkins uses correct port in mDNS advertisement and shows up in Safari Bonjour bookmarks.
</ul>
<h3><a name=v1.456>What's new in 1.456</a> (2012/03/19)</h3>
<ul class=image>
<li class=bug>
After renaming a job, the redirect goes to a wrong view.
(<a href="https://github.com/jenkinsci/jenkins/pull/401">pull 401</a>)
<li class=bug>
<tt>BUILD_TAG</tt> wasn't unique for hierarchical project.
(<a href="https://github.com/jenkinsci/jenkins/pull/402">pull 402</a>)
<li class=bug>
Workspace archiving wasn't handling symlinks correctly.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9118">issue 9118</a>)
<li class=bug>
Fixed a bug in the auto-overwrite of bundled plugins on Windows.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12514">issue 12514</a>)
<li class=bug>
Fixed a temporary memory spike when dealing with rapidly growing large console output and interactive monitoring.
<li class=bug>
Fixed a file handle leak while serving static files.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12674">issue 12674</a>)
<li class=bug>
Fixed a bug in executor/queue filtering for matrix projects.
(<a href="https://github.com/jenkinsci/jenkins/pull/394">pull 394</a>)
<li class=bug>
Some of the context menu items have wrong links
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12945">issue 12945</a>)
<li class=rfe>
Removed entries that don't make sense from the context menu
<li class=rfe>
Enable automatic hyperlinking on failed test summary.
(<a href="https://github.com/jenkinsci/jenkins/pull/392">pull 392</a>)
<li class=rfe>
Performance improvement in JavaScript on modern browsers
(<a href="https://github.com/jenkinsci/jenkins/pull/276">pull 276</a>)
<li class=rfe>
Matrix project execution order is made pluggable.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12778">issue 12778</a>)
</ul>
<h3><a name=v1.455>What's new in 1.455</a> (2012/03/12)</h3>
<ul class=image>
<li class=bug>
Fixed a regression in 1.453 with IE9
(<a href="https://github.com/jenkinsci/jenkins/pull/397">pull 397</a>)
<li class=bug>
Fixed NPE in Groovy script execution via CLI (<a href="https://issues.jenkins-ci.org/browse/JENKINS-12302">issue 12302</a>)
<li class=bug>
Fixed bug where a queued build could start while the previous build was still in its post production state.
<li class=bug>
Improved the error retry logic of update center retrieval.
<li class=bug>
Update JavaMail to 1.4.4.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-1152">issue 1152</a>, <a href="https://issues.jenkins-ci.org/browse/JENKINS-3983">issue 3983</a>)
<li class=rfe>
Integrated prototype.js 1.7
(<a href="https://groups.google.com/forum/#!topic/jenkinsci-dev/rzHstHyK9Lo/discussion">discussion</a>)
<li class=rfe>
Supported programmatic retrieval/update of slave <tt>config.xml</tt>
<li class=rfe>
Breadcrumb now supports drop-down menu for faster navigation
(<a href="https://groups.google.com/forum/#!topic/jenkinsci-dev/j9uCKnQB-Xw/discussion">discussion</a>)
<li class=rfe>
Configuration pages show a navigation drop-down menu in the breadcrumb bar to jump to sections
<li class=rfe>
Hyperlinks to model objects also supports drop-down menu for faster navigation.
(<a href="https://groups.google.com/forum/#!topic/jenkinsci-dev/j9uCKnQB-Xw/discussion">discussion</a>)
<li class=rfe>
New ExtensionPoint to enforce naming conventions for projects/jobs and two implementations: Default (no restriction), Pattern (regex).
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12928">issue 12928</a>)
<li class=rfe>
<tt>java -jar jenkins.war</tt> now uses the HTTP only session cookie that's more robust against XSS vulnerability.
</ul>
<h3><a name=v1.454>What's new in 1.454</a> (2012/03/05)</h3>
<ul class=image>
<li class=bug>
Adjusted the HTML sanitization rules as they were too restrictive.
</ul>
<h3><a name=v1.453>What's new in 1.453</a> (2012/03/05)</h3>
<ul class=image>
<li class='major bug'>
Fixed a XSS vulnerability.
(SECURITY-26)
<li class='major bug'>
Fixed a directory traversal vulnerability.
(SECURITY-23)
<li class=bug>
Fixed a file descriptor leak on Windows
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9882">issue 9882</a>)
<li class=bug>
'Age' column on 'Test Result' tab may show incorrect value when a test suite is divided into multiple junit files.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12457">issue 12457</a>)
<li class=rfe>
System Message - Doesnt appear on any view other than the default view.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-7733">issue 7733</a>)
<li class="rfe">
Added UI component to show notification bar at the top of the page
<li class="rfe">
Users can configure search to be case insensitive.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-850">issue 850</a>)
<li class="rfe">
Inline help now reports the plugin that contributes the said feature.
<li class="rfe">
Various configuration pages are getting the "apply" button.
<li class="rfe">
Avoid post-build depoy to Maven repository in release build
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12397">issue 12397</a>)
<li class=rfe>
Jenkins no longer failes to start if plugins have cyclic dependencies, but deactivates these plugins.
<li class=rfe>
Adding the video/webm mime type for files with extension .webm.
<li class=rfe>
update to guava 11.0.1
</ul>
<h3><a name=v1.452>What's new in 1.452</a> (2012/02/27)</h3>
<ul class=image>
<li class=bug>
Infinite loop or invalid next execution with crontab DoW=7
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12357">issue 12357</a>)
<li class=bug>
Broken links to test results with '#' or '?' in the name
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10458">issue 10458</a>)
<li class="bug">
Fix launching browser too early to http://localhost:8080 in OS X
installer.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12622">issue 12622</a>)
<li class="bug">
Bundled slf4j binding to avoid classloader contraint violation in JBoss
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12334">issue 12334</a>,
<a href="https://issues.jenkins-ci.org/browse/JENKINS-12446">issue 12446</a>,
<a href="https://issues.jenkins-ci.org/browse/JENKINS-12650">issue 12650</a>)
<li class="bug">
Fixed a UI problem with the "save" button that sticks to the bottom.
<li class="rfe">
Misc performance improvements
(<a href="https://github.com/jenkinsci/jenkins/pull/342">pull 342</a>)
</ul>
<h3><a name=v1.451>What's new in 1.451</a> (2012/02/13)</h3>
<ul class=image>
<li class=bug>
The <tt>-c</tt> option in the <tt>build</tt> command wasn't working for some SCM.
<li class=bug>
Fix multi submit with shortcut key in script console.
(<a href="https://github.com/jenkinsci/jenkins/pull/364">pull 364</a>)
<li class=rfe>
job rows in view should have id= for easy access
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12490">issue 12518</a>)
<li class=rfe>
M2 job: create links to codehaus maven plugins and their goals
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12529">issue 12529</a>)
<li class=rfe>
Matrix job now allows delete whole matrix, including sub-jobs.
<li class=bug>
Fixed a bug in LDAP default root DN inference.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-8152">issue 8152</a>)
<li class=bug>
<tt>ComputerListener.onOffline</tt> was not called when the client was terminated abruptly.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12680">issue 12680</a>)
<li class=ref>
CLI now supports also encrypted key file
<li class=rfe>
Recognize test results from eviware:maven-soapui-plugin.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11353">issue 11353</a>)
</ul>
<h3><a name=v1.450>What's new in 1.450</a> (2012/01/30)</h3>
<ul class=image>
<li class=bug>
<tt>install-plugin</tt> CLI command fails to put a file in the right location when installing from URL.
<li class=bug>
Fixed a bug where long post-production processing in matrix jobs can cause incorrect abortion.
<li class=bug>
month should not be 0.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12356">issue 12356</a>)
<li class=bug>
"Create a new slave" page didn't auto-complete for copying.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12490">issue 12490</a>)
<li class=bug>
Fixed a bug in the auto-overwrite of bundled plugins.
<li class=rfe>
Upgrade to maven artifacts 3.0.4
<li class=rfe>
Running build via CLI now records actual user who started the build
</ul>
<h3><a name=v1.449>What's new in 1.449</a> (2012/01/23)</h3>
<ul class=image>
<li class=bug>
Build fails on "Deploy artifacts to Maven repository" due to trying to upload parent POM twice for release artifacts.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11248">issue 11248</a>)
<li class=bug>
Fixed an occasional "URI must start with a slash" error when the anonymous user doesn't have the read access.
<li class="rfe">
OS X installer can optionally create a new user "jenkins" and use
it. This user has a writable home directory, making it possible to set up ssh for Jenkins.
<li class="rfe">
No workspace available message includes wiped out workspace as a potential cause.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10432">issue 10432</a>)
<li class="bug">
Stop users being created in memory if they failed to provide all the required registration information correctly.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-7096">issue 7096</a>)
<li class=bug>
<tt>java -jar jenkins.war</tt> finally detects invalid command line options and report that as an error.
<li class=rfe>
When run in terminal, warning/error messages are colored.
</ul>
<h3><a name=v1.448>What's new in 1.448</a> (2012/01/17)</h3>
<ul class=image>
<li class=bug>
Location of the temporary file "Maven Global Settings" incompatible with release:prepare
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12315">issue 12315</a>)
<li class=bug>
Failure to check the username/groupname in the matrix security shouldn't hide the user name
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9519">issue 9519</a>)
<li class=bug>
Fixed a hash DoS vulnerability.
(<a href="http://www.ocert.org/advisories/ocert-2011-003.html">SECURITY-22</a>)
<li class=bug>
Fixed "Deploy artifacts to Maven repository" as a promotion action.
Requires promoted-builds plugin 2.5+.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11766">issue 11766</a>)
<li class="bug">
Fixed a bug in the symlink creation code on BSD platforms.
<a href="https://issues.jenkins-ci.org/browse/JENKINS-12119">issue 12119</a>
<li class="bug">
Default e-mail suffix should be used to complete the domain name portion of the recipients list.
(<a href="https://github.com/jenkinsci/jenkins/pull/324">pull #324</a>)
<li class="bug">
Closure execution after <tt>CLI.upgrade()</tt> should carry over the transport credential.
<a href="https://issues.jenkins-ci.org/browse/JENKINS-10890">issue 10890</a>
<li class="bug">
Incorrect path delimiter used in ZipArchiver when creating archive on Windows.
<a href="https://issues.jenkins-ci.org/browse/JENKINS-9942">issue 9942</a>
<li class="rfe">
<tt>.jpi</tt> is now supported as well as <tt>.hpi</tt> as a plugin extension.
(<a href="https://github.com/jenkinsci/jenkins/pull/331">pull #331</a>)
<li class="rfe">
Windows service slave launcher now supports more generalized user account option.
(<a href="https://github.com/jenkinsci/jenkins/pull/328">pull #328</a>)
<li class="rfe">
OSX installer now checks for the existence of JVM and open the browser in the end.
(<a href="https://github.com/jenkinsci/jenkins/pull/329">pull #329</a>)
<li class="rfe">
Added the Reploy-To header support.
(<a href="https://github.com/jenkinsci/jenkins/pull/306">pull #306</a>)
<li class="rfe">
The location of Maven local repository is now pluggable, and supported per-executor configuration out of the box.
(<a href="https://github.com/jenkinsci/jenkins/pull/293">pull #293</a>)
<li class="rfe">
Jobs now support display name separate from its unique name
<a href="https://issues.jenkins-ci.org/browse/JENKINS-11762">issue 11762</a>
</ul>
<h3><a name=v1.447>What's new in 1.447</a> (2012/01/09)</h3>
<ul class=image>
<li class=bug>
Fixed a hash DoS vulnerability.
(<a href="http://www.ocert.org/advisories/ocert-2011-003.html">SECURITY-22</a>)
<li class=bug>
NullPointerException in maven-plugin: Maven3Builder / ExecutedMojo (1.445)
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12259">issue 12259</a>)
<li class='rfe'>
Reduced overhead of maven jobs.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11883">issue 11883</a>)
<li class=bug>
Link to user profile from console output should go to the user ID, not the user name
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12279">issue 12279</a>)
</ul>
<h3><a name=v1.446>What's new in 1.446</a> (2012/01/02)</h3>
<ul class=image>
<li class='major rfe'>
Jenkins now acts as an SSH daemon
(<a href="https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+SSH">doc</a>)
<li class='rfe'>
Added hyperlinks to console output
(<a href="https://github.com/jenkinsci/jenkins/pull/334">pull #334</a>)
<li class='rfe'>
Add option to disable mailnotifications for each failed maven module.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-5695">issue 5695</a>)
<li class='rfe'>
Sort workspace file list based on request locale.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12139">issue 12139</a>)
</ul>
<h3><a name=v1.445>What's new in 1.445</a> (2011/12/26)</h3>
<ul class=image>
<li class=rfe>
CLI now supports using HTTP proxy for tunneling its TCP/IP connection.
<li class=rfe>
CLI now supports routing TCP/IP requests without going through HTTP reverse proxy.
<li class=rfe>
If reload fails, don't let the partially loaded state running, or risk the user overwriting the configs they have.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11204">issue 11204</a>)
<li class=rfe>
Update center UI improvement. "Install" button is now always visisble.
<li class=rfe>
Configuration UI improvement. "Save" button is always visible.
<li class=bug>
Fixed a bug where a large output from Maven can cause module log output to go out of sync with module build log files.
<li class=bug>
Confusing error message when the --username option is used on the system with the .ssh directory.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11873">issue 11873</a>)
<li class=bug>
Fixed prematurely re-drawn matrix test result graph.
</ul>
<h3><a name=v1.444>What's new in 1.444</a> (2011/12/19)</h3>
<ul class=image>
<li class=rfe>
Make the matrix configuration table looks like the rest of Jenkins tables.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10251">issue 10251</a>)
<li class=rfe>
Improved Italian translation.
<li class=bug>
Fixed the incorrect table border cropping
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12061">issue 12061</a>)
</ul>
<h3><a name=v1.443>What's new in 1.443</a> (2011/12/12)</h3>
<ul class=image>
<li class=bug>
Wagon 2.0 upgrade broke the Redeploy task for webdav repositories
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11318">issue 11318</a>)
<li class=bug>
Self-restart wasn't working with 32bit x86 Solaris
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-6629">issue 6629</a>)
<li class=bug>
Fixed IPv6 handling in Winstone
(<a href="https://github.com/jenkinsci/winstone/pull/2">pull request #2</a>)
<li class=bug>
OS X installer can fail to set the file permissions correctly.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11714">issue 11714</a>)
<li class=bug>
Build history time line wasn't working for IE8.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-7403">issue 7403</a>)
<li class=bug>
Build history time line should be resizable
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11834">issue 11834</a>)
<li class=bug>
Fixed a bug in Windows registry enumeration with large data.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11767">issue 11767</a>)
<li class=bug>
Debian/Ubuntu init script does not wait long enough during stop operation
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11744">issue 11744</a>)
<li class=bug>
Jenkins takes up too much space in /var/run
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11366">issue 11366</a>)
<li class=bug>
Fixed a <tt>NoSuchMethodError</tt> on JBoss 5.1 EAP
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11960">issue 11960</a>)
<li class=bug>
Use $JENKINS_USER in Debian postinst script.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-5771">issue 5771</a>)
<li class=bug>
Fixed a bug where Jenkins failed to show localized text for Hebrew, Indonesian, and Yedish.
<li class=bug>
Canonical name of Maven artifacts may end with "-" if classifier is empty.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11819">issue 11819</a>)
<li class=rfe>
Proxy configuration supported "no proxy host" setting to allow some hosts to bypass proxy.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-8710">issue 8710</a>)
<li class=rfe>
Added/improved localization to Arabic, Bulgarian, Catalan, Czech, Danish, German, Greek, Esperanto, Spanish, Estonian, Basque, Finnish, French, Hebrew, Hindi, Hungarian, Indonesian, Icelandic, Italian, Kannada, Korean, Lithuanian, Latvian, Marathi, Norwegian, Dutch, Polish, Portugeese, Romanian, Russian, Slovak, Slovenian, Serbian, Swedish, Telgu, Turkish, Ukrainian, and Chinese. Thanks everyone!
</ul>
<h3><a name=v1.442>What's new in 1.442</a> (2011/12/05)</h3>
<ul class=image>
<li class=bug>
Workspaces mixed when launching multiple concurrent builds.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11825">issue 11825</a>)
<li class=bug>
Fixed ConcurrentModificationException in parallel Maven 3 builds.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11256">issue 11256</a>)
<li class=bug>
Copy artifacts fails on windows slaves due to failing to set a timestamp.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11073">issue 11073</a>)
<li class=rfe>
Upgrade aether version to 1.13 and sisu to 2.3.0 .
<li class=rfe>
add new action type to enable plugins to intercept the maven 'goals and options'
(<a href="https://github.com/jenkinsci/jenkins/pull/316">pull #316</a>)
<li class=rfe>
Upgrade to Maven Wagon 2.1 which supports preemptive authz for dav deployment.
<li class='major rfe'>
Plugins can be now installed without taking Jenkins offline.
</ul>
<h3><a name=v1.441>What's new in 1.441</a> (2011/11/27)</h3>
<ul class=image>
<li class=bug>
If running as a daemon, don't daemonize one more time during restart.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11742">issue 11742</a>)
<li class=bug>
Fixed NPE in Subversion polling of Maven jobs.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11592">issue 11592</a>)
<li class=rfe>
CLI jar now has the version number in the manifest as well as the "-version" option.
</ul>
<h3><a name=v1.440>What's new in 1.440</a> (2011/11/17)</h3>
<ul class=image>
<li class=bug>
Sorting "diff" in test result requires 2 clicks
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-5460">issue 5460</a>)
<li class=bug>
java.io.IOException: Unexpected termination of the channel - SEVERE: I/O error in channel Chunked connection when using jenkins-cli.jar (works on older Hudson version)
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11130">issue 11130</a>)
<li class=bug>
Debian init script now returns the proper exit code from the 'status' command.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11306">issue 11306</a>)
<li class=bug>
Fixed a bug in Mac OS X ProcessKiller argument parsing.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9634">issue 9634</a>)
<li class=bug>
Dependency wasn't recalculated with CLI "update-job" command.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11636">issue 11636</a>)
<li class=rfe>
Sortable table wasn't "stable" when there are same values in different rows
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11551">issue 11551</a>)
<li class=rfe>
Managed windows slaves can be now run as a specific user account
(<a href="https://github.com/jenkinsci/jenkins/pull/289">pull #289</a>)
<li class=rfe>
Description field now has the preview button to test it inline.
(<a href="https://github.com/jenkinsci/jenkins/pull/243">pull #243</a>)
<li class=rfe>
Record fingerprints of parent POMs - only working with Maven 2.2 or newer
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-8383">issue 8383</a>)
<li class=rfe>
Maven mojo records can be now sorted
</ul>
<h3><a name=v1.439>What's new in 1.439</a> (2011/11/14)</h3>
<ul class=image>
<li class=bug>
Fixed random OutOfMemoryError with console annotations
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9349">issue 9349</a>)
<li class=bug>
Fix small UI issue on build queue.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11637">issue 11637</a>)
<li class=rfe>
Textbox for numbers should be type=number
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11513">issue 11513</a>)
<li class=rfe>
Added an extension point to sort matrix configuration builds when executing them sequentially
(<a href="https://github.com/jenkinsci/jenkins/pull/301">pull #301</a>)
</ul>
<h3><a name=v1.438>What's new in 1.438</a> (2011/11/07)</h3>
<ul class=image>
<li class='major bug'>
Thanks to Luca De Fulgentis, fixed XSS vulnerability with the built-in servlet container.
(SECURITY-17)
<li class=bug>
Repeated ids, expandTextArea() and multiple "Invoke Ant" build steps.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10989">issue 10989</a>)
<li class=bug>
Improve the resilience to the missing 'nextBuildNumber' file.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11563">issue 11563</a>)
<li class=bug>
NPE when running Maven 3 jobs with -T.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11458">issue 11458</a>)
<li class=rfe>
Support mailto: links in actions.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-7725">issue 7725</a>)
<li class=rfe>
Rewrote the JDK installer to remove problematic HtmlUnit dependencies.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11420">issue 11420</a>)
</ul>
<h3><a name=v1.437>What's new in 1.437</a> (2011/10/31)</h3>
<ul class=image>
<li class=rfe>
Added MIME headers with job name and build result to notification emails.
<li class=bug>
"Changes" in Build Summary broken in IE standard mode since 1.434
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11383">issue 11383</a>)
<li class=bug>
GET request to configSubmit wipes some configuration
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11397">issue 11397</a>, <a href="https://issues.jenkins-ci.org/browse/JENKINS-7847">issue 7847</a>)
<li class=bug>
Jenkins logo headless when server is starting.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11444">issue 11444</a>)
<li class=rfe>
Allow update center CA certificates to be placed in $JENKINS_HOME/update-center-rootCAs
</ul>
<h3><a name=v1.436>What's new in 1.436</a> (2011/10/23)</h3>
<ul class=image>
<li class=bug>
Fixed a plugin boot problem that causes Jenkins to startup gracefully when some optional plugin dependencies aren't met (such as ivy to nant)
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11279">issue 11279</a>)
<li class=bug>
Avoid overwriting the repository definitions.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11229">issue 11229</a>)
<li class=bug>
"Tailing" the console of an active job broken in 1.434
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11307">issue 11307</a>)
<li class=bug>
Fingerprint's age should be sorted by its elapsed time
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9210">issue 9210</a>)
<li class=rfe>
Improved the classloading performance
<li class=rfe>
Expose original file name as a String parameter on for FileParameters
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11326">issue 11326</a>)
<li class=rfe>
Added hyperlinks to build trigger console messages.
(<a href="https://github.com/jenkinsci/jenkins/pull/291">pull #291</a>)
</ul>
<h3><a name=v1.435>What's new in 1.435</a> (2011/10/17)</h3>
<ul class=image>
<li class=bug>
Fixed the XML encoding sniffing problem in environments that have old JAXP
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-4525">issue 4525</a>)
<li class=bug>
Suggestions for search do not work since 1.433
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11208">issue 11208</a>)
<li class=rfe>
"System Admin E-mail Address" is confusing label for notification mail "from"
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11209">issue 11209</a>)
</ul>
<h3><a name=v1.434>What's new in 1.434</a> (2011/10/09)</h3>
<ul class=image>
<li class=bug>
Add support for android-maven-plugin integration test reports and fix an error with 2.x maven-android-plugin
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10913">issue 10913</a>)
<li class=bug>
HTTPS on port 80 makes Jenkins infer his URI incorrectly
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11151">issue 11151</a>)
<li class=bug>
Resizable textarea handle does not work if CodeMirror is enabled
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11132">issue 11132</a>)
<li class=bug>
"Alternate settings file" build parameter is getting cleaned after job execution
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10955">issue 10955</a>)
<li class=rfe>
upgrade Apache Maven Wagon to 2.0.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11164">issue 11164</a>)
<li class=rfe>
Made build SCM change set a weak reference to reduce heap usage
<li class=rfe>
Added a way to show avatar images on user pages.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-7494">issue 7494</a>)
</ul>
<h3><a name=v1.433>What's new in 1.433</a> (2011/10/01)</h3>
<ul class=image>
<li class=bug>
Port on HTTP Proxy Configure accepts characters except the digits
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11068">issue 11068</a>)
<li class=bug>
Broken link in help text of HTTP Proxy Configuration
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11051">issue 11051</a>)
<li class=bug>
Broken help button for Log Recorders
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11052">issue 11052</a>)
<li class=bug>
Fatal exception apparently within Xalan code on AIX
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10851">issue 10851</a>)
<li class=bug>
NOT_BUILT & other build status are reported inconsistently
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11013">issue 11013</a>)
<li class=bug>
Canceling a parent multi-config build produces non-deserializable build.xml
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10903">issue 10903</a>)
<li class=bug>
Label of the master should be editable if cloud is set up.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11100">issue 11100</a>)
<li class=rfe>
Improved the error diagnosis by ping-driven connection termination.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11097">issue 11097</a>)
<li class=rfe>
YUI updated to 2.9
<li class=rfe>
Concurrent build is no longer beta
<li class=rfe>
Permission check added when viewing configuration of computer set.
<li class='major rfe'>
Maven project now supports arbitrary build steps
(<a href="https://github.com/jenkinsci/jenkins/pull/233">pull #233</a>)
<li class='major rfe'>
Jenkins internally started using Guice for loading extensions
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-8751">issue 8751</a>)
</ul>
<h3><a name=v1.432>What's new in 1.432</a> (2011/09/25)</h3>
<ul class=image>
<li class=bug>
JDK auto-installation does not respect proxy settings
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10634">issue 10634</a>)
<li class=bug>
Tools download does not respect proxy settings
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-5271">issue 5271</a>)
<li class=bug>
Recover from a corrupted JSON update data file automatically
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-7034">issue 7034</a>)
<li class=bug>
Fixed the reported system reboot problem on installing JDK on Windows
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-7288">issue 7288</a>)
<li class=bug>
Fixed the OutOfMemoryError in trying to download/install JDK
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10689">issue 10689</a>)
<li class=rfe>
Enabled shortcut key on script console
<li class=rfe>
Remember sortable table state into local storage
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-203">issue 203</a>)
</ul>
<h3><a name=v1.431>What's new in 1.431</a> (2011/09/19)</h3>
<ul class=image>
<li class=bug>
Jenkins unable to start if the /tmp/jna catalogue exists and is owned by a different user
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10774">issue 10774</a>)
<li class=rfe>
Display the file size in the artifact list page
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-7798">issue 7798</a>)
<li class=rfe>
Fixed a file permission handling in the unzip code.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9577">issue 9577</a>)
<li class=rfe>
Add "un/check all" buttons on matrix-based security.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-7565">issue 7565</a>)
</ul>
<h3><a name=v1.430>What's new in 1.430</a> (2011/09/11)</h3>
<ul class=image>
<li class=bug>
Added way to mark all plugins to be updated at once
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10443">issue 10443</a>)
<li class=bug>
Fixed a bug in the UI JavaScript behavior with IE
<li class=bug>
Matrix project pages don't show latest test results.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10864">issue 10864</a>)
<li class=rfe>
Bundling <a href="https://wiki.jenkins-ci.org/display/JENKINS/Translation+Assistance+Plugin">the translation assistance plugin</a> in the hope of increasing the contribution.
<li class=rfe>
Introduce a fine-grained permission to control who is allowed to run the Groovy Console.
<li class=rfe>
Maven jobs should include fingerprints of their parent POMs
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-8383">issue 8383</a>)
<li class=rfe>
Add support for maven-android-plugin integration test reports
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10913">issue 10913</a>)
</ul>
<h3><a name=v1.429>What's new in 1.429</a> (2011/09/06)</h3>
<ul class=image>
<li class=bug>
maven submodule build fails doing mkdir on master.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10831">issue 10831</a>)
<li class=bug>
CLI clients should be able to see plugin classes
<a href="http://jenkins.361315.n4.nabble.com/channel-example-and-plugin-classes-gives-ClassNotFoundException-tp3756092p3756092.html">report</a>
<li class=bug>
Fixed NPE in running <tt>assembly:assembly</tt> with Maven3
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-8837">issue 8837</a>)
<li class=bug>
Fixed a bug in one of the file copy operations that caused the copy-artifact plugin to fail to preserve the timestamp.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10805">issue 10805</a>)
<li class=bug>
Jenkins didn't start on IBM JDK.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10810">issue 10810</a>)
<li class=bug>
Fixed a possible NPE during the boot sequence
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10799">issue 10799</a>)
<li class=rfe>
stdin/stdout based remote slaves, such as ones launched via SSH or script, now does a better redirect to avoid interference with JVM output to stdout.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-8856">issue 8856</a>)
<li class=bug>
Project names in fingerprint records weren't updated when a project is renamed.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10330">issue 10330</a>)
<li class=rfe>
External job submision now supports <displayName> and <description> elements
(<a href="https://github.com/jenkinsci/jenkins/pull/215">pull 215</a>)
</ul>
<h3><a name=v1.428>What's new in 1.428</a> (2011/08/29)</h3>