Skip to content
changelog.html 124 KiB
Newer Older
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
<html>
We record noteworthy changes in this file, which then becomes http://jenkins-ci.org/changelog
- 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">
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
  <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>
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
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=-->
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
<ul class=image>
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
  <li class='major rfe'>
    <b><tt>JENKINS_HOME</tt> layout change</b>: builds are now keyed by build numbers and not timestamps.
    See <a href="https://wiki.jenkins-ci.org/display/JENKINS/JENKINS-24380+Migration">Wiki</a> for details
    and downgrade.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24380">issue 24380</a>)
  <li class=bug>
    Do not throw exception on <code>/signup</code> when not possible.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-11172">issue 11172</a>)
  <li class=bug>
    Fingerprint compaction aggravated lazy-loading performance issues.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-19392">issue 19392</a>)
  <li class=bug>
    Possible unreleased workspace lock if SCM polling fails during setup.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26201">issue 26201</a>)
  <li class=bug>
    Misleading description of the 'workspace' permission.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-20148">issue 20148</a>)
Daniel Beck's avatar
Daniel Beck committed
  <li class=bug>
    Run parameters should show display name if set, rather than build numbers.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25174">issue 25174</a>)
Oliver Gondža's avatar
Oliver Gondža committed
  <li class=bug>
    Add range check for H(X-Y) syntax.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25897">issue 25897</a>)
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
</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.596>What's new in 1.596</a> <!--=DATE=--></h3>
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
<ul class=image>
Daniel Beck's avatar
Daniel Beck committed
  <li class=bug>
Oliver Gondža's avatar
Oliver Gondža committed
    Build page was broken in Hungarian localization while building.
Daniel Beck's avatar
Daniel Beck committed
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-26155">issue 26155</a>)
Oliver Gondža's avatar
Oliver Gondža committed
  <li class=bug>
Daniel Beck's avatar
Daniel Beck committed
    Allow breaking label and node lists.
Oliver Gondža's avatar
Oliver Gondža committed
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25989">issue 25989</a>)
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
</ul>
</div><!--=END=-->
<h3><a name=v1.595>What's new in 1.595</a> (2014/12/21)</h3>
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
<ul class=image>
  <li class=bug>
    Spurious warnings in the log after deleting builds.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25788">issue 25788</a>)
  <li class=bug>
    Master labels disappear when system configuration is updated.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23966">issue 23966</a>)
  <li class=bug>
    Updated icon-set dependency to version 1.0.5.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25499">issue 25499</a>,
     <a href="https://issues.jenkins-ci.org/browse/JENKINS-25498">issue 25498</a>)
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
</ul>
<h3><a name=v1.594>What's new in 1.594</a> (2014/12/14)</h3>
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
<ul class=image>
  <li class=bug>
    After recent Java security updates, Jenkins would not gracefully recover from a deleted <code>secrets/master.key</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25937">issue 25937</a>)
  <li class=bug>
    <i>Restrict where this project can be run</i> regressed in 1.589 when using the ClearCase plugin.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25533">issue 25533</a>)
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
</ul>
<h3><a name=v1.593>What's new in 1.593</a> (2014/12/07)</h3>
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
<ul class=image>
  <li class=rfe>
    Dynamic Single/Multi line Build History layout.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25381">issue 25381</a>,
     <a href="https://issues.jenkins-ci.org/browse/JENKINS-25393">issue 25393</a>,
     <a href="https://issues.jenkins-ci.org/browse/JENKINS-24687">issue 24687</a>,
     <a href="https://issues.jenkins-ci.org/browse/JENKINS-24589">issue 24589</a>)
</ul>
<h3><a name=v1.592>What's new in 1.592</a> (2014/11/30)</h3>
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
<ul class=image>
  <li class=bug>
    Performance problems on large workspaces associated with validating file include patterns.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25759">issue 25759</a>)
