blob: 74994e93acb90fe3276c191efc8252a8ebe63f79 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta charset="utf-8">
<title>Apache Wicket 6.6.0 released | Apache Wicket</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
<link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
</head>
<body class="">
<div class="header default">
<div class="l-container">
<nav class="mainmenu">
<div class="nav-logo">
<a href="/"><img src="/img/logo-apachewicket.svg" alt="Apache Wicket"></a>
</div>
<div class="nav-container">
<!-- /start/quickstart.html || /news/2013/02/15/wicket-6.6.0-released.html -->
<a href="/start/quickstart.html" class=" nav-items">Quick Start</a>
<!-- /start/download.html || /news/2013/02/15/wicket-6.6.0-released.html -->
<a href="/start/download.html" class=" nav-items">Download</a>
<!-- /learn || /news/2013/02/15/wicket-6.6.0-released.html -->
<a href="/learn" class=" nav-items">Documentation</a>
<!-- /help || /news/2013/02/15/wicket-6.6.0-released.html -->
<a href="/help" class=" nav-items">Support</a>
<!-- /contribute || /news/2013/02/15/wicket-6.6.0-released.html -->
<a href="/contribute" class=" nav-items">Contribute</a>
<!-- /community || /news/2013/02/15/wicket-6.6.0-released.html -->
<a href="/community" class=" nav-items">Community</a>
<!-- /apache || /news/2013/02/15/wicket-6.6.0-released.html -->
<a href="/apache" class=" nav-items">Apache</a>
</div>
<div class="nav-container ">
<a href="https://github.com/apache/wicket" target="_blank"><i class="fa fa-github nav-items"></i></a>
<a href="https://twitter.com/apache_wicket" target="_blank"><i class="fa fa-twitter nav-items"></i></a>
<a href="https://builtwithwicket.tumblr.com" target="_blank"><i class="fa fa-tumblr nav-items"></i></a>
</div>
</nav>
</div>
</div>
<main>
<div class="l-container">
<header class="l-full preamble">
<h1>Apache Wicket 6.6.0 released</h1>
</header>
<section class="toc left post ">
</section>
<section>
<div class="l-full">
<p class="meta">15 Feb 2013</p>
<p>The Apache Wicket PMC is proud to announce Apache Wicket 6.6.0!</p>
<p>This release marks the sixth minor release of Wicket 6. Starting
with Wicket 6 we use semantic versioning for the future development of
Wicket, and as such no API breaks are present in this release compared
to 6.0.0.</p>
<h3 id="new-and-noteworthy">New and noteworthy</h3>
<h4 id="wicketfor-attribute-for-html-label-tags">wicket:for attribute for html label tags</h4>
<p>While already available for some time, the wicket-1.5.xsd now contains
a valid definition for the <code class="language-plaintext highlighter-rouge">wicket:for</code> attribute such that it</p>
<blockquote>
<p>Can be used in HTML <code class="language-plaintext highlighter-rouge">&lt;label&gt;</code> element to automatically link it
to a form element. The value of this attribute must have the same value of
the form component’s wicket:id attribute.</p>
</blockquote>
<p>So you can use the following markup:</p>
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt">&lt;label</span> <span class="na">wicket:for=</span><span class="s">"someinput"</span><span class="nt">&gt;</span>Some label<span class="nt">&lt;/label&gt;</span>
<span class="nt">&lt;input</span> <span class="na">wicket:id=</span><span class="s">"someinput"</span> <span class="na">type=</span><span class="s">"text"</span><span class="nt">&gt;</span></code></pre></figure>
<h4 id="added-a-callback-for-an-invalidated-session">Added a callback for an invalidated session</h4>
<p>Session is extended with a life cycle event called <code class="language-plaintext highlighter-rouge">onInvalidate()</code>.
This method is executed when the user session is invalidated either
by explicit call to <code class="language-plaintext highlighter-rouge">org.apache.wicket.Session#invalidate()</code> or due
to HttpSession expiration.</p>
<p>In case of session expiration this method is called in a non-worker
thread, i.e. there are no thread locals exported for the Application,
RequestCycle and Session. The Session is the current instance. The
Application can be found by using <code class="language-plaintext highlighter-rouge">Application#get(String)</code>. There is
no way to get a reference to a RequestCycle.</p>
<h3 id="using-this-release">Using this release</h3>
<p>With Apache Maven update your dependency to (and don’t forget to
update any other dependencies on Wicket projects to the same version):</p>
<figure class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
<span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span class="nt">&lt;/groupId&gt;</span>
<span class="nt">&lt;artifactId&gt;</span>wicket-core<span class="nt">&lt;/artifactId&gt;</span>
<span class="nt">&lt;version&gt;</span>6.6.0<span class="nt">&lt;/version&gt;</span>
<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
<p>Or download and build the distribution yourself, or use our
convenience binary package</p>
<ul>
<li>Source: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">6.6.0 source download</a></li>
<li>Binary: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0/binaries">6.6.0 binary download</a></li>
</ul>
<h3 id="upgrading-from-earlier-versions">Upgrading from earlier versions</h3>
<p>If you upgrade from 6.y.z this release is a drop in replacement. If
you come from a version prior to 6.0.0, please read our Wicket 6
migration guide found at</p>
<ul>
<li><a href="http://s.apache.org/wicket-6.0-migration">http://s.apache.org/wicket-6.0-migration</a></li>
</ul>
<p>Have fun!</p>
<p>— The Wicket team</p>
<h3 id="release-notes---wicket---version-660">Release Notes - Wicket - Version 6.6.0</h3>
<h4 id="bugs">Bugs</h4>
<ul>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4723">WICKET-4723</a> - tracking id retrieved in AtmosphereBehavior#onRequest() is always 0</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4724">WICKET-4724</a> - the option name “maxRequests” is wrong in jquery.wicketatmosphere.js</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4926">WICKET-4926</a> - CheckGroupSelector does not work in nested forms in modal windows</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4984">WICKET-4984</a> - Update quickstart info for changed workflow in IntelliJ idea</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4990">WICKET-4990</a> - Problem using AutoCompleteBehavior with AjaxFormComponentUpdatingBehavior(“onchange”)</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4998">WICKET-4998</a> - AjaxFormComponentUpdatingBehavior(“onkeypress”) is triggered when Enter is used on autocomplete list</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5011">WICKET-5011</a> - Allow Select to work with non-equals objects</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5013">WICKET-5013</a> - Wicket Enclosure fails with more than one component</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5014">WICKET-5014</a> - Changes in WicketObjects.sizeof(final Serializable object) clashes with <code class="language-plaintext highlighter-rouge">&lt;header-contribution&gt;</code> in AjaxResponse</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5019">WICKET-5019</a> - Handling of NO_MINIFIED_NAME in PackageResourceReference#internalGetMinifiedName()</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5020">WICKET-5020</a> - InlineEnclosureHandler always uses “wicket” namespace</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5024">WICKET-5024</a> - Global ajax event for precondition is not called</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5027">WICKET-5027</a> - FormTester#getInputValue() does not support Select/SelectOption nor other custom components</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5029">WICKET-5029</a> - Palette does not allow to turn off localization</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5031">WICKET-5031</a> - Upgrade bootstrap to 2.3</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5035">WICKET-5035</a> - script tag with wicket:id does not throw exception if it was not added in the code</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5036">WICKET-5036</a> - Post Parameters are lost when continueToOriginalDestination() is called</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5040">WICKET-5040</a> - Session.exists() returns false when ThreadContext#session is not set to current session</li>
</ul>
<h4 id="improvement">Improvement</h4>
<ul>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4444">WICKET-4444</a> - Add a callback to the Session which is called when the HttpSession is invalidated</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4861">WICKET-4861</a> - Making MultiFileUploadField use HTML5 multiple attr &amp; remove confusing fakepath</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4945">WICKET-4945</a> - Wicket-atmosphere filters should be functions on AtmosphereResource</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4946">WICKET-4946</a> - Allow passing parameters to atmosphere JS</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5003">WICKET-5003</a> - Add wicket:for attribute in wicket.xsd</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5006">WICKET-5006</a> - Improve null display value in AbstractSingleSelectChoice</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5010">WICKET-5010</a> - Improve wicket-ajax.js to be able to work with jQuery 1.9+</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5016">WICKET-5016</a> - Updated Application_el.properties for 6.x</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5017">WICKET-5017</a> - BaseWicketTester#clickLink() doesn not serialize form to request for SubmitLink but does for AjaxSubmitLink</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5022">WICKET-5022</a> - Improve Application_es.properties</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5025">WICKET-5025</a> - Set the component as a context to the ajax listeners</li>
</ul>
</div>
</section>
</div>
</main>
<footer>
<div class="l-container">
<div class="left">
<img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;">
<div style="margin-top:12px;">Copyright © 2021 — The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div>
</div>
</div>
</footer>
</body>
</html>