blob: 98e1bdfa8fbe86e1fad35c5bf6c268cd68a51c39 [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.3.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/2012/11/16/wicket-6.3.0-released.html -->
<a href="/start/quickstart.html" class=" nav-items">Quick Start</a>
<!-- /start/download.html || /news/2012/11/16/wicket-6.3.0-released.html -->
<a href="/start/download.html" class=" nav-items">Download</a>
<!-- /learn || /news/2012/11/16/wicket-6.3.0-released.html -->
<a href="/learn" class=" nav-items">Documentation</a>
<!-- /help || /news/2012/11/16/wicket-6.3.0-released.html -->
<a href="/help" class=" nav-items">Support</a>
<!-- /contribute || /news/2012/11/16/wicket-6.3.0-released.html -->
<a href="/contribute" class=" nav-items">Contribute</a>
<!-- /community || /news/2012/11/16/wicket-6.3.0-released.html -->
<a href="/community" class=" nav-items">Community</a>
<!-- /apache || /news/2012/11/16/wicket-6.3.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.3.0 released</h1>
</header>
<section class="toc left post ">
<div id="toc" class="toc"><div id="toc-title"><h2>Table of Contents</h2></div><ul><li class="toc--level-1 toc--section-1"><a href="#new-and-noteworthy"><span class="toc-number">1</span> <span class="toc-text">New and noteworthy</span></a></li><li class="toc--level-1 toc--section-2"><a href="#using-this-release"><span class="toc-number">2</span> <span class="toc-text">Using this release</span></a></li><li class="toc--level-1 toc--section-3"><a href="#upgrading-from-earlier-versions"><span class="toc-number">3</span> <span class="toc-text">Upgrading from earlier versions</span></a><ul><li class="toc--level-2 toc--section-4"><a href="#release-notes---wicket---version-630"><span class="toc-number">3.1</span> <span class="toc-text">Release Notes - Wicket - Version 6.3.0</span></a></li></ul></li></ul></div>
</section>
<section>
<div class="l-full">
<p class="meta">16 Nov 2012</p>
<p>The Apache Wicket PMC is proud to announce Apache Wicket 6.3.0!</p>
<p>This release marks the third 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>
<h2 id="new-and-noteworthy">New and noteworthy</h2>
<p>This release fixes some javascript errors in IE7 and IE8 with Wicket 6.</p>
<p>We have upgraded the embedded JQuery library to 1.8.2 (the most recent
stable release of JQuery). If you depend on an earlier version of
JQuery, you can instruct Wicket to use your older version. See the
<a href="https://cwiki.apache.org/confluence/display/WICKET/Wicket+Ajax#WicketAjax-Configuration">Wicket Ajax Guide</a>
for more information.</p>
<p>For the full changelog see the release notes attached to the end of
this announcement.</p>
<h2 id="using-this-release">Using this release</h2>
<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.3.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.3.0">6.3.0 source download</a></li>
<li>Binary: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.3.0/binaries">6.3.0 binary download</a></li>
</ul>
<h2 id="upgrading-from-earlier-versions">Upgrading from earlier versions</h2>
<p>If you upgrade from 6.0.0, 6.1.0, or 6.2.0 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 <a href="http://s.apache.org/wicket-6.0-migration">http://s.apache.org/wicket-6.0-migration</a></p>
<p>Have fun!</p>
<p>— The Wicket team</p>
<h3 id="release-notes---wicket---version-630">Release Notes - Wicket - Version 6.3.0</h3>
<h4 id="bug">Bug</h4>
<ul>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4623">WICKET-4623</a> - UploadProgressBar does not show up if the form submitted by AjaxButton or AjaxLink</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4826">WICKET-4826</a> - PaletteButton#onComponentTag(ComponentTag) does not call super</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4829">WICKET-4829</a> - ComponentResolvers created in app init ignore markup’s namespace</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4836">WICKET-4836</a> - Unmount a page does not work if the path starts with /</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4837">WICKET-4837</a> - SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4841">WICKET-4841</a> - Return error code 400 when an Ajax request has no base url set in header/request parameters.</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4842">WICKET-4842</a> - WicketRuntimeException when Tomcat cleans up a session later on</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4844">WICKET-4844</a> - AbstractResourceReferenceMapper doesn’t escape separators in style/variation names</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4848">WICKET-4848</a> - Reporter of FeedbackMessage should not be set to ‘null’ on detach</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4850">WICKET-4850</a> - BaseWicketTester discards cookies with MaxAge = -1 when processing a new request</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4851">WICKET-4851</a> - IE8, IE7 javascript errors with Wicket 6</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4857">WICKET-4857</a> - AutoCompleteTextFields submits Form if a choice is selected via enter-key</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4859">WICKET-4859</a> - Integer overflow in AbstractToolbar</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4864">WICKET-4864</a> - ‘format’ not set in ConversionException</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4865">WICKET-4865</a> - Page parameters not working with CryptoMapper</li>
</ul>
<h4 id="improvement">Improvement</h4>
<ul>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4831">WICKET-4831</a> - Append the feedback message CSS class instead of overriding it</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4835">WICKET-4835</a> - Add debug log messages in CompoundRequestMapper#mapRequest</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4845">WICKET-4845</a> - Make BasicResourceReferenceMapper public so it is easy to extend it</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4853">WICKET-4853</a> - Change FormComponent#reportRequiredError() from private to protected</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4856">WICKET-4856</a> - Support SVG extension in SecurePackageResourceGuard</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4863">WICKET-4863</a> - Customize ValidationError creation by FormComponent</li>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4867">WICKET-4867</a> - Detach the object before calculating its size</li>
</ul>
<h4 id="task">Task</h4>
<ul>
<li><a href="https://issues.apache.org/jira/browse/WICKET-4855">WICKET-4855</a> - Upgrade JQuery to 1.8.2</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>