Newer
Older
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
Under some circumstances, Hudson can incorrectly delete the temporary directory itself.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5642">issue 5642</a>)
<li class=bug>
Newlines in MAVEN_OPTS environment variable can cause problems in other contexts.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5651">issue 5651</a>)
<li class=rfe>
Improved the form validation mechanism to support multiple controls.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5610">issue 5610</a>)
<li class=rfe>
Added message to slave log when it has successfully come online.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5630">issue 5630</a>)
</ul>
<h3><a name=v1.346>What's new in 1.346</a> (2010/02/12)</h3>
<ul class=image>
<li class=bug>
Maven modules should not be buildable when the parent project is disabled.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-1375">issue 1375</a>)
<li class=bug>
Fixed the broken quiet period implementation when polling interval is shorter than
the quiet period. (Changes in SCM impls are needed for this to take effect.)
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2180">issue 2180</a>)
<li class=bug>
Escape username in URLs in case it contains special characters such as "#".
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2610">issue 2610</a>)
<li class=bug>
Fix sidepanel link for People to be visible and show view-specific info when appropriate.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5443">issue 5443</a>)
<li class=bug>
Improved HTML rendering, not using closing tags that do not exist in HTML.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5458">issue 5458</a>)
<li class=bug>
Show better error message for missing view type selection when creating a view.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5469">issue 5469</a>)
<li class=bug>
Hudson wasn't properly streaming a large external build submission,
which can result in OOME and unresponsiveness.
<li class=rfe>
Use fixed-width font in text area for shell/batch build steps.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5471">issue 5471</a>)
<li class=rfe>
Use user selected icon size on People page.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5447">issue 5447</a>)
<li class=rfe>
Speed/footprint improvement in the HTML rendering.
</ul>
<h3><a name=v1.345>What's new in 1.345</a> (2010/02/08)</h3>
<ul class=image>
<li class='major bug'>
Update center retrieval, "build now" link, and real-time console update was broken in 1.344.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5536">issue 5536</a>)
<li class=bug>
Fixed the backward incompatibility introduced in HUDSON-5391 fix in 1.344.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5391">issue 5391</a>)
</ul>
<h3><a name=v1.344>What's new in 1.344</a> (2010/02/05)</h3>
<ul class=image>
<li class=bug>
Removed the forced upper casing in parameterized builds.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5391">issue 5391</a>)
<li class=bug>
Password parameter on the disk should be encrypted.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5420">issue 5420</a>)
<li class=bug>
Duplicate entries on Upstream/Downstream project with "Build modules in parallel".
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5293">issue 5293</a>)
<li class=bug>
"Projects tied on" should be "Projects tied to".
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5451">issue 5451</a>)
<li class=bug>
Fixed the bug that prevents update center metadata retrieval in Jetty.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5210">issue 5210</a>)
<li class=rfe>
Show which plugins have already been upgraded in Plugin Manager.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2313">issue 2313</a>)
<li class=rfe>
Show Hudson upgrade status on manage page instead of offering same upgrade again.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3055">issue 3055</a>)
<li class=rfe>
Make badges in build history line up.
(<a href="http://n4.nabble.com/Align-lock-sign-of-keep-build-forever-td1016427.html">report</a>)
</ul>
<h3><a name=v1.343>What's new in 1.343</a> (2010/01/29)</h3>
<ul class=image>
<li class=bug>
Don't report a computer as idle if it running the parent job for a matrix project.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5049">issue 5049</a>)
<li class=bug>
Improve error message for a name conflict when renaming a job.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-1916">issue 1916</a>)
<li class=bug>
Job description set via the remote API was not saved.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5351">issue 5351</a>)
<li class=bug>
Work around a JVM bug on Windows that causes the "Access denied" error
while creating a temp file.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5313">issue 5313</a>)
<li class=bug>
Fixed a NPE in the update center with the container authentication mode.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5382">issue 5382</a>)
<li class=bug>
Global MAVEN_OPTS for Maven projects wasn't getting loaded properly for configuration.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5405">issue 5405</a>)
<li class=bug>
Fix for parameterized project with choice parameter value that has < or > character.
(<a href="http://n4.nabble.com/Fwd-IllegalArgumentException-when-use-parametrised-build-with-choice-parametr-td1311451.html#a1311451">report</a>)
<li class=bug>
Build queue was showing some of the items in the wrong order — it should show new ones first and
old ones later.
<li class=rfe>
Move form to adjust logging levels to its own page and include table of configured levels.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2210">issue 2210</a>)
<li class=rfe>
Allow the administrator to control the host names via a system property "host.name" per slave,
in case auto-detection fails.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5373">issue 5373</a>)
<li class=rfe>
Introduced a new extension point for test result parsers.
(<a href="http://n4.nabble.com/Review-requested-Test-Result-Refactoring-tp978100p978100.html">discussion</a>)
<li class=rfe>
Data loading is made more robust in the face of linkage failures.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5383">issue 5383</a>)
<li class=rfe>
Auto-detect if Hudson is run in Solaris <a href="http://www.sun.com/bigadmin/content/selfheal/smf-quickstart.jsp">SMF</a>
and provide restart capability.
(<a href="http://n4.nabble.com/Self-restart-not-available-when-running-as-Solaris-SMF-tp1289605p1289605.html">report</a>)
<li class=rfe>
Formalized an extension point to control priority among builds in the queue.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-833">issue 833</a>)
</ul>
<h3><a name=v1.342>What's new in 1.342</a> (2010/01/22)</h3>
<ul class=image>
<li class=bug>
Commands run on slaves (such as SCM operations) were not printed to the log
the way they would be when run on master.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5296">issue 5296</a>)
<li class=bug>
Downstream jobs could fail to trigger when using per-project read permissions.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5265">issue 5265</a>)
<li class=bug>
Update lastStable/lastSuccessful symlinks on filesystem later in build process to avoid
incorrectly updating links when build fails in post-build actions, and links briefly
pointing to a build that is not yet complete.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2543">issue 2543</a>)
<li class=bug>
Debian package no longer changes the permissions and owner of the jobs and .ssh directory.
This is to improve upgrade speed and so that ssh works properly after upgrading.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4047">issue 4047</a> and
<a href="http://issues.hudson-ci.org/browse/HUDSON-5112">issue 5112</a>)
<li class=bug>
Automatic tool installation wasn't honoring proxy setting.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5271">issue 5271</a>)
<li class=bug>
Fixed a bug that induces a NPE during list view column construction.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5061">issue 5061</a>)
<li class=bug>
Fixed a bug that can cause Hudson to fail to encode non-ASCII characters in URL.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5155">issue 5155</a>)
<li class=bug>
Added "process-test-classes" phase to Maven intercepter.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2226">issue 2226</a>)
<li class=bug>
Fixed a regression in the remote API in 1.341.
(<a href="http://n4.nabble.com/GZIP-encoded-response-only-for-css-js-resources-tp1010358p1010358.html">report</a>)
<li class=rfe>
Improved error diagnostics when failing to auto install Maven/Ant.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5272">issue 5272</a>)
<li class=rfe>
Infer the default e-mail address more smartly with user IDs like "DOMAIN\user" (often seen in Windows)
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5164">issue 5164</a>)
<li class=rfe>
The hudson.model.Run.ArtifactList.treeCutoff property should not limit the number
of artifacts shown by the API.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5247">issue 5247</a>)
<li class=rfe>
Spanish translation made a great progress.
</ul>
<h3><a name=v1.341>What's new in 1.341</a> (2010/01/15)</h3>
<ul class=image>
<li class=bug>
Completed fix started in 1.325 for updating bundled plugins, now working when security is enabled.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3662">issue 3662</a>)
<li class=bug>
TemporarySpaceMonitor and DiskSpaceMonitor fail to instantiate on fresh systems.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5162">issue 5162</a>)
<li class=bug>
/tmp space monitoring didn't work if /tmp is filled up completely.
<li class=rfe>
Plugins can now control how builds are triggered when they declare downstream jobs.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5236">issue 5236</a>)
<li class=rfe>
Hudson now detects a cyclic dependencies among plugins and report the error gracefully.
<li class=rfe>
Extension points can now contribute multiple actions.
<li class=rfe>
Responses to remote API calls now honor the "Accept-Encoding" header.
(<a href="http://n4.nabble.com/GZIP-encoded-response-only-for-css-js-resources-tp1010358p1010358.html">report</a>)
<li class=rfe>
Link to project changes summary instead of this build's changes for "still unstable" email.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3283">issue 3283</a>)
<li class=rfe>
SCM retry count and "Block build when upstream project is building" is now available on matrix projects.
(<a href="http://n4.nabble.com/Advanced-configuration-in-matrix-projects-td1011215.html#a1011215">report</a>)
</ul>
<h3><a name=v1.340>What's new in 1.340</a> (2010/01/11)</h3>
<ul class=image>
<li class=bug>
Non ASCII chars get mangled when a new user is created.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2026">issue 2026</a>)
<li class=bug>
Fixed garbled mail text when default encoding is not UTF-8.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-1811">issue 1811</a>)
<li class=bug>
Fixed a bug in the log rotation setting of RPM packages.
(<a href="http://n4.nabble.com/Hudson-logrotate-for-RPM-incorrect-tp999444p999444.html">report</a>)
<li class=rfe>
Added a new CLI command to obtain list of changes by specifying builds.
<li class=rfe>
Improved memory/swap monitoring on Solaris systems that doesn't have the 'top' command.
(<a href="http://n4.nabble.com/Version-1-329-Java-Error-2-tp387349p387349.html">report</a>)
<li class=rfe>
User IDs in Hudson are now case preserving but case insensitive.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4354">issue 4354</a>)
<li class=rfe>
CVS support is separated into a plugin, although it's still bundled by default for compatibility.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3101">issue 3101</a>)
</ul>
<h3><a name=v1.339>What's new in 1.339</a> (2009/12/24)</h3>
<ul class=image>
<li class=bug>
<tt>slave.jar</tt> incorrectly shipped with a version number indicating a private build.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5138">issue 5138</a>)
<li class=bug>
Global MAVEN_OPTS weren't saving due to TopLevelItemDescriptors not being configured in global configuration.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5142">issue 5142</a>)
<li class=bug>
Make maven project more resilient to exceptions from plugins.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3279">issue 3279</a>)
<li class=rfe>
Add the ability to configure low-disk space thresholds.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2552">issue 2552</a>)
<li class=rfe>
Allow BuildWrapper tearDown code to detect when the build has failed.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2485">issue 2485</a>)
<li class=rfe>
Add help regarding "Auto" repository browser selection and add support
for this in Subversion plugin.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2082">issue 2082</a>)
<li class=rfe>
Introduced a mechanism so that writing XSS-free code is easier.
(<a href="http://wiki.hudson-ci.org/display/HUDSON/Jelly+and+XSS+prevention">discussion</a>)
</ul>
<h3><a name=v1.338>What's new in 1.338</a> (2009/12/18)</h3>
<ul class=image>
<li class=rfe>
Maven projects will now use per-project MAVEN_OPTS if defined first, then global MAVEN_OPTS if defined, and finally
as fallback, MAVEN_OPTS environment variable on executor.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2932">issue 2932</a>)
<li class=rfe>
Expose upstream cause details via remote API.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5074">issue 5074</a>)
</ul>
<h3><a name=v1.337>What's new in 1.337</a> (2009/12/11)</h3>
<ul class=image>
<li class=bug>
Matrix parent build shouldn't consume an executor.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-936">issue 936</a>)
<li class=bug>
Exceptions in one publisher shouldn't block all other publishers from running.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5023">issue 5023</a>)
<li class=bug>
Fixed <tt>OutOfMemoryError</tt> in JNLP slaves that are running for too long.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3406">issue 3406</a>)
<li class=bug>
Auto installer for Maven couldn't be configured after the fact.
<li class=bug>
Fixed a bug that the form field validation couldn't handle <select> box.
(<a href="http://n4.nabble.com/f-validateButton-of-a-select-field-s-value-tp948691p948691.html">report</a>)
<li class=bug>
Fixed a possible "XYZ is missing its descriptor" storm.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5067">issue 5067</a>)
<li class=rfe>
Group available plugins in Plugin Manager by category.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-1836">issue 1836</a>)
<li class=rfe>
Add sorting and link to directory browser for artifact list and tree display.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4976">issue 4976</a>)
<li class=rfe>
Make links in build history for a view stay under that view.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5021">issue 5021</a>)
<li class=rfe>
Automatically install dependent plugins.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4983">issue 4983</a>)
<li class='major rfe'>
Implemented a proper serialization of multi-classloader object graph.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-5048">issue 5048</a>)
</ul>
<h3><a name=v1.336>What's new in 1.336</a> (2009/11/28)</h3>
<ul class=image>
<li class=bug>
Update or remove lastSuccessful/lastStable symlinks on filesystem as appropriate
when a build is deleted.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-1986">issue 1986</a>)
<li class=bug>
In-demand strategy could not relaunch slave nodes since 1.302.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3890">issue 3890</a>)
<li class=bug>
Actual cause for slave going offline was always masked by channel-terminated cause.
<li class=bug>
Improved display of why a slave is offline (don't incorrectly say "failed to launch").
<li class=bug>
Improved the error diagnostics on the failure to establish connection with JNLP slaves early on.
<li class=bug>
Fix so configure-slave permission actually allows configuration of slaves.
<li class=bug>
User pages showed add/edit description link to users without permission to edit,
and guests were allowed to edit the user profile for anonymous user.
<li class=bug>
Debian package now demands full JRE, not just a headless JRE.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4879">issue 4879</a>)
<li class=bug>
Avoid exception if a plugin provides null for a dynamic node label.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4924">issue 4924</a>)
<li class=bug>
If restart is not supported, explain why.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4876">issue 4876</a>)
<li class=bug>
Matrix configuration builds should continue even when Hudson is about to shut down.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4873">issue 4873</a>)
<li class=bug>
Send build status email to valid addresses rather than aborting for one invalid address.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4927">issue 4927</a>)
<li class=bug>
Smart JDK/Maven/Ant auto installers aren't available for existing tool configurations.
<li class=bug>
Hudson can now run gracefully (albeit bit slowly) where JNA is not available.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4820">issue 4820</a>)
<li class=rfe>
Add ability to delete users from Hudson.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-1867">issue 1867</a>)
<li class=rfe>
Gracefully detect the double loading of JNA instead of failing later with <tt>NoClassDefFoundError</tt>
(<a href="http://wiki.hudson-ci.org/display/HUDSON/JNA+is+already+loaded">detail</a>)
<li class=rfe>
Introduced a structure around the initialization process for better reporting and etc.
<li class=rfe>
Debian packages creates Hudson user with <tt>/bin/bash</tt> to accomodate some tools that want a valid shell.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4830">issue 4830</a>)
</ul>
<h3><a name=v1.335>What's new in 1.335</a> (2009/11/20)</h3>
<ul class=image>
<li class=bug>
Space in axis value for matrix type project was lost on reconfiguration.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2360">issue 2360</a>)
<li class=bug>
Remember me did not work with unix authentication.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3057">issue 3057</a>)
<li class=bug>
Node variables not passed through to Maven jobs.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4030">issue 4030</a>)
<li class=bug>
Fix handling of non-ASCII characters in external job submission.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4877">issue 4877</a>)
<li class=bug>
Job assigned to label that no longer has any nodes generates exception since 1.330.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4878">issue 4878</a>)
<li class=bug>
Custom workspace on Windows with just a drive letter or using forward slashes in path
failed to build in 1.334.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4894">issue 4894</a>)
<li class=bug>
Core version number in plugin manager warning message was missing in 1.334.
<li class=bug>
Matrix build wasn't showing their full name in the executor list on the left.
<li class=rfe>
Hudson's UDP broadcast/discovery now supports IP multicast.
</ul>
<h3><a name=v1.334>What's new in 1.334</a> (2009/11/16)</h3>
<ul class=image>
<li class='major bug'>
Fixed a possible exception in submitting forms and obtaining update center metadata with Winstone in 1.333.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4804">issue 4804</a>)
<li class='major bug'>
Remoting layer was unable to kill remote processes. Prevented Mercurial plugin from implementing poll timeout on slaves.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4611">issue 4611</a>)
<li class=bug>
Display of console output as plain text did not work in browsers since 1.323.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4557">issue 4557</a>)
<li class=bug>
Show "Latest Test Results" link even when a new build is running.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4580">issue 4580</a>)
<li class=bug>
Fix broken links for failed tests on build page for a matrix type project.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4765">issue 4765</a>)
<li class=bug>
"Enable project-based security" always comes up unchecked on configure pages in 1.333,
so project permissions are lost if not rechecked before clicking Save.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4826">issue 4826</a>)
<li class=bug>
Project read permission was not enforced via /jobCaseInsensitive/jobname path.
<li class=bug>
Project configuration could be modified via POST to /job/jobname/config.xml with only
"Extended Read" permission but not configure permission.
<li class=bug>
Fixed the over zealous escaping in the inlined unit test failure report.
<li class=bug>
Fixed <tt>OutOfMemoryError</tt> in Winp
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4058">issue 4058</a>)
<li class=bug>
Write log message and ignore unrecognized permissions when loading XML.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4573">issue 4573</a>)
<li class=bug>
Fix in stapler so we don't redirect to "." which causes problem in some containers.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4787">issue 4787</a>)
<li class=bug>
List counts for duplicate cause entries for a build rather than listing many times.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4831">issue 4831</a>)
<li class=rfe>
Plugin manager now shows warning for upgrade/install of plugins into a Hudson that
is older than the plugin was built for.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-541">issue 541</a>)
<li class=rfe>
CLI "build" command now supports passing parameters.
<li class=rfe>
Job should provide doDescription to allow easy manipulation over http
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4802">issue 4802</a>)
<li class=rfe>
Improvement in the caching of the view templates.
<li class=rfe>
Added new SaveableListener to be called when objects implementing Saveable are saved.
</ul>
<h3><a name=v1.333>What's new in 1.333</a> (2009/11/09)</h3>
<ul class=image>
<li class=bug>
Fixed a performance problem in the file upload with Winstone.
(<a href="http://d.hatena.ne.jp/tosik/20091026/1256553925">report</a>)
<li class=bug>
Allow non-absolute URLs in sidebar links that do not end with slash character.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4720">issue 4720</a>)
<li class=bug>
Build other projects "even when unstable" option was not working with Maven projects.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4739">issue 4739</a>)
<li class=bug>
When renaming a log recorder, check new name uses valid characters, remove config file for
old name and redirect to new name after save.
<li class=bug>
Fixed <tt>ArrayIndexOutOfBoundsException</tt> in my view.
(<a href="http://old.nabble.com/Stack-trace-from-My-Views-ts26121656.html">report</a>)
<li class=bug>
Fixed a race condition in interrupting pending remote calls.
<li class=bug>
Retry shouldn't kick in if the build is aborted during checkout.
<li class=rfe>
Hudson now sends "Accept-Ranges" header where it's supported.
(<a href="http://www.nabble.com/206-response-code-HTTP-1.1-Range-header-td25888373.html">report</a>)
<li class=rfe>
Hudson is internally capable of supporting multiple update sites.
<li class=rfe>
Added a new "safe-restart" CLI command, also accessible at "/safeRestart", and used for post-upgrade/plugin install restart.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4553">issue 4553</a>)
<li class=rfe>
Added "delete-builds" CLI command for bulk build record deletion.
<li class=rfe>
Supported a relative path in the custom workspace directory, which resolves from FS root of the slave.
<li class='major bug'>
Fixed another <tt>NotExportableException</tt> when making a remote API call on a project.
Broke NetBeans integration and possibly others.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4760">issue 4760</a>)
</ul>
<h3><a name=v1.332>What's new in 1.332</a> (2009/11/02)</h3>
<ul class=image>
<li class=bug>
Fixed a regression in 1.331 where previously disabled plugins and their artifacts in <tt>build.xml</tt> can cause build records to fail to load.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4752">issue 4752</a>)
<li class='major bug'>
Fixed <tt>NotExportableException</tt> when making a remote API call on a project.
(<a href="https://hudson.dev.java.net/servlets/BrowseList?list=users&by=thread&from=2222483">report</a>)
<li class=bug>
Fixed <tt>IllegalArgumentException: name</tt>
(<a href="http://old.nabble.com/bug-1.331-to26145963.html">report</a>)
</ul>
<h3><a name=v1.331>What's new in 1.331</a> (2009/10/30)</h3>
<ul class=image>
<li class=bug>
Fixed a memory leak problem with the groovysh Hudson CLI command.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4618">issue 4618</a>)
<li class=bug>
CVS changelog reports were incorrect if built from tags.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-1816">issue 1816</a>)
<li class=bug>
Upstream projects list was lost when saving matrix type project.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3607">issue 3607</a>)
<li class=bug>
<tt>slave.jar</tt> now supports HTTP BASIC auth.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4071">issue 4071</a>)
<li class=bug>
Fixed a problem where taglibs defined in plugins cannot be seen from other plugins.
(<a href="http://www.nabble.com/Declaring-jelly-tag-lib-in-plugin-and-reusing-in-another-plugin-td25890803.html">report</a>)
<li class=bug>
Improved the UI of taking a node offline.
<li class=bug>
Added improved logging for exceptions encountered when attempting to invoke Maven in Maven projects.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3273">issue 3273</a>)
<li class=rfe>
Automated tool downloads are made more robust by using HTTP download retries.
<li class=rfe>
SCM information is now exposed via the remote API.
<li class=rfe>
Added the "install-plugin" command to install plugins from CLI.
(<a href="http://www.nabble.com/Setup-for-using-Hudson-to-deploy-into-Hudson-td25962271.html">report</a>)
</ul>
<h3><a name=v1.330>What's new in 1.330</a> (2009/10/23)</h3>
<ul class=image>
<li class=bug>
Fixed <tt>NoSuchMethodError</tt> error during error recovery with Maven 2.1.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2373">issue 2373</a>)
<li class=bug>
RemoteClassLoader does not persist retrieved classes with package structure
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4657">issue 4657</a>)
<li class=rfe>
Update center switched over from <tt>https://hudson.dev.java.net/</tt> to <tt>http://hudson-ci.org/</tt>
<li class=rfe>
Use tree view to show 17-40 build artifacts on build/project pages.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2280">issue 2280</a>)
<li class=rfe>
When showing why a build is pending, Hudson now puts hyperlinks to node/label/project names.
<li class=rfe>
Custom workspace is now subject to the variable expansion.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3997">issue 3997</a>)
</ul>
<h3><a name=v1.329>What's new in 1.329</a> (2009/10/16)</h3>
<ul class=image>
<li class=bug>
Fixed UI selector (hetero-list) to handle nested selectors (resolves conflict between
Promoted Builds and Parameterized Trigger plugins).
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4414">issue 4414</a>)
<li class=bug>
Fixed incremental Maven build behavior to properly handle new modules without hitting NPE.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4624">issue 4624</a>)
<li class=bug>
Added the "build" CLI command that can not only schedule a new build, but also wait until its completion.
<li class=bug>
Made visibility rules of test result remote API consistent with those for individual test cases.
<li class=bug>
Fixed a bug in the HTTP Range header handling.
(<a href="http://www.nabble.com/206-response-code-HTTP-1.1-Range-header-td25888373.html">report</a>)
<li class=bug>
Fixed a bug in <tt>.cvspass</tt> form field persistence.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4456">issue 4456</a>)
</ul>
<h3><a name=v1.328>What's new in 1.328</a> (2009/10/09)</h3>
<ul class=image>
<li class=bug>
Overview of all SCM polling activity was never showing any entries.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4609">issue 4609</a>)
<li class=bug>
Fixed a bogus IOException in the termination of CLI.
<li class=bug>
Fixed a bug in the form submission logic of the SMTP authentation configuration.
(<a href="http://www.nabble.com/error-configuring-SMTP-Gmail-with-Hudson-td25736116.html">report</a>)
<li class=rfe>
Hudson shouldn't store SMTP auth password in a clear text.
(<a href="http://www.nabble.com/error-configuring-SMTP-Gmail-with-Hudson-td25736116.html">report</a>)
<li class=rfe>
Improved the form validation in global e-mail configurations.
(<a href="http://www.nabble.com/error-configuring-SMTP-Gmail-with-Hudson-td25736116.html">report</a>)
</ul>
<h3><a name=v1.327>What's new in 1.327</a> (2009/10/02)</h3>
<ul class=image>
<li class=bug>
Worked around a possible Windows slave hang on start up.
(<a href="http://wiki.hudson-ci.org/display/HUDSON/Windows+slaves+fail+to+start+via+ssh">details</a>)
<li class=bug>
Inability to access <tt>hudson.dev.java.net</tt> shouldn't prevent Hudson from working.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4590">issue 4590</a>)
<li class=rfe>
Added a CLI command <tt>install-tool</tt> to invoke a tool auto-installation from Hudson CLI.
(<a href="http://www.nabble.com/Passing-env-variables-automatically-td25584186.html">report</a>)
<li class=rfe>
Added column on plugin updates page showing currently installed version.
<li class=rfe>
Build page now shows where the build was done.
<li class=rfe>
Job-enabling API should reject GET requests
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3721">issue 3721</a>)
<li class=rfe>
Added an extension point for inserting actions across all projects without configuration.
(<a href="http://www.nabble.com/Howto-expose-action-for-every-job-without-configuration--td25638153.html">report</a>)
<li class=rfe>
stdout, stderr, error details and the stack trace can be filtered out of the remote API
representation of a test case with the depth parameter.
(<a href="http://www.nabble.com/Change-remote-API-visibility-for-CaseResult.getStdout-getStderr-td25619046.html">discussion</a>)
</ul>
<h3><a name=v1.326>What's new in 1.326</a> (2009/09/28)</h3>
<ul class=image>
<li class='major bug'>
Hudson fails to update a plugin due to a bug in the up-to-date check logic.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4353">issue 4353</a>)
</ul>
<h3><a name=v1.325>What's new in 1.325</a> (2009/09/25)</h3>
<ul class=image>
<li class=bug>
Self restart was not working on Solaris 64bit JVM.
<li class=bug>
Fixed a possible <tt>NoSuchElementException</tt> in Hudson start up.
<li class=bug>
"Redeploy Maven artifacts" GUI causes NPE.
<li class=bug>
Permission check was missing for file mask validators.
<li class=bug>
Fixed a problem regarding SCM plugin evolution and SCM browser settings, as observed in the Mercurial plugin.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4514">issue 4514</a>)
<li class=bug>
Update center wasn't capable of updating bundled plugins, such as subversion.
<li class=bug>
Fixed a problem in the up-to-date check of the plugin extraction.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4353">issue 4353</a>)
<li class=bug>
Fixed a bug in the Debian package init script.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4304">issue 4304</a>)
<li class=bug>
Fixed an NPE in <tt>MavenBuild$RunnerImpl.decideWorkspace</tt>
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4226">issue 4226</a>)
<li class=bug>
"Test e-mail" feature in the system configuration page wasn't taking most of the parameters from the current values of the form.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3983">issue 3983</a>)
<li class=rfe>
If a Maven project is built with "-N" or "--non-recursive" in the goals, it will not attempt to
load and parse the POMs for any modules defined in the root POM.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4491">issue 4491</a>)
<li class=rfe>
Update center will create <tt>*.bak</tt> files to make it easier for manual roll back of botched upgrades.
<li class=rfe>
Vastly improved the default MIME type table of the built-in servlet container.
<li class=rfe>
Javadoc location is now subject to the variable expansions.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3942">issue 3942</a>)
<li class=rfe>
JNLP clients now report the reason when the connection is rejected by the master.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3889">issue 3889</a>)
</ul>
<h3><a name=v1.324>What's new in 1.324</a> (2009/09/18)</h3>
<ul class=image>
<li class=bug>
Added call to MailSender in RunnerImpl.cleanUp so that mail gets sent for top-level Maven project as well as individual modules. This means mail will be sent if there are POM parsing errors, etc.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-1066">issue 1066</a>)
<li class=bug>
Default value for password parameter in a parameterized project was not saved.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4333">issue 4333</a>)
<li class=bug>
Run sequentially option for Matrix project was not visible unless Axes was checked.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4366">issue 4366</a>)
<li class=bug>
Fix launching Windows slave for slave name with space or other characters needed encoding.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4392">issue 4392</a>)
<li class=bug>
Support authentication when running java -jar hudson-core-*.jar using username/password
included in HUDSON_HOME URL; also removed dependency on winstone.jar.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4400">issue 4400</a>)
<li class=bug>
Fixed links on age values in JUnit test reports.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4402">issue 4402</a>)
<li class=bug>
Maven project POM parser now ignores empty modules or modules only containing whitespace,
matching Maven's behavior.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4442">issue 4442</a>)
<li class=bug>
Fixed setting of "blockBuildWhenUpstreamBuilding" for AbstractProject - wasn't being set at all, or displayed.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4423">issue 4423</a>)
<li class=bug>
Handling of URLs with encoded character at end of a path component did not work in 1.323.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4454">issue 4454</a>)
<li class=bug>
Fixed some field validators to work for values including + character.
<li class=bug>
Fixed the charset encoding handling when different encodings are involved between the master and slaves.
(<a href="http://www.nabble.com/Build-log%27s-charset-problem.-td25424831.html">patch</a>)
<li class=bug>
Fixed a bug in the workspace archive support.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4039">issue 4039</a>)
<li class=rfe>
Added client-side validator for required fields and used this to replace some AJAX calls.
<li class=rfe>
JNLP clients perform periodic ping to detect terminated connections and recover automatically.
(<a href="http://www.nabble.com/Trying-to-investigate-JNLP-disconnection-issues-to25467992.html">report</a>)
</ul>
<h3><a name=v1.323>What's new in 1.323</a> (2009/09/04)</h3>
<ul class=image>
<li class=bug>
Creation of symlinks failed (or created in wrong location) since 1.320.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4301">issue 4301</a>)
<li class=bug>
Fixed a NoClassDefFoundError problem that happens in remoting+maven+3rd plugin combo.
<a href="http://www.nabble.com/NoClassDefFoundError%3A-hudson-maven-MavenBuildProxy%24BuildCallable-td24719002.html#a24719002">report</a>
<li class=bug>
Raw console output was doing XML escaping for '&' and '<' but it shouldn't.
<li class=bug>
Manually wiping out a workspace from GUI can cause NPE with some SCM plugins.
<li class=bug>
Fixed <tt>ClassCastException</tt> in JavaMail with some application servers.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-1261">issue 1261</a>)
<li class=bug>
Fixed a bug in the tabular display of matrix projects.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4245">issue 4245</a>)
<li class=bug>
Avoid division by zero error in swap space monitor.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4284">issue 4284</a>)
<li class=bug>
Avoid duplicate My Views links after Reload configuration from disk.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4272">issue 4272</a>)
<li class=bug>
Removed need for hack that lowered build health scores by one, so now 4/5 is reported as 80 instead of 79.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4286">issue 4286</a>)
<li class=bug>
Fixed renaming a job to a name that includes a + character.
<li class=bug>
Matrix project did not properly handle axis values with some special characters such as slash.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2670">issue 2670</a>)
<li class=rfe>
Added validation for axis names in Matrix project.
<li class=rfe>
Ajax validator for name of a new job now warns about invalid characters.
<li class=rfe>
Maven builder in freestyle projects now supports "Use private repository" option.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4205">issue 4205</a>)
<li class=rfe>
Maven incremental builds now rebuild failed/unstable modules from previous builds, even if they are unchanged.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4152">issue 4152</a>)
<li class=rfe>
Labels are listed in lexicographic order.
(<a href="http://www.nabble.com/selenium-grid-overview%3A-labels-sometimes-inversed-td25049542.html">report</a>)
<li class=rfe>
Labels for nodes are shown in a tag cloud style.
(<a href="http://www.nabble.com/labels---tagcloud-style-display-td25131812.html">patch</a>)
<li class=rfe>
Exposing load statistics to the remote API.
(<a href="http://www.nabble.com/time-in-queue-td25127970.html">report</a>)
<li class=rfe>
Make dynamic labelling of nodes clearer and easier to work with.
<li class=rfe>
Plugins can mark themselves as incompatible with earlier versions to notify users during upgrade.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4056">issue 4056</a>)
<li class=rfe>
Footer now includes a timestamp.
<li class=rfe>
Advanced option now available for all project types to keep builds in queue while upstream projects are building. Off by default.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-1938">issue 1938</a>)
<li class=rfe>
Fixed a bug in Winstone that hides the root cause of exceptions.
</ul>
<h3><a name=v1.322>What's new in 1.322</a> (2009/08/28)</h3>
<ul class=image>
<li class="major bug">
NPE in Subversion polling problem.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4299">issue 4299</a>)
<li class="major bug">
Changing credential in Subversion can still result in "svn authentication cancelled"
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3936">issue 3936</a>)
<li class=bug>
Debian init script now uses "su" to properly initialize the environment.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4304">issue 4304</a>)
</ul>
<h3><a name=v1.321>What's new in 1.321</a> (2009/08/21)</h3>
<ul class=image>
<li class='major bug'>
"Tag this build" was failing.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4018">issue 4018</a>)
<li class='major bug'>
Build history AJAX update was buggy.
<li class=bug>
Failed Junit tests will display error message and stacktrace even when no
additional TestDataPublishers are attached to the project.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4257">issue 4257</a>)
<li class=bug>
Maven test failures will again properly mark a build as unstable,
even if later task segments are successful.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4177">issue 4177</a>)
<li class=bug>
Matrix permissions with LDAP now properly validates group names using configured
prefix and case settings; added help text about these settings.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3459">issue 3459</a>)
<li class=bug>
Improved the debian package to set <tt>USER</tt> and <tt>HOME</tt>.
(<a href="http://www.nabble.com/Debian-Hudson-daemon-runs-as-separate-user-but-still-env-reports--USER%3Droot-td24979804.html">report</a>)
<li class=bug>
Failed to look up an e-mail address for LDAP users shouldn't cause a build to fail.
(<a href="http://www.nabble.com/Build-fails-with-FATAL%3A-Bad-credentials-td25005592.html">report</a>)
<li class=bug>
Fixed a possible NPE in <tt>Hudson.removeNode</tt>
(<a href="http://www.nabble.com/problems-adding-deleting-nodes-p24999793.html">report</a>)
<li class=bug>
Debian start-up script should inherit <tt>LANG</tt> and other key environment variables.
<li class=bug>
Dynamic label computation wasn't re-done properly for the master node.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4235">issue 4235</a>)
<li class=bug>
Form validation for the remote FS root of slaves was not functioning.
<li class=bug>
Privilege escalation on Solaris without username was not working.
<li class=bug>
Hudson can make mistakes in binding plugins to their right /plugin/NAME/ URLs.
(<a href="http://www.nabble.com/Custom-Plugin---No-external-resources-available-td25064554.html">report</a>)
<li class=bug>
Hudson wasn't working on WebLogic on Windows.
(<a href="http://www.nabble.com/Re%3A-Hudson-on-Weblogic-10.3-td25038378.html#a25043415">report</a>)
<li class=bug>
Fix New Job and Edit View links when default view is not "All" jobs.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4212">issue 4212</a>)
<li class=bug>
Revert logger settings when a log recorder is deleted.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4201">issue 4201</a>)
<li class=bug>
Add xml header on RSS/atom feeds and fix RSS URLs in header for non-default views.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4080">issue 4080</a>,
<a href="http://issues.hudson-ci.org/browse/HUDSON-4081">issue 4081</a>)
<li class=rfe>
Plugin installation / Hudson upgrade are made more robust in the face of possible connection abortion.
(<a href="http://www.ashlux.com/wordpress/2009/08/14/hudson-and-the-sonar-plugin-fail-maveninstallation-nosuchmethoderror/comment-page-1/#comment-26">report</a>)
<li class=rfe>
Global and per-node environment vars are made available to SCM checkout.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4124">issue 4124</a>)
<li class=rfe>
You can designate certain combinations in a matrix project as "touchstone builds". These will
be run first, and the rest of the combinations will run if the touchstone builds are successful.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-1613">issue 1613</a>)
<li class=rfe>
Added <tt>BUILD_URL</tt> and <tt>JOB_URL</tt> to the exposed environment variables.
(<a href="http://www.nabble.com/url-for-job-td25015395.html">request</a>)
<li class=rfe>
Added <tt>restart</tt> CLI command.
</ul>
<h3><a name=v1.320>What's new in 1.320</a> (2009/08/14)</h3>
<ul class=image>
<li class=bug>
Fixed an encoding problem in CVS changelog calculation.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3979">issue 3979</a>)
<li class='bug'>
Environment variables are considered in test paths.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3451">issue 3451</a>)
<li class='bug'>
A failing test is recorded when JUnit XML is invalid
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3149">issue 3149</a>)
<li class=bug>
Fixed possible <tt>Unable to call getCredential. Invalid object ID</tt> race problem.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4176">issue 4176</a>)
<li class='bug'>
If the timing coincides between polling and build, Hudson ended up creating multiple workspaces for the same job,
even when concurrent build is off.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4202">issue 4202</a>)
<li class='bug'>
Fixed a "Releasing unallocated workspace" assertion error.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4206">issue 4206</a>)
<li class='bug'>
Fixed NPE in various Maven reporters caused by Hudson core problem.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4192">issue 4192</a>)
<li class=bug>
Show warning if zero value entered for #builds/#days to save for discarding old builds
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4110">issue 4110</a>)
<li class=rfe>
Added <tt>create-job</tt> CLI command.
<li class=rfe>
Hudson now tracks why a slave is put offline.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2431">issue 2431</a>)
<li class='rfe'>
User-settable descriptions for tests.
<li class='rfe'>
A history page with test count and duration charts.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2228">issue 2228</a>)
<li class='rfe'>
A collapsible panel with test error details on the overview pages.
<li class='rfe'>
Skipped tests counts are included in tables.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-1820">issue 1820</a>)
<li class='rfe'>
New tests are shown in bold.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2046">issue 2046</a>)
<li class='major rfe'>
JUnit report improvements: A new extension point for contributing to test reports.
</ul>
<h3><a name=v1.319>What's new in 1.319</a> (2009/08/08)</h3>
<ul class=image>
<li class=bug>
Improved the start up error handling with <tt>slave.jar -jnlpUrl</tt> option.
(<a href="http://www.nabble.com/Windows-slave-unable-to-connect-after-upgrade-to-1.317-td24726491.html">report</a>)
<li class=bug>
Made hetero-list's include of descriptor config pages optional, so
that descriptors without config.jelly files don't break page rendering.
(<a href="http://www.nabble.com/claim-plugin-text-finder-plugin-conflict-tc24535708.html">See
here for background.</a>
<li class=bug>
Moved Maven help files to maven-plugin.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3527">issue 3527</a>)
<li class=bug>
Hudson shouldn't immediately launch a slave newly created via copy.
<a href="http://www.nabble.com/copying-slave-td24791624.html">report</a>
<li class=rfe>
Added support for optional alternate Maven settings file for use
in embedded Maven for POM parsing as well as actual Maven
execution.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2575">issue 2575</a>)
<li class=rfe>
Added a test button to the PAM configuration to make sure Hudson has read access to
/etc/shadow
(<a href="http://www.nabble.com/pam-auth-issues-td24698467.html">report</a>)
<li class=rfe>
Users can define their own views
<li class=rfe>
Added a /me url that points to the current user
<li class=rfe>
Added a new password parameter type to the parameterized builds.
(<a href="http://www.nabble.com/Creating-a-new-parameter-Type-%3A-Masked-Parameter-td24786554.html">report</a>)
<li class=rfe>
Matrix projects can now run sequentially
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3028">issue 3028</a>)
<li class='major rfe'>
Hudson now allows builds of a single project to execute concurrently.
</ul>
<h3><a name=v1.318>What's new in 1.318</a> (2009/07/31)</h3>
<ul class=image>
<li class=bug>
Removed a problematic MIME type entry that prevents Hudson from deploying on JOnAS.
(<a href="http://www.nabble.com/Error-with-mime-type--%27application-xslt%2Bxml%27-when-deploying-hudson-1.316-in-jonas-td24740489.html">report</a>)
<li class=bug>
Hudson can't restart itself on Mac, so don't pretend that it can.
(<a href="http://www.nabble.com/Restarting-hudson-not-working-on-MacOS--to24641779.html">report</a>)
<li class=bug>
Fixed Maven plugin to properly use private repository (when
specified) when parsing POMs.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4102">issue 4102</a>)
<li class=bug>
Edit Description worked incorrectly when default view is changed from All jobs.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4070">issue 4070</a>)
<li class=bug>
Fixed a bug in JDK auto-installation to Windows with directories with whitespaces.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4118">issue 4118</a>)
<li class=rfe>
Added support for incremental Maven project builds,
using <a href="http://docs.codehaus.org/display/MAVEN/Make+Like+Reactor+Mode">Maven's
make-like reactor mode</a>.
<li class=rfe>
Script console can now see classes from all the plugins, not just core.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4086">issue 4086</a>)
<li class=rfe>
<tt>slave.jar</tt> now has the <tt>-auth</tt> option to specify the credential for accessing Hudson
(<a href="http://www.nabble.com/Hudson-Linux-Master-%2B-Windows-Slave-issues-to24679421.html">report</a>)
<li class=rfe>
Debian package now depends on <tt>java2-runtime-headless</tt> instead of <tt>java2-runtime</tt>
<li class=rfe>
Actions can now contribute environment variables.
(<a href="http://www.nabble.com/Plugin-dev%3A-Builder-and-the-exporting-of-environment-variables.-td24676833.html">report</a>)
<li class=rfe>
Modified the reconnection logic for slaves connecting via JNLP so that it works better with protected Hudson.
(<a href="http://www.nabble.com/more-lenient-retry-logic-in-Engine.waitForServerToBack-td24703172.html">report</a>)
</ul>
<h3><a name=v1.317>What's new in 1.317</a> (2009/07/24)</h3>
<ul class=image>
<li class=bug>
Fixed a bug in inferring root DN in non-anonymous LDAP environment.
(<a href="http://www.nabble.com/Hudson-non-anonymous-LDAP-broken---td24529557.html">report</a>)
<li class=bug>
Fixed a MissingResourceException for "Ajp13Listener.ShortPacket"
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4053">issue 4053</a>)
<li class=bug>
Fixed 500 error when requesting the zip URL.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4039">issue 4039</a>)
<li class=bug>
Debian package now has 750 permission on /var/run/hudson and /var/lib/hudson to make ssh work
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4047">issue 4047</a>)
<li class=bug>
Fixed <tt>LinkageError</tt> in PAM authentication on Solaris.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-3546">issue 3546</a>)
<li class=bug>
Fixed a JDK path separator issue between Windows master and Unix slaves.
<li class=bug>
Fixed a memory leak in the remoting layer.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-4045">issue 4045</a>)
<li class=bug>
Fixed Maven dependency build order logic.
(<a href="http://issues.hudson-ci.org/browse/HUDSON-2736">issue 2736</a>)
<li class=bug>
Renaming views and jobs, and deleting jobs should use POST instead of GET.
(<a href="http://www.nabble.com/Changing-some-GETs-to-POSTs-td24401229.html">discussion</a>)
<li class=rfe>
Improved the error diagnosis of "Processing failed due to a bug in the code"
<li class=rfe>
Slaves expose more information via the remote API now.
<li class=rfe>
Exported BUILD_ID to the remote API.
(<a href="http://www.nabble.com/How-get-BUILD_ID-from-other-project-in-Hudson-td24588627.html">report</a>)
<li class=rfe>
Don't let the slave TCP/IP connection port failure to prevent Hudson start up.
(<a href="http://www.nabble.com/%22java.net.BindException%3A-Address-already-in-use%22-blocks-Hudson-td24549943.html">report</a>)
<li class=rfe>
If the user sets up "Hudson's own" security realm, UI now asks the first admin user to be created.
<li class=rfe>
Windows service now does log rotation and handles whitespace in path correctly.
(This is only applicable to newly installed services.)
(<a href="http://www.nabble.com/Windows-Service%3A-Error-193%3A-***-is-not-a-valid-Win32-application.-td24586795.html">report</a>)
</ul>
<h3><a name=v1.316>What's new in 1.316</a> (2009/07/17)</h3>
<ul class=image>