blob: 7270337dbb195090f8cb00f5738ea2838319e668 [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.10.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/08/18/wicket-6.10.0-released.html -->
<a href="/start/quickstart.html" class=" nav-items">Quick Start</a>
<!-- /start/download.html || /news/2013/08/18/wicket-6.10.0-released.html -->
<a href="/start/download.html" class=" nav-items">Download</a>
<!-- /learn || /news/2013/08/18/wicket-6.10.0-released.html -->
<a href="/learn" class=" nav-items">Documentation</a>
<!-- /help || /news/2013/08/18/wicket-6.10.0-released.html -->
<a href="/help" class=" nav-items">Support</a>
<!-- /contribute || /news/2013/08/18/wicket-6.10.0-released.html -->
<a href="/contribute" class=" nav-items">Contribute</a>
<!-- /community || /news/2013/08/18/wicket-6.10.0-released.html -->
<a href="/community" class=" nav-items">Community</a>
<!-- /apache || /news/2013/08/18/wicket-6.10.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.10.0 released</h1>
</header>
<section class="toc left post ">
</section>
<section>
<div class="l-full">
<p class="meta">18 Aug 2013</p>
<p>The Apache Wicket PMC is proud to announce Apache Wicket 6.10.0!</p>
<p>This release marks the tenth 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>
<ul>
<li>
<p>Required text form components now emit the HTML5 required attribute</p>
</li>
<li>
<p>URLs with username/passwords in them will now be parsed correctly
http://me:secret@localhost and http://me:secret@localhost:8080 will
no longer trigger an invalid number exception</p>
</li>
<li>
<p>OnEventHeaderItem uses JavaScript event registration, instead of
inline DOM attributes, so it should remove ‘on’ prefixes when it is
provided by the user application. For example: onclick =&gt; click.</p>
</li>
</ul>
<h3 id="jquery-update-in-690">JQuery update in 6.9.0</h3>
<p>As of Wicket 6.9 we ship JQuery 1.10.1. The JQuery project has
decided to remove deprecated APIs from their codebase from JQuery 1.9
and up. This means that JQuery plugins using these deprecated APIs no
longer work. See the JQuery migration guide for more information,
available from http://jquery.com/upgrade-guide/1.9/</p>
<p>If your application depends on these deprecated APIs you can easily
downgrade to JQuery 1.8.3-the previously provided JQuery that still
contains these APIs. Download the 1.8.3 release of jquery and add it
to your project in its application’s init method:</p>
<figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="nd">@Override</span>
<span class="kd">protected</span> <span class="kt">void</span> <span class="nf">init</span><span class="o">()</span> <span class="o">{</span>
<span class="n">getJavaScriptLibrarySettings</span><span class="o">()</span>
<span class="o">.</span><span class="na">setJQueryReference</span><span class="o">(</span><span class="n">yourJquery183ResourceReference</span><span class="o">);</span>
<span class="o">}</span></code></pre></figure>
<h3 id="cdi-injection-issue">CDI injection issue</h3>
<p>In the CDI releases of Weld 2.0.1 and prior, it was assumed that
injection in anonymous inner classes was not legal and when
attempted, it resulted in an exception:</p>
<figure class="highlight"><pre><code class="language-text" data-lang="text">Caused by: org.jboss.weld.exceptions.DefinitionException: WELD-000070
Simple bean [EnhancedAnnotatedTypeImpl] private class
com.example.HomePage$AForm cannot be a non-static inner class</code></pre></figure>
<p>This was reported as
<a href="https://issues.apache.org/jira/browse/WICKET-5226">WICKET-5226</a>, as
it became an issue in Glassfish 4, which ships with Weld 2.0.1 (or
earlier). We implemented a fix for this particular issue by not
injecting into anonymous inner classes.</p>
<p>Unfortunately this was not a bug that needed fixing on our part, but
rather in the Weld framework (see
<a href="https://issues.jboss.org/browse/WELD-1441">WELD-1441</a>)</p>
<p>Therefore we reverted the commits done for WICKET-5226 and hope that
Glassfish will upgrade their Weld implementation soon. For the whole
story read
<a href="https://issues.apache.org/jira/browse/WICKET-5264">WICKET-5264</a></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.10.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.10.0">6.10.0 source download</a></li>
<li>Binary: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.10.0/binaries">6.10.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="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+6.0">Migration to Wicket 6.0</a></li>
</ul>
<p>Have fun!</p>
<p>— The Wicket team</p>
<h3 id="release-notes---wicket---version-6100">Release Notes - Wicket - Version 6.10.0</h3>
<h4 id="sub-task">Sub-task</h4>
<ul>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5248">WICKET-5248</a> - OnEventHeaderItem is still broken in 6.9.0</li>
</ul>
<h4 id="bug">Bug</h4>
<ul>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5135">WICKET-5135</a> - wicket-atmosphere EventBus constructor throws NullPointerException under invalid state</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5164">WICKET-5164</a> - PageStoreManager.SessionEntry keeps outdated sessionId when container changes sessionId</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5224">WICKET-5224</a> - ModalWindow is not visible in Safari when opened from a link at the bottom of a large page</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5250">WICKET-5250</a> - Minified css/js gets compressed</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5251">WICKET-5251</a> - Minified name resolves incorrectly if default resource reference is used</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5256">WICKET-5256</a> - Allow configuring the resource used by ResourceStreamRequestHandler</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5259">WICKET-5259</a> - Url can't parse urls with username and password</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5260">WICKET-5260</a> - UrlRenderer#renderUrl() doesn't preserve the host</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5263">WICKET-5263</a> - FilenameWithVersionResourceCachingStrategy breaks silently when the versionPrefix is contained in the original filename</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5266">WICKET-5266</a> - Issue with TomcatWebSocketFilter and Spring Security</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5268">WICKET-5268</a> - ComponentRenderer.renderComponent fails to render two components with different component IDs</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5269">WICKET-5269</a> - XmlAjaxResponse restores wrong response</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5272">WICKET-5272</a> - NPE on unmount in BookmarkableMapper.java:189</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5273">WICKET-5273</a> - Tabindex overwritten in modal window for IE - Works in FF, Chrome</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5279">WICKET-5279</a> - o.a.w.a.AtmosphereBehavior onBroadcast should log DEBUG, not INFO</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5287">WICKET-5287</a> - NumberFormatException when parsing the port from Requests with invalid URIs</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5291">WICKET-5291</a> - Dependencies of Resource Bundle References are ignored</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5294">WICKET-5294</a> - MarkupCache ignores enforceReload flag</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5298">WICKET-5298</a> - Wicket Example for effects with Prototype is broken</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5300">WICKET-5300</a> - ComponentRenderingRequestHandler does not clear renderedComponents (PrototypeApplication)</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5302">WICKET-5302</a> - Using InlineEnclosure leads to two re-renderings of the controlling child component</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5306">WICKET-5306</a> - Dynamic and static extra paramaters not evaluated in ajax submitting behavior in a multipart form</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5309">WICKET-5309</a> - No page id appended to some stateful pages using repeaters</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5310">WICKET-5310</a> - if wicket is an external lib, BundleStringResourceLoader doesn't work</li>
</ul>
<h4 id="improvement">Improvement</h4>
<ul>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4993">WICKET-4993</a> - Add a minInputLength parameter to AutoCompleteTextField</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5270">WICKET-5270</a> - Do not set the location.hash when clicking on a link</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5276">WICKET-5276</a> - JavaDoc &amp; API for IConverter</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5277">WICKET-5277</a> - PropertiesFactory - customizable properties loading</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5289">WICKET-5289</a> - setRequired(true) should add the HTML5 "required" attribute on &lt;input&gt; and &lt;textarea&gt; elements</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5295">WICKET-5295</a> - UrlResourceStream#getData content-type detection relies on flawed logic in URLConnection#getContentType</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5296">WICKET-5296</a> - OnEventHeaderItem should remove 'on' prefix for the event name</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5303">WICKET-5303</a> - Static id counter AbstractToolbar prevents stable component paths for testing</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5304">WICKET-5304</a> - AbstractResource should check for error code first before for modifications</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-5307">WICKET-5307</a> - Export resources' version cache attribute as request cycle metadata</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>