</ul>
<h3><a name=v1.591>What's new in 1.591</a> (2014/11/25)</h3>
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
<ul class=image>
  <li class=bug>
    Always use forward slashes in path separators during in ZIP archives generated by Directory Browser
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-22514">issue 22514</a>)
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
</ul>
<h3><a name=v1.590>What's new in 1.590</a> (2014/11/16)</h3>
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
<ul class=image>
  <li class=bug>
    Basic Authentication in combination with Session is broken
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25144">issue 25144</a>)
  <li class=bug>
    Some plugins broken since 1.584 if they expected certain events to be fired under a specific user ID.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25400">issue 25400</a>)
Jesse Glick's avatar
Jesse Glick committed
  <li class=bug>
    Fixed various real or potential resource leaks discovered by <a href="https://scan.coverity.com/projects/94/">Coverity Scan</code>
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
    (<a href="https://github.com/jenkinsci/jenkins/pull/1434">pull request 1434</a>)
  <li class=rfe>
    API changes: Expose <code>AbstractProject.AbstractProjectDescriptor#validateLabelExpression</code> for plugins.
Oliver Gondža's avatar
Oliver Gondža committed
    (<a href="https://github.com/jenkinsci/jenkins/pull/1456">pull request 1456</a>)
  <li class=rfe>
    API method to aggregate multiple FormValidations into one.
Oliver Gondža's avatar
Oliver Gondža committed
    (<a href="https://github.com/jenkinsci/jenkins/pull/1458">pull request 1458</a>)
  <li class=rfe>
    API method to get non-null <code>Jenkins</code> instance with internal validation
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-23339">issue 23339</a>)
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
</ul>
<h3><a name=v1.589>What's new in 1.589</a> (2014/11/09)</h3>
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
<ul class=image>
  <li class=bug>
    JNA error in <code>WindowsInstallerLink.doDoInstall</code>.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25358">issue 25358</a>)
Daniel Beck's avatar
Daniel Beck committed
  <li class=bug>
    Restore compatibility of label assignment for some plugins.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25372">issue 25372</a>)
</ul>
<h3><a name=v1.588>What's new in 1.588</a> (2014/11/02)</h3>
<ul class=image>
Jesse Glick's avatar
Jesse Glick committed
  <li class=bug>
    Unnecessarily slow startup time with a massive number of jobs.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25473">issue 25473</a>)
  <li class=bug>
    Custom workspace option did not work under some conditions.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25221">issue 25221</a>)
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
</ul>
<h3><a name=v1.587>What's new in 1.587</a> (2014/10/29)</h3>
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
<ul class=image>
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
  <li class=bug>
    Queue didn't always leave a trail for cancelled items properly
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-25314">issue 25314</a>)
  <li class=bug>
    JNA update for deprecated JNA-POSIX library.
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24527">issue 24527</a>)
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
  <li class='major bug'>
    Introduced slave-to-master security mechanism to defend a master from slaves.
    (<a href="http://jenkins-ci.org/security-144">SECURITY-144</a>)
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
</ul>
<h3><a name=v1.586>What's new in 1.586</a> (2014/10/26)</h3>
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
<ul class=image>
  <li class=rfe>
    Bumping up JNA to 4.10. This is potentially a breaking change for plugins that depend on JNA 3.x
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-24521">issue 24521</a>)
Oleg Nenashev's avatar
Oleg Nenashev committed
  <li class=bug>
Daniel Beck's avatar
Daniel Beck committed
    Prevent empty file creation if file parameter is left empty.
Oleg Nenashev's avatar
Oleg Nenashev committed
    (<a href="https://issues.jenkins-ci.org/browse/JENKINS-3539">issue 3539</a>)
Kohsuke Kawaguchi's avatar
Kohsuke Kawaguchi committed
  <li class=bug>
    Servlet containers may refuse to let us set <a href="https://www.owasp.org/index.php/SecureFlag">secure cookie flag</a>.
    Deal with it gracefully.
Loading full blame...