http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2013/09/20/wicket-6-11-0-released.html ---------------------------------------------------------------------- diff --git a/content/news/2013/09/20/wicket-6-11-0-released.html b/content/news/2013/09/20/wicket-6-11-0-released.html new file mode 100644 index 0000000..c055364 --- /dev/null +++ b/content/news/2013/09/20/wicket-6-11-0-released.html @@ -0,0 +1,186 @@ +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> + <meta charset="utf-8"> + <title>Apache Wicket 6.11.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.3.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"> + <ul> + <!-- /start/quickstart.html || /news/2013/09/20/wicket-6-11-0-released.html --> + <li class=""><a href="/start/quickstart.html">Quick Start</a></li> + <!-- /start/download.html || /news/2013/09/20/wicket-6-11-0-released.html --> + <li class=""><a href="/start/download.html">Download</a></li> + <!-- /learn || /news/2013/09/20/wicket-6-11-0-released.html --> + <li class=""><a href="/learn">Documentation</a></li> + <!-- /help || /news/2013/09/20/wicket-6-11-0-released.html --> + <li class=""><a href="/help">Support</a></li> + <!-- /contribute || /news/2013/09/20/wicket-6-11-0-released.html --> + <li class=""><a href="/contribute">Contribute</a></li> + <!-- /community || /news/2013/09/20/wicket-6-11-0-released.html --> + <li class=""><a href="/community">Community</a></li> + <!-- /apache || /news/2013/09/20/wicket-6-11-0-released.html --> + <li class=""><a href="/apache">Apache</a></li> + </ul> +</nav> + <div class="logo"> + <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache Wicket"></a> +</div> + </div> +</div> +<main> + <div class="l-container"> + <header class="l-full preamble"> + <h1>Apache Wicket 6.11.0 released</h1> + </header> + <section class="l-one-third right"> + </section> + <section class="l-two-third left"> + <div class="l-full"> + <p class="meta">20 Sep 2013</p> + <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.11.0!</p> +<p>This release marks the eleventh 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="new-html5attributes-behavior">New HTML5Attributes behavior</h4> +<p>HTML5 attribute support in Wicket continues to be improved upon. Add +the new HTML5Attributes behavior to your text fields or buttons and +Wicket will add the relevant HTML5 attributes based on the state of +your components:</p> +<ul> + <li>adds ârequiredâ if your form component is required</li> + <li>adds âplaceholderâ for the label of your form component</li> + <li>adds âpatternâ if your form component has a PatternValidator +attached</li> + <li>adds âformnovalidateâ if your button has default form processing +set to false</li> +</ul> +<p>This behavior replaces the functionality from 6.10 where HTML5 +attributes were added automatically (see +<a href="https://issues.apache.org/jira/browse/WICKET-5289">WICKET-5289</a> and +<a href="https://issues.apache.org/jira/browse/WICKET-5331">WICKET-5331</a>)</p> +<h4 id="beanvalidation-receives-french-translation">BeanValidation receives french translation</h4> +<p>The BeanValidation project now has a french translation for +validation errors:</p> +<ul> + <li>Le champ â${label}â ne doit pas être null</li> + <li>Le champ â${label}â pourrait contenir du contenu HTML dangereux</li> +</ul> +<p>Bonne chance!</p> +<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="n">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> +<p>Glassfish has fixed this in trunk according to +<a href="https://java.net/jira/browse/GLASSFISH-20619">GLASSFISH-20619</a> but +the fix has yet to be integrated into a release.</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"><dependency></span> + <span class="nt"><groupId></span>org.apache.wicket<span class="nt"></groupId></span> + <span class="nt"><artifactId></span>wicket-core<span class="nt"></artifactId></span> + <span class="nt"><version></span>6.11.0<span class="nt"></version></span> +<span class="nt"></dependency></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.11.0">http://www.apache.org/dyn/closer.cgi/wicket/6.11.0</a></li> + <li>Binary: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.11.0/binaries">http://www.apache.org/dyn/closer.cgi/wicket/6.11.0/binaries</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-6110">Release Notes - Wicket - Version 6.11.0</h3> +<h4 id="bug">Bug</h4> +<ul> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5313">WICKET-5313</a> - Wrong HTML attribute used in SizeTagModifier (wicket-bean-validation)</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5315">WICKET-5315</a> - PriorityHeaderItem+OnDomReadyHeaderItem has no priority in Ajax response</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5316">WICKET-5316</a> - Wicket Atmosphere CouldNotLockPageException</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5319">WICKET-5319</a> - CryptoMapper encrypts external URLs in ResourceReferences making the resources inaccessible</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5322">WICKET-5322</a> - âSource codeâ link doesnât work at wicket-library.com</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5325">WICKET-5325</a> - ComponentRenderer.renderComponent does not render markup for ListView</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5329">WICKET-5329</a> - âRequiredâ flag initialized too early in PropertyValidator</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5332">WICKET-5332</a> - Autocomplete throws error when initialized in an AjaxLazyLoadPanel</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5334">WICKET-5334</a> - KittenCaptcha example is broken in IE10</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5335">WICKET-5335</a> - After selecting a file MultiFileUploadField does not render properly input field</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5339">WICKET-5339</a> - Broadcast.EXACT does not notify Behaviors of target Component</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5343">WICKET-5343</a> - AutoCompleteTextField suggestions popup position is wrong when its container has scrollbar</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5345">WICKET-5345</a> - Url.canonical() breaks when there are two consecutive âparentâ segments followed by a normal segment</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5348">WICKET-5348</a> - JavaDoc for IColumn#getSortProperty() in misleading</li> +</ul> +<h4 id="improvement">Improvement</h4> +<ul> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5327">WICKET-5327</a> - CryptoMapper: insecure default encryption provider</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5331">WICKET-5331</a> - Make html5 form validation configurable</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5333">WICKET-5333</a> - wicket-bean-validation french translation</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5341">WICKET-5341</a> - JavaDoc for IFormValidator</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5354">WICKET-5354</a> - Make ResourceBundles and related classes easier for extension</li> +</ul> +</div> + </section> + </div> +</main> + <footer class="l-container"> + <div class="l-full"> + <img height="60px" src="/img/asf_logo.gif" style="float:left"> + Copyright © 2015 â 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> + </footer> + </body> + +</html>
http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2013/09/20/wicket-6.11.0-released.html ---------------------------------------------------------------------- diff --git a/content/news/2013/09/20/wicket-6.11.0-released.html b/content/news/2013/09/20/wicket-6.11.0-released.html deleted file mode 100644 index 52863ae..0000000 --- a/content/news/2013/09/20/wicket-6.11.0-released.html +++ /dev/null @@ -1,186 +0,0 @@ -<!DOCTYPE html> -<html> - <head> - <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> - <meta charset="utf-8"> - <title>Apache Wicket 6.11.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.3.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"> - <ul> - <!-- /start/quickstart.html || /news/2013/09/20/wicket-6.11.0-released.html --> - <li class=""><a href="/start/quickstart.html">Quick Start</a></li> - <!-- /start/download.html || /news/2013/09/20/wicket-6.11.0-released.html --> - <li class=""><a href="/start/download.html">Download</a></li> - <!-- /learn || /news/2013/09/20/wicket-6.11.0-released.html --> - <li class=""><a href="/learn">Documentation</a></li> - <!-- /help || /news/2013/09/20/wicket-6.11.0-released.html --> - <li class=""><a href="/help">Support</a></li> - <!-- /contribute || /news/2013/09/20/wicket-6.11.0-released.html --> - <li class=""><a href="/contribute">Contribute</a></li> - <!-- /community || /news/2013/09/20/wicket-6.11.0-released.html --> - <li class=""><a href="/community">Community</a></li> - <!-- /apache || /news/2013/09/20/wicket-6.11.0-released.html --> - <li class=""><a href="/apache">Apache</a></li> - </ul> -</nav> - <div class="logo"> - <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache Wicket"></a> -</div> - </div> -</div> -<main> - <div class="l-container"> - <header class="l-full preamble"> - <h1>Apache Wicket 6.11.0 released</h1> - </header> - <section class="l-one-third right"> - </section> - <section class="l-two-third left"> - <div class="l-full"> - <p class="meta">20 Sep 2013</p> - <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.11.0!</p> -<p>This release marks the eleventh 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="new-html5attributes-behavior">New HTML5Attributes behavior</h4> -<p>HTML5 attribute support in Wicket continues to be improved upon. Add -the new HTML5Attributes behavior to your text fields or buttons and -Wicket will add the relevant HTML5 attributes based on the state of -your components:</p> -<ul> - <li>adds ârequiredâ if your form component is required</li> - <li>adds âplaceholderâ for the label of your form component</li> - <li>adds âpatternâ if your form component has a PatternValidator -attached</li> - <li>adds âformnovalidateâ if your button has default form processing -set to false</li> -</ul> -<p>This behavior replaces the functionality from 6.10 where HTML5 -attributes were added automatically (see -<a href="https://issues.apache.org/jira/browse/WICKET-5289">WICKET-5289</a> and -<a href="https://issues.apache.org/jira/browse/WICKET-5331">WICKET-5331</a>)</p> -<h4 id="beanvalidation-receives-french-translation">BeanValidation receives french translation</h4> -<p>The BeanValidation project now has a french translation for -validation errors:</p> -<ul> - <li>Le champ â${label}â ne doit pas être null</li> - <li>Le champ â${label}â pourrait contenir du contenu HTML dangereux</li> -</ul> -<p>Bonne chance!</p> -<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> -<div 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></div> -<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> -<div 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></div> -<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> -<p>Glassfish has fixed this in trunk according to -<a href="https://java.net/jira/browse/GLASSFISH-20619">GLASSFISH-20619</a> but -the fix has yet to be integrated into a release.</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> -<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt"><dependency></span> - <span class="nt"><groupId></span>org.apache.wicket<span class="nt"></groupId></span> - <span class="nt"><artifactId></span>wicket-core<span class="nt"></artifactId></span> - <span class="nt"><version></span>6.11.0<span class="nt"></version></span> -<span class="nt"></dependency></span></code></pre></div> -<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.11.0">http://www.apache.org/dyn/closer.cgi/wicket/6.11.0</a></li> - <li>Binary: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.11.0/binaries">http://www.apache.org/dyn/closer.cgi/wicket/6.11.0/binaries</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-6110">Release Notes - Wicket - Version 6.11.0</h3> -<h4 id="bug">Bug</h4> -<ul> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5313">WICKET-5313</a> - Wrong HTML attribute used in SizeTagModifier (wicket-bean-validation)</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5315">WICKET-5315</a> - PriorityHeaderItem+OnDomReadyHeaderItem has no priority in Ajax response</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5316">WICKET-5316</a> - Wicket Atmosphere CouldNotLockPageException</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5319">WICKET-5319</a> - CryptoMapper encrypts external URLs in ResourceReferences making the resources inaccessible</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5322">WICKET-5322</a> - âSource codeâ link doesnât work at wicket-library.com</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5325">WICKET-5325</a> - ComponentRenderer.renderComponent does not render markup for ListView</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5329">WICKET-5329</a> - âRequiredâ flag initialized too early in PropertyValidator</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5332">WICKET-5332</a> - Autocomplete throws error when initialized in an AjaxLazyLoadPanel</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5334">WICKET-5334</a> - KittenCaptcha example is broken in IE10</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5335">WICKET-5335</a> - After selecting a file MultiFileUploadField does not render properly input field</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5339">WICKET-5339</a> - Broadcast.EXACT does not notify Behaviors of target Component</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5343">WICKET-5343</a> - AutoCompleteTextField suggestions popup position is wrong when its container has scrollbar</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5345">WICKET-5345</a> - Url.canonical() breaks when there are two consecutive âparentâ segments followed by a normal segment</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5348">WICKET-5348</a> - JavaDoc for IColumn#getSortProperty() in misleading</li> -</ul> -<h4 id="improvement">Improvement</h4> -<ul> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5327">WICKET-5327</a> - CryptoMapper: insecure default encryption provider</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5331">WICKET-5331</a> - Make html5 form validation configurable</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5333">WICKET-5333</a> - wicket-bean-validation french translation</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5341">WICKET-5341</a> - JavaDoc for IFormValidator</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5354">WICKET-5354</a> - Make ResourceBundles and related classes easier for extension</li> -</ul> -</div> - </section> - </div> -</main> - <footer class="l-container"> - <div class="l-full"> - <img height="60px" src="/img/asf_logo.gif" style="float:left"> - Copyright © 2015 â 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> - </footer> - </body> - -</html> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2013/09/index.html ---------------------------------------------------------------------- diff --git a/content/news/2013/09/index.html b/content/news/2013/09/index.html index 84287e3..3dedfe2 100644 --- a/content/news/2013/09/index.html +++ b/content/news/2013/09/index.html @@ -52,13 +52,14 @@ <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.11.0!</p> <p>This release marks the eleventh minor release of Wicket 6. Starting with Wicket 6 we us...</p> - <a href="/news/2013/09/20/wicket-6.11.0-released.html">more</a></li> + <a href="/news/2013/09/20/wicket-6-11-0-released.html">more</a></li> </div> </div> <div class="l-one-third"> <h2>2015</h2> <ul> <li><a href="/news/2015">All of 2015</a></li> + <li><a href="/news/2015/11">November</a></li> <li><a href="/news/2015/10">October</a></li> <li><a href="/news/2015/07">July</a></li> <li><a href="/news/2015/06">June</a></li> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2013/11/01/wicket-6-12-0-released.html ---------------------------------------------------------------------- diff --git a/content/news/2013/11/01/wicket-6-12-0-released.html b/content/news/2013/11/01/wicket-6-12-0-released.html new file mode 100644 index 0000000..6885218 --- /dev/null +++ b/content/news/2013/11/01/wicket-6-12-0-released.html @@ -0,0 +1,181 @@ +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> + <meta charset="utf-8"> + <title>Apache Wicket 6.12.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.3.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"> + <ul> + <!-- /start/quickstart.html || /news/2013/11/01/wicket-6-12-0-released.html --> + <li class=""><a href="/start/quickstart.html">Quick Start</a></li> + <!-- /start/download.html || /news/2013/11/01/wicket-6-12-0-released.html --> + <li class=""><a href="/start/download.html">Download</a></li> + <!-- /learn || /news/2013/11/01/wicket-6-12-0-released.html --> + <li class=""><a href="/learn">Documentation</a></li> + <!-- /help || /news/2013/11/01/wicket-6-12-0-released.html --> + <li class=""><a href="/help">Support</a></li> + <!-- /contribute || /news/2013/11/01/wicket-6-12-0-released.html --> + <li class=""><a href="/contribute">Contribute</a></li> + <!-- /community || /news/2013/11/01/wicket-6-12-0-released.html --> + <li class=""><a href="/community">Community</a></li> + <!-- /apache || /news/2013/11/01/wicket-6-12-0-released.html --> + <li class=""><a href="/apache">Apache</a></li> + </ul> +</nav> + <div class="logo"> + <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache Wicket"></a> +</div> + </div> +</div> +<main> + <div class="l-container"> + <header class="l-full preamble"> + <h1>Apache Wicket 6.12.0 released</h1> + </header> + <section class="l-one-third right"> + </section> + <section class="l-two-third left"> + <div class="l-full"> + <p class="meta">01 Nov 2013</p> + <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.12.0!</p> +<p>This release marks the twelfth 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> +<p>This release fixes 16 bugs and adds the following improvements:</p> +<ul> + <li>Support MultiFileUploadField in FormTester</li> + <li>Add support for parsing IE 11 user agent</li> + <li>Log the exception if the application cannot start properly</li> + <li>Add Wicket.Event.unsubscribe method</li> + <li>Allow form components to trim the input themselves</li> + <li>Allow DebugBar contributors to be removed</li> + <li>Session management doesnât work with Jettyâs JDBCSessionManager</li> + <li>HeaderItem to be Serializable</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="n">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> +<p>Glassfish has fixed this in trunk according to +<a href="https://java.net/jira/browse/GLASSFISH-20619">GLASSFISH-20619</a> but +the fix has yet to be integrated into a release.</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"><dependency></span> + <span class="nt"><groupId></span>org.apache.wicket<span class="nt"></groupId></span> + <span class="nt"><artifactId></span>wicket-core<span class="nt"></artifactId></span> + <span class="nt"><version></span>6.12.0<span class="nt"></version></span> +<span class="nt"></dependency></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.12.0">http://www.apache.org/dyn/closer.cgi/wicket/6.12.0</a></li> + <li>Binary: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.12.0/binaries">http://www.apache.org/dyn/closer.cgi/wicket/6.12.0/binaries</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-6120">Release Notes - Wicket - Version 6.12.0</h3> +<h4 id="bug">Bug</h4> +<ul> + <li><a href="https://issues.apache.org/jira/browse/WICKET-4862">WICKET-4862</a> - AjaxPagingNavigationLink and AjaxPagingNavigationIncrementLink output inline onclick attributes in addition to Wicket.Ajax.ajax event registration</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5101">WICKET-5101</a> - Could not open second modal window after closing first</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5356">WICKET-5356</a> - AutoCompleteSettings.setShowListOnEmptyInput(true) is not working anymore</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5359">WICKET-5359</a> - org.apache.wicket.util.string.StringValue#equals broken</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5366">WICKET-5366</a> - ResourceAggregator looses information about priority/filtering/⦠when using a bundle</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5369">WICKET-5369</a> - Canât set a cookie using CookieUtils during an ajax request due to java.lang.ClassCastException: org.apache.wicket.ajax.AbstractAjaxResponse$AjaxResponse cannot be cast to org.apache.wicket.request.http.WebResponse</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5374">WICKET-5374</a> - SourcesPage fails on resources with non-ASCII characters</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5375">WICKET-5375</a> - Improve ConcatBundleResource error handling when a resource is missing</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5378">WICKET-5378</a> - AutoCompleteTextField inside a ModalWindow shows auto complete dropdown in the wrong location</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5379">WICKET-5379</a> - IE7: AutoCompleteTextField inside a ModalWindow shows auto complete dropdown behind ModalWindow</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5380">WICKET-5380</a> - Wicket rebinds the SessionEntry session attribute and this causes problems in Glassfish</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5382">WICKET-5382</a> - AutoComplete JavaScript errors</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5385">WICKET-5385</a> - wicket-bean-validation PropertyValidator_fr.properties.xml : org.xml.sax.SAXParseException</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5386">WICKET-5386</a> - ChainingModel should not check if the modelObject given as argument is null</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5397">WICKET-5397</a> - target.prependJavaScript and JQuery-Animation in IE8</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5398">WICKET-5398</a> - XmlPullParser fails to properly parse from String with encoding declaration</li> +</ul> +<h4 id="improvement">Improvement</h4> +<ul> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5346">WICKET-5346</a> - Support MultiFileUploadField in FormTester</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5362">WICKET-5362</a> - Add support for parsing IE 11 user agent</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5376">WICKET-5376</a> - Log the exception if the application cannot start properly</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5381">WICKET-5381</a> - Add Wicket.Event.unsubscribe method</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5384">WICKET-5384</a> - Allow form components to trim the input themselves</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5388">WICKET-5388</a> - Allow DebugBar contributors to be removed</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5390">WICKET-5390</a> - Session management doesnât work with Jettyâs JDBCSessionManager</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5395">WICKET-5395</a> - HeaderItem to be Serializable</li> +</ul> +<h4 id="wish">Wish</h4> +<ul> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5393">WICKET-5393</a> - Remove âfinalâ from InlineFrame#onComponentTag()</li> +</ul> +</div> + </section> + </div> +</main> + <footer class="l-container"> + <div class="l-full"> + <img height="60px" src="/img/asf_logo.gif" style="float:left"> + Copyright © 2015 â 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> + </footer> + </body> + +</html> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2013/11/01/wicket-6.12.0-released.html ---------------------------------------------------------------------- diff --git a/content/news/2013/11/01/wicket-6.12.0-released.html b/content/news/2013/11/01/wicket-6.12.0-released.html deleted file mode 100644 index 34c068e..0000000 --- a/content/news/2013/11/01/wicket-6.12.0-released.html +++ /dev/null @@ -1,181 +0,0 @@ -<!DOCTYPE html> -<html> - <head> - <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> - <meta charset="utf-8"> - <title>Apache Wicket 6.12.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.3.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"> - <ul> - <!-- /start/quickstart.html || /news/2013/11/01/wicket-6.12.0-released.html --> - <li class=""><a href="/start/quickstart.html">Quick Start</a></li> - <!-- /start/download.html || /news/2013/11/01/wicket-6.12.0-released.html --> - <li class=""><a href="/start/download.html">Download</a></li> - <!-- /learn || /news/2013/11/01/wicket-6.12.0-released.html --> - <li class=""><a href="/learn">Documentation</a></li> - <!-- /help || /news/2013/11/01/wicket-6.12.0-released.html --> - <li class=""><a href="/help">Support</a></li> - <!-- /contribute || /news/2013/11/01/wicket-6.12.0-released.html --> - <li class=""><a href="/contribute">Contribute</a></li> - <!-- /community || /news/2013/11/01/wicket-6.12.0-released.html --> - <li class=""><a href="/community">Community</a></li> - <!-- /apache || /news/2013/11/01/wicket-6.12.0-released.html --> - <li class=""><a href="/apache">Apache</a></li> - </ul> -</nav> - <div class="logo"> - <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache Wicket"></a> -</div> - </div> -</div> -<main> - <div class="l-container"> - <header class="l-full preamble"> - <h1>Apache Wicket 6.12.0 released</h1> - </header> - <section class="l-one-third right"> - </section> - <section class="l-two-third left"> - <div class="l-full"> - <p class="meta">01 Nov 2013</p> - <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.12.0!</p> -<p>This release marks the twelfth 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> -<p>This release fixes 16 bugs and adds the following improvements:</p> -<ul> - <li>Support MultiFileUploadField in FormTester</li> - <li>Add support for parsing IE 11 user agent</li> - <li>Log the exception if the application cannot start properly</li> - <li>Add Wicket.Event.unsubscribe method</li> - <li>Allow form components to trim the input themselves</li> - <li>Allow DebugBar contributors to be removed</li> - <li>Session management doesnât work with Jettyâs JDBCSessionManager</li> - <li>HeaderItem to be Serializable</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> -<div 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></div> -<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> -<div 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></div> -<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> -<p>Glassfish has fixed this in trunk according to -<a href="https://java.net/jira/browse/GLASSFISH-20619">GLASSFISH-20619</a> but -the fix has yet to be integrated into a release.</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> -<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt"><dependency></span> - <span class="nt"><groupId></span>org.apache.wicket<span class="nt"></groupId></span> - <span class="nt"><artifactId></span>wicket-core<span class="nt"></artifactId></span> - <span class="nt"><version></span>6.12.0<span class="nt"></version></span> -<span class="nt"></dependency></span></code></pre></div> -<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.12.0">http://www.apache.org/dyn/closer.cgi/wicket/6.12.0</a></li> - <li>Binary: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.12.0/binaries">http://www.apache.org/dyn/closer.cgi/wicket/6.12.0/binaries</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-6120">Release Notes - Wicket - Version 6.12.0</h3> -<h4 id="bug">Bug</h4> -<ul> - <li><a href="https://issues.apache.org/jira/browse/WICKET-4862">WICKET-4862</a> - AjaxPagingNavigationLink and AjaxPagingNavigationIncrementLink output inline onclick attributes in addition to Wicket.Ajax.ajax event registration</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5101">WICKET-5101</a> - Could not open second modal window after closing first</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5356">WICKET-5356</a> - AutoCompleteSettings.setShowListOnEmptyInput(true) is not working anymore</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5359">WICKET-5359</a> - org.apache.wicket.util.string.StringValue#equals broken</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5366">WICKET-5366</a> - ResourceAggregator looses information about priority/filtering/⦠when using a bundle</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5369">WICKET-5369</a> - Canât set a cookie using CookieUtils during an ajax request due to java.lang.ClassCastException: org.apache.wicket.ajax.AbstractAjaxResponse$AjaxResponse cannot be cast to org.apache.wicket.request.http.WebResponse</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5374">WICKET-5374</a> - SourcesPage fails on resources with non-ASCII characters</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5375">WICKET-5375</a> - Improve ConcatBundleResource error handling when a resource is missing</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5378">WICKET-5378</a> - AutoCompleteTextField inside a ModalWindow shows auto complete dropdown in the wrong location</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5379">WICKET-5379</a> - IE7: AutoCompleteTextField inside a ModalWindow shows auto complete dropdown behind ModalWindow</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5380">WICKET-5380</a> - Wicket rebinds the SessionEntry session attribute and this causes problems in Glassfish</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5382">WICKET-5382</a> - AutoComplete JavaScript errors</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5385">WICKET-5385</a> - wicket-bean-validation PropertyValidator_fr.properties.xml : org.xml.sax.SAXParseException</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5386">WICKET-5386</a> - ChainingModel should not check if the modelObject given as argument is null</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5397">WICKET-5397</a> - target.prependJavaScript and JQuery-Animation in IE8</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5398">WICKET-5398</a> - XmlPullParser fails to properly parse from String with encoding declaration</li> -</ul> -<h4 id="improvement">Improvement</h4> -<ul> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5346">WICKET-5346</a> - Support MultiFileUploadField in FormTester</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5362">WICKET-5362</a> - Add support for parsing IE 11 user agent</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5376">WICKET-5376</a> - Log the exception if the application cannot start properly</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5381">WICKET-5381</a> - Add Wicket.Event.unsubscribe method</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5384">WICKET-5384</a> - Allow form components to trim the input themselves</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5388">WICKET-5388</a> - Allow DebugBar contributors to be removed</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5390">WICKET-5390</a> - Session management doesnât work with Jettyâs JDBCSessionManager</li> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5395">WICKET-5395</a> - HeaderItem to be Serializable</li> -</ul> -<h4 id="wish">Wish</h4> -<ul> - <li><a href="https://issues.apache.org/jira/browse/WICKET-5393">WICKET-5393</a> - Remove âfinalâ from InlineFrame#onComponentTag()</li> -</ul> -</div> - </section> - </div> -</main> - <footer class="l-container"> - <div class="l-full"> - <img height="60px" src="/img/asf_logo.gif" style="float:left"> - Copyright © 2015 â 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> - </footer> - </body> - -</html> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2013/11/index.html ---------------------------------------------------------------------- diff --git a/content/news/2013/11/index.html b/content/news/2013/11/index.html index bb82c24..708898d 100644 --- a/content/news/2013/11/index.html +++ b/content/news/2013/11/index.html @@ -52,13 +52,14 @@ <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.12.0!</p> <p>This release marks the twelfth minor release of Wicket 6. Starting with Wicket 6 we us...</p> - <a href="/news/2013/11/01/wicket-6.12.0-released.html">more</a></li> + <a href="/news/2013/11/01/wicket-6-12-0-released.html">more</a></li> </div> </div> <div class="l-one-third"> <h2>2015</h2> <ul> <li><a href="/news/2015">All of 2015</a></li> + <li><a href="/news/2015/11">November</a></li> <li><a href="/news/2015/10">October</a></li> <li><a href="/news/2015/07">July</a></li> <li><a href="/news/2015/06">June</a></li> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2013/index.html ---------------------------------------------------------------------- diff --git a/content/news/2013/index.html b/content/news/2013/index.html index 1ffc482..14c9576 100644 --- a/content/news/2013/index.html +++ b/content/news/2013/index.html @@ -52,10 +52,10 @@ <p>This section contains all news items published in <a href="/news/2013/11">November 2013</a>.</p> </div> <div class="l-full"> - <h3 id="/news/2013/11/01/wicket-6.12.0-released.html">Apache Wicket 6.12.0 released</h3> + <h3 id="/news/2013/11/01/wicket-6-12-0-released.html">Apache Wicket 6.12.0 released</h3> <small>01 Nov 2013</small> <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.12.0! This release marks the twelfth minor release of Wicket 6. Starting with Wicket 6... - <a href="/news/2013/11/01/wicket-6.12.0-released.html">more</a></li></p> + <a href="/news/2013/11/01/wicket-6-12-0-released.html">more</a></li></p> </div> <hr> <div class="l-first"></div> @@ -64,10 +64,10 @@ <p>This section contains all news items published in <a href="/news/2013/09">September 2013</a>.</p> </div> <div class="l-full"> - <h3 id="/news/2013/09/20/wicket-6.11.0-released.html">Apache Wicket 6.11.0 released</h3> + <h3 id="/news/2013/09/20/wicket-6-11-0-released.html">Apache Wicket 6.11.0 released</h3> <small>20 Sep 2013</small> <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.11.0! This release marks the eleventh minor release of Wicket 6. Starting with Wicket 6... - <a href="/news/2013/09/20/wicket-6.11.0-released.html">more</a></li></p> + <a href="/news/2013/09/20/wicket-6-11-0-released.html">more</a></li></p> </div> <hr> <div class="l-first"></div> @@ -76,10 +76,10 @@ <p>This section contains all news items published in <a href="/news/2013/08">August 2013</a>.</p> </div> <div class="l-full"> - <h3 id="/news/2013/08/18/wicket-6.10.0-released.html">Apache Wicket 6.10.0 released</h3> + <h3 id="/news/2013/08/18/wicket-6-10-0-released.html">Apache Wicket 6.10.0 released</h3> <small>18 Aug 2013</small> <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.10.0! This release marks the tenth minor release of Wicket 6. Starting with Wicket 6... - <a href="/news/2013/08/18/wicket-6.10.0-released.html">more</a></li></p> + <a href="/news/2013/08/18/wicket-6-10-0-released.html">more</a></li></p> </div> <hr> <div class="l-first"></div> @@ -88,10 +88,10 @@ <p>This section contains all news items published in <a href="/news/2013/07">July 2013</a>.</p> </div> <div class="l-full"> - <h3 id="/news/2013/07/10/wicket-6.9.1-released.html">Apache Wicket 6.9.1 released</h3> + <h3 id="/news/2013/07/10/wicket-6-9-1-released.html">Apache Wicket 6.9.1 released</h3> <small>10 Jul 2013</small> <p>The Apache Wicket PMC announces Apache Wicket 6.9.1! This is a patch release for 6.9.0 where we inadvertently broke CDI injection into (amongst others) anonymous... - <a href="/news/2013/07/10/wicket-6.9.1-released.html">more</a></li></p> + <a href="/news/2013/07/10/wicket-6-9-1-released.html">more</a></li></p> </div> <hr> <div class="l-first"></div> @@ -100,10 +100,10 @@ <p>This section contains all news items published in <a href="/news/2013/06">June 2013</a>.</p> </div> <div class="l-full"> - <h3 id="/news/2013/06/27/wicket-6.9.0-released.html">Apache Wicket 6.9.0 released</h3> + <h3 id="/news/2013/06/27/wicket-6-9-0-released.html">Apache Wicket 6.9.0 released</h3> <small>27 Jun 2013</small> <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.9.0! This release marks the ninth minor release of Wicket 6. Starting with Wicket 6... - <a href="/news/2013/06/27/wicket-6.9.0-released.html">more</a></li></p> + <a href="/news/2013/06/27/wicket-6-9-0-released.html">more</a></li></p> </div> <hr> <div class="l-first"></div> @@ -112,10 +112,10 @@ <p>This section contains all news items published in <a href="/news/2013/05">May 2013</a>.</p> </div> <div class="l-full"> - <h3 id="/news/2013/05/17/wicket-6.8.0-released.html">Apache Wicket 6.8.0 released</h3> + <h3 id="/news/2013/05/17/wicket-6-8-0-released.html">Apache Wicket 6.8.0 released</h3> <small>17 May 2013</small> <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.8.0! This release marks the eighth minor release of Wicket 6. Starting with Wicket 6... - <a href="/news/2013/05/17/wicket-6.8.0-released.html">more</a></li></p> + <a href="/news/2013/05/17/wicket-6-8-0-released.html">more</a></li></p> </div> <hr> <div class="l-first"></div> @@ -124,10 +124,10 @@ <p>This section contains all news items published in <a href="/news/2013/04">April 2013</a>.</p> </div> <div class="l-full"> - <h3 id="/news/2013/04/12/wicket-6.7.0-released.html">Apache Wicket 6.7.0 released</h3> + <h3 id="/news/2013/04/12/wicket-6-7-0-released.html">Apache Wicket 6.7.0 released</h3> <small>12 Apr 2013</small> <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.7.0! This release marks the seventh minor release of Wicket 6. Starting with Wicket 6... - <a href="/news/2013/04/12/wicket-6.7.0-released.html">more</a></li></p> + <a href="/news/2013/04/12/wicket-6-7-0-released.html">more</a></li></p> </div> <hr> <div class="l-first"></div> @@ -148,16 +148,16 @@ <p>This section contains all news items published in <a href="/news/2013/02">February 2013</a>.</p> </div> <div class="l-full"> - <h3 id="/news/2013/02/26/wicket-1.5.10-released.html">Wicket 1.5.10 released</h3> + <h3 id="/news/2013/02/26/wicket-1-5-10-released.html">Wicket 1.5.10 released</h3> <small>26 Feb 2013</small> <p>This is the tenth maintenance release of the Wicket 1.5.x series. This release brings over 28 bug fixes and improvements. Git tag Changelog To use... - <a href="/news/2013/02/26/wicket-1.5.10-released.html">more</a></li></p> + <a href="/news/2013/02/26/wicket-1-5-10-released.html">more</a></li></p> </div> <div class="l-full"> - <h3 id="/news/2013/02/15/wicket-6.6.0-released.html">Apache Wicket 6.6.0 released</h3> + <h3 id="/news/2013/02/15/wicket-6-6-0-released.html">Apache Wicket 6.6.0 released</h3> <small>15 Feb 2013</small> <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.6.0! This release marks the sixth minor release of Wicket 6. Starting with Wicket 6... - <a href="/news/2013/02/15/wicket-6.6.0-released.html">more</a></li></p> + <a href="/news/2013/02/15/wicket-6-6-0-released.html">more</a></li></p> </div> <hr> <div class="l-first"></div> @@ -166,10 +166,10 @@ <p>This section contains all news items published in <a href="/news/2013/01">January 2013</a>.</p> </div> <div class="l-full"> - <h3 id="/news/2013/01/23/wicket-6.5.0-released.html">Apache Wicket 6.5.0 released</h3> + <h3 id="/news/2013/01/23/wicket-6-5-0-released.html">Apache Wicket 6.5.0 released</h3> <small>23 Jan 2013</small> <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.5.0! This release marks the fifth minor release of Wicket 6. Starting with Wicket 6... - <a href="/news/2013/01/23/wicket-6.5.0-released.html">more</a></li></p> + <a href="/news/2013/01/23/wicket-6-5-0-released.html">more</a></li></p> </div> <hr> <div class="l-first"></div> @@ -179,6 +179,7 @@ <h2>2015</h2> <ul> <li><a href="/news/2015">All of 2015</a></li> + <li><a href="/news/2015/11">November</a></li> <li><a href="/news/2015/10">October</a></li> <li><a href="/news/2015/07">July</a></li> <li><a href="/news/2015/06">June</a></li> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2014/01/05/wicket-6-13-0-released.html ---------------------------------------------------------------------- diff --git a/content/news/2014/01/05/wicket-6-13-0-released.html b/content/news/2014/01/05/wicket-6-13-0-released.html new file mode 100644 index 0000000..86c44a4 --- /dev/null +++ b/content/news/2014/01/05/wicket-6-13-0-released.html @@ -0,0 +1,257 @@ +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> + <meta charset="utf-8"> + <title>Apache Wicket 6.13.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.3.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"> + <ul> + <!-- /start/quickstart.html || /news/2014/01/05/wicket-6-13-0-released.html --> + <li class=""><a href="/start/quickstart.html">Quick Start</a></li> + <!-- /start/download.html || /news/2014/01/05/wicket-6-13-0-released.html --> + <li class=""><a href="/start/download.html">Download</a></li> + <!-- /learn || /news/2014/01/05/wicket-6-13-0-released.html --> + <li class=""><a href="/learn">Documentation</a></li> + <!-- /help || /news/2014/01/05/wicket-6-13-0-released.html --> + <li class=""><a href="/help">Support</a></li> + <!-- /contribute || /news/2014/01/05/wicket-6-13-0-released.html --> + <li class=""><a href="/contribute">Contribute</a></li> + <!-- /community || /news/2014/01/05/wicket-6-13-0-released.html --> + <li class=""><a href="/community">Community</a></li> + <!-- /apache || /news/2014/01/05/wicket-6-13-0-released.html --> + <li class=""><a href="/apache">Apache</a></li> + </ul> +</nav> + <div class="logo"> + <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache Wicket"></a> +</div> + </div> +</div> +<main> + <div class="l-container"> + <header class="l-full preamble"> + <h1>Apache Wicket 6.13.0 released</h1> + </header> + <section class="l-one-third right"> + </section> + <section class="l-two-third left"> + <div class="l-full"> + <p class="meta">05 Jan 2014</p> + <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.13.0!</p> +<p>This release marks the thirteenth 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> +<p>This release fixes 25 bugs and adds the following improvements:</p> +<ul> + <li>Online Wicket User guide (see below)</li> + <li>CDI 1.1 support (see below)</li> + <li>JQuery upgraded from 1.10.1 to 1.10.2</li> + <li>Implemented BigIntegerConverter</li> + <li>Migrate Wicket-Atmosphere to Atmosphere 2</li> +</ul> +<h3 id="online-wicket-reference-guide">Online Wicket reference guide</h3> +<p>After many years of people asking for a reference guide for Apache +Wicket we finally were able to add one to our site thanks to Andrea del +Bene and comSysto for writing the guide and providing the hours of +converting it to our site.</p> +<p>You can read the manual in 3 forms: multi page HTML, single page HTML +and PDF.</p> +<p>The contents:</p> +<ul> + <li>Introduction</li> + <li>How to use the example code</li> + <li>Why should I learn Wicket?</li> + <li>Wicket says âHello, World!â</li> + <li>Wicket as page layout manager</li> + <li>Keeping control over HTML</li> + <li>Component Lifecycle</li> + <li>Page versioning and caching</li> + <li>Under the hood of request processing</li> + <li>Wicket Links and URL generation</li> + <li>Wicket models and forms</li> + <li>Wicket forms in detail</li> + <li>Displaying multiple items with repeaters</li> + <li>Internationalization with Wicket</li> + <li>Resource management with Wicket</li> + <li>An example of integration with JavaScript</li> + <li>Wicket advanced topics</li> + <li>Working with AJAX</li> + <li>Integration with enterprise containers</li> + <li>Security with Wicket</li> + <li>Test Driven Development with Wicket</li> + <li>Test Driven Development with Wicket and Spring</li> + <li>Wicket Best Practices</li> + <li>Working with Maven (Appendix)</li> + <li>Project WicketStuff (Appendix)</li> + <li>Lost in redirection with Apache Wicket (Appendix)</li> + <li>Contributing to this guide (Appendix)</li> +</ul> +<p>Read more in the <a href="http://wicket.apache.org/learn/#wicket-user-guide">âUser guideâ</a>.</p> +<h3 id="new-cdi-11-integration-project">New CDI-1.1 integration project</h3> +<p>A new (experimental) module for CDI integration was added to support +CDI 1.1 with Wicket. As CDI 1.0 and 1.1 are different beasts and not +compatible, we had to craft a new module with specific support for the +new CDI standard. The module is still experimental, but we expect to +make it a default module in a couple of releases.</p> +<p>You can use the new Wicket CDI module by including the following +dependency in your POM:</p> +<figure class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt"><dependency></span> + <span class="nt"><groupId></span>org.apache.wicket<span class="nt"></groupId></span> + <span class="nt"><artifactId></span>wicket-cdi-1.1<span class="nt"></artifactId></span> + <span class="nt"><version></span>0.2<span class="nt"></version></span> +<span class="nt"></dependency></span></code></pre></figure> +<p>Note that you have to remove the old wicket-cdi module and the Seam +conversation dependency: <code>org.jboss.seam.conversation:seam-conversation-weld</code></p> +<p>For more information about what is new in CDI 1.1 read <a href="http://s.apache.org/newincdi11">this blog post +by Pete Muir</a>.</p> +<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 (since 6.13.0 we ship 1.10.2). +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 <a href="http://jquery.com/upgrade-guide/1.9/">the JQuery web +site</a></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="n">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> +<p>Glassfish has fixed this in trunk according to +<a href="https://java.net/jira/browse/GLASSFISH-20619">GLASSFISH-20619</a> but +the fix has yet to be integrated into a release.</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"><dependency></span> + <span class="nt"><groupId></span>org.apache.wicket<span class="nt"></groupId></span> + <span class="nt"><artifactId></span>wicket-core<span class="nt"></artifactId></span> + <span class="nt"><version></span>6.13.0<span class="nt"></version></span> +<span class="nt"></dependency></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.13.0">http://www.apache.org/dyn/closer.cgi/wicket/6.13.0</a></li> + <li>Binary: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.13.0/binaries">http://www.apache.org/dyn/closer.cgi/wicket/6.13.0/binaries</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-6130">Release Notes - Wicket - Version 6.13.0</h3> +<h4 id="bug">Bug</h4> +<ul> + <li><a href="https://issues.apache.org/jira/browse/WICKET-4294">WICKET-4294</a> - AutoCompleteTextField does not show suggestions when it is used on ModalWindow in InternetExplorer</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-4997">WICKET-4997</a> - Mounted bookmarkable Page not recreated on Session Expiry</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5084">WICKET-5084</a> - ClassNotFoundException with Atmosphere on Bookmarkable pages</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-5321">WICKET-5321</a> - Incorporate Wicket Guide into website</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5379">WICKET-5379</a> - IE7: AutoCompleteTextField inside a ModalWindow shows auto complete dropdown behind ModalWindow</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5387">WICKET-5387</a> - Page#onInitialize called after an exception in the constructor of Page</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5400">WICKET-5400</a> - Behaviors#internalAdd(Behavior) erroneously gets id for stateless behaviors</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5402">WICKET-5402</a> - NullPointerException when logging out with wicket-atmosphere</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5404">WICKET-5404</a> - JQuery 1.10.1 does not work well with IE11, upgrade to 1.10.2</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5409">WICKET-5409</a> - wicket-native-websocket does not work with Safari/Safari iOS</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5413">WICKET-5413</a> - Positioning AutoCompleteTextField not correct on resized window</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5416">WICKET-5416</a> - BOM in UTF markup file breaks encoding detection</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5418">WICKET-5418</a> - PropertyValidator ignoring groups with the @NotNull annotation only</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5422">WICKET-5422</a> - ComponentRenderer.renderComponent() adds a page to DataStore</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5424">WICKET-5424</a> - Page.isPageStateless() returning true in regular run but false in WicketTester</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5425">WICKET-5425</a> - WicketTester doesnât preserve the request cookies when #executeListener() is used</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5426">WICKET-5426</a> - Page not recognized as stateless although stateful component is hidden in #onConfigure()</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5429">WICKET-5429</a> - ResourceReferenceâs properties are not preserved when using reference replacement</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5437">WICKET-5437</a> - When a ConversionException is thrown, its message is not used in the ValidationError</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5441">WICKET-5441</a> - IResourceCachingStrategy implementations should only set caching if version matches</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5442">WICKET-5442</a> - TimeOfDay.valueOf(Calendar, Time) and TimeOfDay.valueOf(Time) incorrectly use 12-hour clock</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5444">WICKET-5444</a> - Make org.apache.wicket.pageStore.memory.PageTable public so custom impls of IDataStoreEvictionStrategy can be made</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5447">WICKET-5447</a> - TableTreeâs NodeBorder does not properly close divs</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5450">WICKET-5450</a> - Double escaping when using EnumChoiceRenderer and DropDownChoice</li> +</ul> +<h4 id="improvement">Improvement</h4> +<ul> + <li><a href="https://issues.apache.org/jira/browse/WICKET-4268">WICKET-4268</a> - Quality of ThumbnailImageResource</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-4762">WICKET-4762</a> - IResourceVersion should be based on final result</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-4905">WICKET-4905</a> - PagingNavigation: possible to call setStartIndex() earlier than onBeforeRender?</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-4909">WICKET-4909</a> - ModalWindow overwrites window.onbeforeunload</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5364">WICKET-5364</a> - Reduce logging for wicket-atmosphere</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5367">WICKET-5367</a> - migrate Wicket-Atmosphere to Atmosphere 2</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5401">WICKET-5401</a> - provide no-argument constructor in string based header items</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5411">WICKET-5411</a> - Improve AutoLabels by updating their CSS classes automatically during Ajax requests</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5415">WICKET-5415</a> - Do not initialize pages which were not rendered</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5420">WICKET-5420</a> - Make UploadProgressBar easier to extend</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5423">WICKET-5423</a> - Create IResource based implementation of Native Web Sockets</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5435">WICKET-5435</a> - Ajaxified version of WebSession#getClientInfo should be added</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5436">WICKET-5436</a> - Implement BigIntegerConverter</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5443">WICKET-5443</a> - Increase randomness and reduce predictability of CaptchaImageResource rendered images</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5445">WICKET-5445</a> - Make CaptchaImageResource easier to extend and reuse</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5455">WICKET-5455</a> - Allow access to the JS ResourceReference of AbstractAutoCompleteBehavior</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5456">WICKET-5456</a> - Make RawMarkup extendable</li> +</ul> +<h4 id="task">Task</h4> +<ul> + <li><a href="https://issues.apache.org/jira/browse/WICKET-5431">WICKET-5431</a> - Download pages must use ASF mirror system for current releases</li> +</ul> +<h4 id="wish">Wish</h4> +<ul> + <li><a href="https://issues.apache.org/jira/browse/WICKET-1197">WICKET-1197</a> - add/remove all buttons in Palette component</li> + <li><a href="https://issues.apache.org/jira/browse/WICKET-4951">WICKET-4951</a> - Wicket-cdi and OpenWebBeans 1.1.x incompatibility</li> +</ul> +</div> + </section> + </div> +</main> + <footer class="l-container"> + <div class="l-full"> + <img height="60px" src="/img/asf_logo.gif" style="float:left"> + Copyright © 2015 â 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> + </footer> + </body> + +</html>
