<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
 
 <title>Apache Wicket</title>
 <link href="http://wicket.apache.org/atom.xml" rel="self"/>
 <link href="http://wicket.apache.org/"/>
 <updated>2013-05-02T10:59:43+02:00</updated>
 <id>http://wicket.apache.org/</id>
 <author>
   <name>Apache Wicket</name>
   <email>dev@wicket.apache.org</email>
 </author>
 
 
 <entry>
   <title>Apache Wicket 6.7.0 released</title>
   <link href="http://wicket.apache.org/2013/04/12/wicket-6.7.0-released.html"/>
   <updated>2013-04-12T00:00:00+02:00</updated>
   <id>http://wicket.apache.org/2013/04/12/wicket-6.7.0-released</id>
   <content type="html">&lt;p&gt;The Apache Wicket PMC is proud to announce Apache Wicket 6.7.0!&lt;/p&gt;

&lt;p&gt;This release marks the seventh 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.&lt;/p&gt;

&lt;h3 id='new_and_noteworthy'&gt;New and noteworthy&lt;/h3&gt;

&lt;h4 id='webfonts_are_now_supported'&gt;webfonts are now supported&lt;/h4&gt;

&lt;p&gt;Our resource guard that prevents access to classpath resources that are not intended to be shared through the web server is a whitelist of permissable resource extensions. Typically images, JavaScript files, stylesheets are on the whitelist, but the file types for webfonts were blocked. From Wicket 6.7 and onward you can now embed webfonts with your components and link to them from your stylesheets.&lt;/p&gt;

&lt;h4 id='render_a_page_or_component_to_a_string'&gt;Render a page or component to a String&lt;/h4&gt;

&lt;p&gt;One of the issues that keeps propping up on the user lists is the ability to render a page or component to a String so that you can use Wicket to render HTML email messages. Now you can use &lt;a href='http://ci.apache.org/projects/wicket/apidocs/6.0.x/org/apache/wicket/core/util/string/ComponentRenderer.html'&gt;ComponentRenderer&lt;/a&gt; to actually do so without having to resort to other less obvious methods.&lt;/p&gt;

&lt;p&gt;ComponentRenderer exposes two methods: &lt;code&gt;renderComponent&lt;/code&gt; and &lt;code&gt;renderPage&lt;/code&gt; and they do exactly what their names suggest. Happy emailing!&lt;/p&gt;

&lt;h3 id='using_this_release'&gt;Using this release&lt;/h3&gt;

&lt;p&gt;With Apache Maven update your dependency to (and don&amp;#8217;t forget to update any other dependencies on Wicket projects to the same version):&lt;/p&gt;
&lt;div class='highlight'&gt;&lt;pre&gt;&lt;code class='xml'&gt;&lt;span class='nt'&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;org.apache.wicket&lt;span class='nt'&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;wicket-core&lt;span class='nt'&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;version&amp;gt;&lt;/span&gt;6.7.0&lt;span class='nt'&gt;&amp;lt;/version&amp;gt;&lt;/span&gt;
&lt;span class='nt'&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Or download and build the distribution yourself, or use our convenience binary package&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Source: &lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/6.7.0'&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.7.0&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;Binary: &lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/6.7.0/binaries'&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.7.0/binaries&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id='upgrading_from_earlier_versions'&gt;Upgrading from earlier versions&lt;/h3&gt;

&lt;p&gt;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&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='http://s.apache.org/wicket-6.0-migration'&gt;http://s.apache.org/wicket-6.0-migration&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Have fun!&lt;/p&gt;

&lt;p&gt;— The Wicket team&lt;/p&gt;

&lt;h3 id='release_notes__wicket__version_670'&gt;Release Notes - Wicket - Version 6.7.0&lt;/h3&gt;

&lt;h4 id='bug'&gt;Bug&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4658'&gt;WICKET-4658&lt;/a&gt; - TabbedPanel CSS &amp;#8220;last&amp;#8221; is wrong if last step is not visible&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4803'&gt;WICKET-4803&lt;/a&gt; - UrlDecoder should log a message when invalid input is provided&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4871'&gt;WICKET-4871&lt;/a&gt; - wicket-atmosphere version mismatch with wicket-example-jar&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4893'&gt;WICKET-4893&lt;/a&gt; - AutoCompleteTextField removes DropDownChoice from Page&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4903'&gt;WICKET-4903&lt;/a&gt; - relativeUrl&amp;#8217;s begins with ./&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4907'&gt;WICKET-4907&lt;/a&gt; - UrlResourceReference generates broken relative URLs&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4942'&gt;WICKET-4942&lt;/a&gt; - Double slash &amp;#8216;//&amp;#8217; in starting url makes Url.parse output a relative Url&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4989'&gt;WICKET-4989&lt;/a&gt; - WicketTester should send copies of its cookies&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4995'&gt;WICKET-4995&lt;/a&gt; - Using CryptoMapper causes page to render twice&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5039'&gt;WICKET-5039&lt;/a&gt; - Manual invocation of FunctionsExecutor#notify() is broken&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5041'&gt;WICKET-5041&lt;/a&gt; - DefaultCssAutoCompleteTextField should have Constructor (String id)&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5044'&gt;WICKET-5044&lt;/a&gt; - Atmosphere + DateLabel&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5045'&gt;WICKET-5045&lt;/a&gt; - Upgrade Atmosphere to 1.0.10&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5047'&gt;WICKET-5047&lt;/a&gt; - Wicket Ajax: Inline script header contribution issue&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5048'&gt;WICKET-5048&lt;/a&gt; - Inline enclosures don&amp;#8217;t work with different namespace&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5049'&gt;WICKET-5049&lt;/a&gt; - Wicket Session may be null in SessionBindingListener after deserialization&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5052'&gt;WICKET-5052&lt;/a&gt; - @SpringBean fails to invoke methods on bean with non-public methods&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5053'&gt;WICKET-5053&lt;/a&gt; - &amp;#8220;random&amp;#8221; parameters is now &amp;#8220;_&amp;#8221; with jQuery Ajax&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5054'&gt;WICKET-5054&lt;/a&gt; - Possible bug in org.apache.wicket.util.lang.Packages when building path with repeating names&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5055'&gt;WICKET-5055&lt;/a&gt; - AutoComplete still triggers redundant events to registered change listener&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5061'&gt;WICKET-5061&lt;/a&gt; - EnclosureHandler ignores wicket:xyz elements as children&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5067'&gt;WICKET-5067&lt;/a&gt; - SelectOptions fails to render text on openClose tag&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5072'&gt;WICKET-5072&lt;/a&gt; - Cookies#isEqual(Cookie, Cookie) may fail with NullPointerException&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5073'&gt;WICKET-5073&lt;/a&gt; - UrlRenderer#removeCommonPrefixes() fails when contextPath+filterPrefix has more segments than the argument&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5075'&gt;WICKET-5075&lt;/a&gt; - When modal window is closed page scrolls to top&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5076'&gt;WICKET-5076&lt;/a&gt; - form#onSubmit() is called on just replaced nested forms&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5078'&gt;WICKET-5078&lt;/a&gt; - RestartResponseException broken with page instance and bookmarkable page&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5080'&gt;WICKET-5080&lt;/a&gt; - FilterToolbar.html contains javascript that is used elsewhere&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5082'&gt;WICKET-5082&lt;/a&gt; - Ajax update renders parent/child JS in different order than initial Page render&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5085'&gt;WICKET-5085&lt;/a&gt; - InlineEnclosure are piling up on each render&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5086'&gt;WICKET-5086&lt;/a&gt; - FormTester throws an exception when a Palette component is added to a Form associated with a compound property model&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5093'&gt;WICKET-5093&lt;/a&gt; - The event listener in Wicket.Ajax.ajax() should not return the value of attrs.ad (allowDefault)&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5094'&gt;WICKET-5094&lt;/a&gt; - ISecuritySettings#getEnforceMounts(true) prevents access to &lt;em&gt;all&lt;/em&gt; non-mounted bookmarkable pages&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5098'&gt;WICKET-5098&lt;/a&gt; - PackageResourceBlockedException under Windows for *.js files in web app&amp;#8217;s own packages, not in jars&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5102'&gt;WICKET-5102&lt;/a&gt; - wicket-bean-validation: Bean validation PropertyValidator only works with direct field access&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5103'&gt;WICKET-5103&lt;/a&gt; - Wicket session id not up to date when container changes session id&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5104'&gt;WICKET-5104&lt;/a&gt; - AjaxSelfUpdatingTimerBehavior in hidden component in ModalWindow causes Ajax Response Error&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5112'&gt;WICKET-5112&lt;/a&gt; - Parantheses problem with UrlValidator&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5114'&gt;WICKET-5114&lt;/a&gt; - Url#toString(StringMode.FULL) throws exception if a segment contains two dots&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5116'&gt;WICKET-5116&lt;/a&gt; - TabbedPanel.setSelectedTab() does not behave as specified in JavaDoc&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5117'&gt;WICKET-5117&lt;/a&gt; - Wicket ignores allowDefault:false attribute in multipart ajax requests&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5123'&gt;WICKET-5123&lt;/a&gt; - Component.continueToOriginalDestination() can redirect to ./.&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5125'&gt;WICKET-5125&lt;/a&gt; - IE8 error in wicket-date.js when used in a modalwindow&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5126'&gt;WICKET-5126&lt;/a&gt; - SecurePackageResourceGuard is blocking access to web fonts&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5131'&gt;WICKET-5131&lt;/a&gt; - Problems with cookies disabled when using 301/302 and also 303 (even with cookies)&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5132'&gt;WICKET-5132&lt;/a&gt; - Evaluation of returned data (which includes alot of javascript) very slow after ajax call in IE10.&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5134'&gt;WICKET-5134&lt;/a&gt; - java.lang.NullPointerException at org.apache.wicket.markup.html.form.Form.onComponentTag(Form.java:1520) during Atmosphere eventbus.post() if using WebSockets&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5136'&gt;WICKET-5136&lt;/a&gt; - CheckingObjectOutputStream#check(Object) swallows Exception without logging the cause&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5138'&gt;WICKET-5138&lt;/a&gt; - Wicket does not correctly handle http OPTIONS requests&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5141'&gt;WICKET-5141&lt;/a&gt; - Exception while rendering absolute URL with UrlResourceReference&lt;/li&gt;
&lt;/ul&gt;

&lt;h4 id='improvement'&gt;Improvement&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4115'&gt;WICKET-4115&lt;/a&gt; - SignInPanel should not always redirect to the Home page when the user is signed-in automaticaly with the remember-me feature.&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5005'&gt;WICKET-5005&lt;/a&gt; - Add Utility to allow conversion from Panel (or Component) to html String&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5038'&gt;WICKET-5038&lt;/a&gt; - Add equals() and hashcode() implementation to INamedParameters.NamedPair&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5046'&gt;WICKET-5046&lt;/a&gt; - NumberTextField should use appropriate validator&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5050'&gt;WICKET-5050&lt;/a&gt; - AutoComplete should not request suggestions if input is no longer active element&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5057'&gt;WICKET-5057&lt;/a&gt; - FilteringHeaderResponse requires a usage of FilteringHeaderResponse.IHeaderResponseFilter for no reason when FilteredHeaderItem is used&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5062'&gt;WICKET-5062&lt;/a&gt; - Update the list of HTML void elements with the latest HTML5 ones&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5065'&gt;WICKET-5065&lt;/a&gt; - Improve UrlRenderer to be able to render urls without scheme and/or host&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5066'&gt;WICKET-5066&lt;/a&gt; - Allow PackageResource to decide itself whether it could be accepted or not&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5074'&gt;WICKET-5074&lt;/a&gt; - Improvement for MockHttpServletRequest and FormTester to support &amp;#8216;multiple&amp;#8217; input type of fileUpload&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5079'&gt;WICKET-5079&lt;/a&gt; - Allow WebApplication-specific Spring configuration&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5088'&gt;WICKET-5088&lt;/a&gt; - The Bootstrap class does not provide a handle for the CSSResourceReferences.&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5089'&gt;WICKET-5089&lt;/a&gt; - Make MultiFileUploadField&amp;#8217;s ResourceReference JS public to be able to include in Application&amp;#8217;s getResourceBundles.&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5090'&gt;WICKET-5090&lt;/a&gt; - Add path syntax to MarkupContainer#get( String )&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5091'&gt;WICKET-5091&lt;/a&gt; - Extract the short names of the ajax attributes as a constants&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5095'&gt;WICKET-5095&lt;/a&gt; - Upgrade Wicket Native WebSocket to Jetty 9.0.0&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5096'&gt;WICKET-5096&lt;/a&gt; - Add setStep method to NumberTextField&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5105'&gt;WICKET-5105&lt;/a&gt; - JavaDoc of IHeaderContributor is outdated&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5111'&gt;WICKET-5111&lt;/a&gt; - Upgrade bootstrap to 2.3.1&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5113'&gt;WICKET-5113&lt;/a&gt; - Set a different TimeZone for the RequestLogger&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5121'&gt;WICKET-5121&lt;/a&gt; - Log warning message if a component that is not on the page associated with the AjaxRequestTarget is added&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5122'&gt;WICKET-5122&lt;/a&gt; - Add the free Wicket guide in the books page on the official site.&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5127'&gt;WICKET-5127&lt;/a&gt; - Dont use sun-internal packages to allow easy jdk7 compilation&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5137'&gt;WICKET-5137&lt;/a&gt; - Improve TagTester support for Ajax responses&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5139'&gt;WICKET-5139&lt;/a&gt; - Missing French translations&lt;/li&gt;
&lt;/ul&gt;

&lt;h4 id='task'&gt;Task&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5097'&gt;WICKET-5097&lt;/a&gt; - Deprecate BaseWicketTester#startComponent(Component)&lt;/li&gt;
&lt;/ul&gt;

&lt;h4 id='test'&gt;Test&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5042'&gt;WICKET-5042&lt;/a&gt; - Cleanup FilteringHeaderResponseTest to make it more readable&lt;/li&gt;
&lt;/ul&gt;</content>
 </entry>
 
 <entry>
   <title>CVE-2012-5636 - Apache Wicket XSS vulnerability</title>
   <link href="http://wicket.apache.org/2013/03/03/cve-2012-5636.html"/>
   <updated>2013-03-03T00:00:00+01:00</updated>
   <id>http://wicket.apache.org/2013/03/03/cve-2012-5636</id>
   <content type="html">&lt;p&gt;Vendor: The Apache Software Foundation&lt;/p&gt;

&lt;p&gt;Versions Affected: Apache Wicket 1.4.x, 1.5.x and 1.6.x&lt;/p&gt;

&lt;p&gt;Description: It is possible for JavaScript statements to break out of a &amp;#60;script&amp;#62; tag in the rendered response. This might pose a security threat if the written JavaScript contains user provided data.&lt;/p&gt;

&lt;p&gt;This vulnerability is fixed in &lt;a href='https://wicket.apache.org/2012/12/14/wicket-6.4.0-released.html'&gt;Apache Wicket 6.4.0&lt;/a&gt;, &lt;a href='https://wicket.apache.org/2013/02/26/wicket-1.5.10-released.html'&gt;Apache Wicket 1.5.10&lt;/a&gt; and Apache Wicket 1.4.22.&lt;/p&gt;

&lt;p&gt;Credit: This issue was reported by Michael Riedel.&lt;/p&gt;</content>
 </entry>
 
 <entry>
   <title>Wicket 1.5.10 released</title>
   <link href="http://wicket.apache.org/2013/02/26/wicket-1.5.10-released.html"/>
   <updated>2013-02-26T00:00:00+01:00</updated>
   <id>http://wicket.apache.org/2013/02/26/wicket-1.5.10-released</id>
   <content type="html">&lt;p&gt;This is the tenth maintenance release of the Wicket 1.5.x series. This release brings over 28 bug fixes and improvements.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='https://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/release/wicket-1.5.10'&gt;Git tag&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;amp;version=12323510'&gt;Changelog&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;To use in Maven:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class='highlight'&gt;&lt;pre&gt;&lt;code class='xml'&gt;&lt;span class='nt'&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;org.apache.wicket&lt;span class='nt'&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;wicket-core&lt;span class='nt'&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;version&amp;gt;&lt;/span&gt;1.5.10&lt;span class='nt'&gt;&amp;lt;/version&amp;gt;&lt;/span&gt;
&lt;span class='nt'&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Download the &lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/1.5.10'&gt;full distribution&lt;/a&gt; (including source)&lt;/li&gt;
&lt;/ul&gt;</content>
 </entry>
 
 <entry>
   <title>Apache Wicket 6.6.0 released</title>
   <link href="http://wicket.apache.org/2013/02/15/wicket-6.6.0-released.html"/>
   <updated>2013-02-15T00:00:00+01:00</updated>
   <id>http://wicket.apache.org/2013/02/15/wicket-6.6.0-released</id>
   <content type="html">&lt;p&gt;The Apache Wicket PMC is proud to announce Apache Wicket 6.6.0!&lt;/p&gt;

&lt;p&gt;This release marks the sixth minor release of Wicket 6. Starting with Wicket 6 we use semantic versioning for the future development of Wicket, and as such no API breaks are present in this release compared to 6.0.0.&lt;/p&gt;

&lt;h3 id='new_and_noteworthy'&gt;New and noteworthy&lt;/h3&gt;

&lt;h4 id='wicketfor_attribute_for_html_label_tags'&gt;wicket:for attribute for html label tags&lt;/h4&gt;

&lt;p&gt;While already available for some time, the wicket-1.5.xsd now contains a valid definition for the &lt;code&gt;wicket:for&lt;/code&gt; attribute such that it&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Can be used in HTML &lt;code&gt;&amp;lt;label&amp;gt;&lt;/code&gt; element to automatically link it to a form element. The value of this attribute must have the same value of the form component&amp;#8217;s wicket:id attribute.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;So you can use the following markup:&lt;/p&gt;
&lt;div class='highlight'&gt;&lt;pre&gt;&lt;code class='html'&gt;&lt;span class='nt'&gt;&amp;lt;label&lt;/span&gt; &lt;span class='na'&gt;wicket:for=&lt;/span&gt;&lt;span class='s'&gt;&amp;quot;someinput&amp;quot;&lt;/span&gt;&lt;span class='nt'&gt;&amp;gt;&lt;/span&gt;Some label&lt;span class='nt'&gt;&amp;lt;/label&amp;gt;&lt;/span&gt;
&lt;span class='nt'&gt;&amp;lt;input&lt;/span&gt; &lt;span class='na'&gt;wicket:id=&lt;/span&gt;&lt;span class='s'&gt;&amp;quot;someinput&amp;quot;&lt;/span&gt; &lt;span class='na'&gt;type=&lt;/span&gt;&lt;span class='s'&gt;&amp;quot;text&amp;quot;&lt;/span&gt;&lt;span class='nt'&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;h4 id='added_a_callback_for_an_invalidated_session'&gt;Added a callback for an invalidated session&lt;/h4&gt;

&lt;p&gt;Session is extended with a life cycle event called &lt;code&gt;onInvalidate()&lt;/code&gt;. This method is executed when the user session is invalidated either by explicit call to &lt;code&gt;org.apache.wicket.Session#invalidate()&lt;/code&gt; or due to HttpSession expiration.&lt;/p&gt;

&lt;p&gt;In case of session expiration this method is called in a non-worker thread, i.e. there are no thread locals exported for the Application, RequestCycle and Session. The Session is the current instance. The Application can be found by using &lt;code&gt;Application#get(String)&lt;/code&gt;. There is no way to get a reference to a RequestCycle.&lt;/p&gt;

&lt;h3 id='using_this_release'&gt;Using this release&lt;/h3&gt;

&lt;p&gt;With Apache Maven update your dependency to (and don&amp;#8217;t forget to update any other dependencies on Wicket projects to the same version):&lt;/p&gt;
&lt;div class='highlight'&gt;&lt;pre&gt;&lt;code class='xml'&gt;&lt;span class='nt'&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;org.apache.wicket&lt;span class='nt'&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;wicket-core&lt;span class='nt'&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;version&amp;gt;&lt;/span&gt;6.6.0&lt;span class='nt'&gt;&amp;lt;/version&amp;gt;&lt;/span&gt;
&lt;span class='nt'&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Or download and build the distribution yourself, or use our convenience binary package&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Source: &lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/6.6.0'&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.6.0&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;Binary: &lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/6.6.0/binaries'&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.6.0/binaries&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id='upgrading_from_earlier_versions'&gt;Upgrading from earlier versions&lt;/h3&gt;

&lt;p&gt;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&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='http://s.apache.org/wicket-6.0-migration'&gt;http://s.apache.org/wicket-6.0-migration&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Have fun!&lt;/p&gt;

&lt;p&gt;— The Wicket team&lt;/p&gt;

&lt;h3 id='release_notes__wicket__version_660'&gt;Release Notes - Wicket - Version 6.6.0&lt;/h3&gt;

&lt;h4 id='bugs'&gt;Bugs&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4723'&gt;WICKET-4723&lt;/a&gt; - tracking id retrieved in AtmosphereBehavior#onRequest() is always 0&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4724'&gt;WICKET-4724&lt;/a&gt; - the option name &amp;#8220;maxRequests&amp;#8221; is wrong in jquery.wicketatmosphere.js&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4926'&gt;WICKET-4926&lt;/a&gt; - CheckGroupSelector does not work in nested forms in modal windows&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4984'&gt;WICKET-4984&lt;/a&gt; - Update quickstart info for changed workflow in IntelliJ idea&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4990'&gt;WICKET-4990&lt;/a&gt; - Problem using AutoCompleteBehavior with AjaxFormComponentUpdatingBehavior(&amp;#8220;onchange&amp;#8221;)&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4998'&gt;WICKET-4998&lt;/a&gt; - AjaxFormComponentUpdatingBehavior(&amp;#8220;onkeypress&amp;#8221;) is triggered when Enter is used on autocomplete list&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5011'&gt;WICKET-5011&lt;/a&gt; - Allow Select to work with non-equals objects&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5013'&gt;WICKET-5013&lt;/a&gt; - Wicket Enclosure fails with more than one component&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5014'&gt;WICKET-5014&lt;/a&gt; - Changes in WicketObjects.sizeof(final Serializable object) clashes with &lt;code&gt;&amp;lt;header-contribution&amp;gt;&lt;/code&gt; in AjaxResponse&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5019'&gt;WICKET-5019&lt;/a&gt; - Handling of NO_MINIFIED_NAME in PackageResourceReference#internalGetMinifiedName()&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5020'&gt;WICKET-5020&lt;/a&gt; - InlineEnclosureHandler always uses &amp;#8220;wicket&amp;#8221; namespace&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5024'&gt;WICKET-5024&lt;/a&gt; - Global ajax event for precondition is not called&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5027'&gt;WICKET-5027&lt;/a&gt; - FormTester#getInputValue() does not support Select/SelectOption nor other custom components&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5029'&gt;WICKET-5029&lt;/a&gt; - Palette does not allow to turn off localization&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5031'&gt;WICKET-5031&lt;/a&gt; - Upgrade bootstrap to 2.3&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5035'&gt;WICKET-5035&lt;/a&gt; - script tag with wicket:id does not throw exception if it was not added in the code&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5036'&gt;WICKET-5036&lt;/a&gt; - Post Parameters are lost when continueToOriginalDestination() is called&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5040'&gt;WICKET-5040&lt;/a&gt; - Session.exists() returns false when ThreadContext#session is not set to current session&lt;/li&gt;
&lt;/ul&gt;

&lt;h4 id='improvement'&gt;Improvement&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4444'&gt;WICKET-4444&lt;/a&gt; - Add a callback to the Session which is called when the HttpSession is invalidated&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4861'&gt;WICKET-4861&lt;/a&gt; - Making MultiFileUploadField use HTML5 multiple attr &amp;amp; remove confusing fakepath&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4945'&gt;WICKET-4945&lt;/a&gt; - Wicket-atmosphere filters should be functions on AtmosphereResource&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4946'&gt;WICKET-4946&lt;/a&gt; - Allow passing parameters to atmosphere JS&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5003'&gt;WICKET-5003&lt;/a&gt; - Add wicket:for attribute in wicket.xsd&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5006'&gt;WICKET-5006&lt;/a&gt; - Improve null display value in AbstractSingleSelectChoice&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5010'&gt;WICKET-5010&lt;/a&gt; - Improve wicket-ajax.js to be able to work with jQuery 1.9+&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5016'&gt;WICKET-5016&lt;/a&gt; - Updated Application_el.properties for 6.x&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5017'&gt;WICKET-5017&lt;/a&gt; - BaseWicketTester#clickLink() doesn not serialize form to request for SubmitLink but does for AjaxSubmitLink&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5022'&gt;WICKET-5022&lt;/a&gt; - Improve Application_es.properties&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-5025'&gt;WICKET-5025&lt;/a&gt; - Set the component as a context to the ajax listeners&lt;/li&gt;
&lt;/ul&gt;</content>
 </entry>
 
 <entry>
   <title>Apache Wicket 6.5.0 released</title>
   <link href="http://wicket.apache.org/2013/01/23/wicket-6.5.0-released.html"/>
   <updated>2013-01-23T00:00:00+01:00</updated>
   <id>http://wicket.apache.org/2013/01/23/wicket-6.5.0-released</id>
   <content type="html">&lt;p&gt;The Apache Wicket PMC is proud to announce Apache Wicket 6.5.0!&lt;/p&gt;

&lt;p&gt;This release marks the fifth 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.&lt;/p&gt;

&lt;h3 id='new_and_noteworthy'&gt;New and noteworthy&lt;/h3&gt;

&lt;h4 id='behavioronremovecomponent'&gt;Behavior.onRemove(Component)&lt;/h4&gt;

&lt;p&gt;org.apache.wicket.Behavior has a new method - #onRemove(Component). This callback method is called when a host component of this behavior is removed from its parent.&lt;/p&gt;

&lt;h4 id='global_updaters_for_ajax_request_attributes'&gt;Global updaters for Ajax request attributes&lt;/h4&gt;

&lt;p&gt;By registering a custom AjaxRequestTarget.AbstractListener the application can manipulate all the attributes for all Ajax requests.&lt;/p&gt;

&lt;p&gt;Example:&lt;/p&gt;
&lt;div class='highlight'&gt;&lt;pre&gt;&lt;code class='java'&gt;&lt;span class='n'&gt;application&lt;/span&gt;&lt;span class='o'&gt;.&lt;/span&gt;&lt;span class='na'&gt;getAjaxRequestTargetListeners&lt;/span&gt;&lt;span class='o'&gt;().&lt;/span&gt;&lt;span class='na'&gt;add&lt;/span&gt;&lt;span class='o'&gt;(&lt;/span&gt;&lt;span class='k'&gt;new&lt;/span&gt; &lt;span class='n'&gt;AjaxRequestTarget&lt;/span&gt;&lt;span class='o'&gt;.&lt;/span&gt;&lt;span class='na'&gt;AbstractListener&lt;/span&gt;&lt;span class='o'&gt;()&lt;/span&gt;
&lt;span class='o'&gt;{&lt;/span&gt;
	&lt;span class='nd'&gt;@Override&lt;/span&gt;
	&lt;span class='kd'&gt;public&lt;/span&gt; &lt;span class='kt'&gt;void&lt;/span&gt; &lt;span class='nf'&gt;updateAjaxAttributes&lt;/span&gt;&lt;span class='o'&gt;(&lt;/span&gt;&lt;span class='n'&gt;AjaxRequestAttributes&lt;/span&gt; &lt;span class='n'&gt;attributes&lt;/span&gt;&lt;span class='o'&gt;)&lt;/span&gt;
	&lt;span class='o'&gt;{&lt;/span&gt;
		&lt;span class='kd'&gt;super&lt;/span&gt;&lt;span class='o'&gt;.&lt;/span&gt;&lt;span class='na'&gt;updateAjaxAttributes&lt;/span&gt;&lt;span class='o'&gt;(&lt;/span&gt;&lt;span class='n'&gt;attributes&lt;/span&gt;&lt;span class='o'&gt;);&lt;/span&gt;
		&lt;span class='n'&gt;attributes&lt;/span&gt;&lt;span class='o'&gt;.&lt;/span&gt;&lt;span class='na'&gt;setChannel&lt;/span&gt;&lt;span class='o'&gt;(&lt;/span&gt;&lt;span class='k'&gt;new&lt;/span&gt; &lt;span class='n'&gt;AjaxChannel&lt;/span&gt;&lt;span class='o'&gt;(&lt;/span&gt;&lt;span class='s'&gt;&amp;quot;globalAjaxChannel&amp;quot;&lt;/span&gt;&lt;span class='o'&gt;,&lt;/span&gt; &lt;span class='n'&gt;AjaxChannel&lt;/span&gt;&lt;span class='o'&gt;.&lt;/span&gt;&lt;span class='na'&gt;Type&lt;/span&gt;&lt;span class='o'&gt;.&lt;/span&gt;&lt;span class='na'&gt;ACTIVE&lt;/span&gt;&lt;span class='o'&gt;));&lt;/span&gt;
	&lt;span class='o'&gt;}&lt;/span&gt;
&lt;span class='o'&gt;});&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Each Ajax behavior/component can override such global settings.&lt;/p&gt;

&lt;h3 id='using_this_release'&gt;Using this release&lt;/h3&gt;

&lt;p&gt;With Apache Maven update your dependency to (and don&amp;#8217;t forget to update any other dependencies on Wicket projects to the same version):&lt;/p&gt;
&lt;div class='highlight'&gt;&lt;pre&gt;&lt;code class='xml'&gt;&lt;span class='nt'&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;org.apache.wicket&lt;span class='nt'&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;wicket-core&lt;span class='nt'&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;version&amp;gt;&lt;/span&gt;6.5.0&lt;span class='nt'&gt;&amp;lt;/version&amp;gt;&lt;/span&gt;
&lt;span class='nt'&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Or download and build the distribution yourself, or use our convenience binary package&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Source: &lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/6.5.0'&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.5.0&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;Binary: &lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/6.5.0/binaries'&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.5.0/binaries&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id='upgrading_from_earlier_versions'&gt;Upgrading from earlier versions&lt;/h3&gt;

&lt;p&gt;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&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;http://s.apache.org/wicket-6.0-migration&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Have fun!&lt;/p&gt;

&lt;p&gt;— The Wicket team&lt;/p&gt;

&lt;h3 id='release_notes__wicket__version_650'&gt;Release Notes - Wicket - Version 6.5.0&lt;/h3&gt;

&lt;h4 id='subtask'&gt;Sub-task&lt;/h4&gt;

&lt;pre&gt;&lt;code&gt;* [WICKET-4976](https://issues.apache.org/jira/browse/WICKET-4976) - WicketTester#startComponent(Component) doesn&amp;#39;t detach the component and request cycle&lt;/code&gt;&lt;/pre&gt;

&lt;h4 id='bug'&gt;Bug&lt;/h4&gt;

&lt;pre&gt;&lt;code&gt;* [WICKET-4906](https://issues.apache.org/jira/browse/WICKET-4906) - Form#visitFormComponents can cause ClassCastException
* [WICKET-4925](https://issues.apache.org/jira/browse/WICKET-4925) - AbstractAjaxBehavior should clean stored reference to a component on unbind
* [WICKET-4927](https://issues.apache.org/jira/browse/WICKET-4927) - Header can not be set from IRequestCycleListener#onEndRequest()
* [WICKET-4928](https://issues.apache.org/jira/browse/WICKET-4928) - Error adding links to WebSocketRequestHandler
* [WICKET-4935](https://issues.apache.org/jira/browse/WICKET-4935) - Rendered URL is resulting with double slash when using AuthenticatedWebApplication
* [WICKET-4939](https://issues.apache.org/jira/browse/WICKET-4939) - AbstractAjaxTimerBehavior never triggers if attached to WebPage
* [WICKET-4948](https://issues.apache.org/jira/browse/WICKET-4948) - Modal window does not center correctly when window is scrolled in safari
* [WICKET-4950](https://issues.apache.org/jira/browse/WICKET-4950) - ResourceStreamLocator#newResourceNameIterator isn&amp;#39;t a factory method anymore
* [WICKET-4953](https://issues.apache.org/jira/browse/WICKET-4953) - RangeValidator#decorate mixes error keys
* [WICKET-4954](https://issues.apache.org/jira/browse/WICKET-4954) - Issue with file upload with progress bar via AJAX and Firefox
* [WICKET-4955](https://issues.apache.org/jira/browse/WICKET-4955) - SessionData violates comparison contract
* [WICKET-4956](https://issues.apache.org/jira/browse/WICKET-4956) - compareTo methods of Actions in BufferedWebResponse violate Comparable contract
* [WICKET-4959](https://issues.apache.org/jira/browse/WICKET-4959) - Notify behaviors when a component is removed from the tree
* [WICKET-4961](https://issues.apache.org/jira/browse/WICKET-4961) - wicket ajax submit does not serialize elements of parental forms
* [WICKET-4962](https://issues.apache.org/jira/browse/WICKET-4962) - AjaxFormChoiceComponentUpdatingBehavior cannot be triggered with BaseWicketTester#executeAjaxEvent()
* [WICKET-4965](https://issues.apache.org/jira/browse/WICKET-4965) - NPE when stopping Tomcat
* [WICKET-4968](https://issues.apache.org/jira/browse/WICKET-4968) - NPE in FencedFeedbackPanel#onRemove
* [WICKET-4971](https://issues.apache.org/jira/browse/WICKET-4971) - AtmosphereEventSubscriptionCollector is slow
* [WICKET-4973](https://issues.apache.org/jira/browse/WICKET-4973) - AbstractRequestLogger - infinite ArrayIndexOutOfBoundsException when requestWindow size is 0
* [WICKET-4975](https://issues.apache.org/jira/browse/WICKET-4975) - client side memory leak on  date picker
* [WICKET-4986](https://issues.apache.org/jira/browse/WICKET-4986) - wicket-ajax-jquery.js fails with &amp;#39;member not found&amp;#39; on IE for delayed ajax requests&lt;/code&gt;&lt;/pre&gt;

&lt;h4 id='improvement'&gt;Improvement&lt;/h4&gt;

&lt;pre&gt;&lt;code&gt;* [WICKET-4919](https://issues.apache.org/jira/browse/WICKET-4919) - AjaxLazyLoadPanel needs a method to add components to the AjaxRequestTarget when the component is rendered
* [WICKET-4933](https://issues.apache.org/jira/browse/WICKET-4933) - Palette does not handle disabled choices correctly
* [WICKET-4937](https://issues.apache.org/jira/browse/WICKET-4937) - Add IResponseFilter that can filter out invalid XML characters
* [WICKET-4940](https://issues.apache.org/jira/browse/WICKET-4940) - Make MountedMapper#getMatchedSegmentSizes(url) protected
* [WICKET-4957](https://issues.apache.org/jira/browse/WICKET-4957) - Listener needed for registration and removal of pages
* [WICKET-4958](https://issues.apache.org/jira/browse/WICKET-4958) - It should be possible to manipulate AjaxRequestAttributes globally
* [WICKET-4963](https://issues.apache.org/jira/browse/WICKET-4963) - ComponentModel &amp;quot;setObject&amp;quot; methods should take generic &amp;quot;T&amp;quot; type instead of &amp;quot;Object&amp;quot;
* [WICKET-4970](https://issues.apache.org/jira/browse/WICKET-4970) - Move the logic for creating the proper PackageResource from PackageResourceReference to ResourceReferenceRegistry
* [WICKET-4982](https://issues.apache.org/jira/browse/WICKET-4982) - StatelessChecker: add helpful information to find stateful behavior (patch included)
* [WICKET-4983](https://issues.apache.org/jira/browse/WICKET-4983) - extra recursion on Wicket.DOM.get&lt;/code&gt;&lt;/pre&gt;</content>
 </entry>
 
 <entry>
   <title>Apache Wicket 6.4.0 released</title>
   <link href="http://wicket.apache.org/2012/12/14/wicket-6.4.0-released.html"/>
   <updated>2012-12-14T00:00:00+01:00</updated>
   <id>http://wicket.apache.org/2012/12/14/wicket-6.4.0-released</id>
   <content type="html">&lt;p&gt;The Apache Wicket PMC is proud to announce Apache Wicket 6.4.0!&lt;/p&gt;

&lt;p&gt;This release marks the fourth 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.&lt;/p&gt;

&lt;h3 id='new_and_noteworthy'&gt;New and noteworthy&lt;/h3&gt;

&lt;p&gt;JQuery was upgraded to 1.8.3, bootstrap to 2.2.2.&lt;/p&gt;

&lt;h4 id='jsr_303_beanvalidation_support'&gt;JSR 303 BeanValidation support&lt;/h4&gt;

&lt;p&gt;Native support for BeanValidation (JSR 303) was added as an experimental module and released as version 0.5. You can grab it by using these maven coordinates:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;org.apache.wicket:wicket-bean-validation:0.5:jar&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;or by pasting in the pom snippet below:&lt;/p&gt;
&lt;div class='highlight'&gt;&lt;pre&gt;&lt;code class='xml'&gt;&lt;span class='nt'&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;org.apache.wicket&lt;span class='nt'&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;wicket-bean-validation&lt;span class='nt'&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;version&amp;gt;&lt;/span&gt;0.5&lt;span class='nt'&gt;&amp;lt;/version&amp;gt;&lt;/span&gt;
&lt;span class='nt'&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Note that this is an experimental module and that it is not released under the SemVer rules. Use at your own risk.&lt;/p&gt;

&lt;h4 id='hierarchical_feedback_panel'&gt;Hierarchical feedback panel&lt;/h4&gt;

&lt;p&gt;A new kind of feedback panel was introduced: a hierarchical feedback panel. A specialized feedback panel that only displays messages from inside a fence defined by a container component. Instances will not show messages coming from inside a nested fence, allowing the nesting of these panels to work correctly without displaying the same feedback message twice. A constructor that does not takes a fencing component creates a catch-all panel that shows messages that do not come from inside any fence or from the Session.&lt;/p&gt;

&lt;p&gt;For more information see the &lt;a href='http://s.apache.org/wicket-FencedFeedbackPanel'&gt;FencedFeedbackPanel javadoc&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;For the full changelog see the release notes attached to the end of this announcement.&lt;/p&gt;

&lt;h3 id='using_this_release'&gt;Using this release&lt;/h3&gt;

&lt;p&gt;With Apache Maven update your dependency to (and don&amp;#8217;t forget to update any other dependencies on Wicket projects to the same version):&lt;/p&gt;
&lt;div class='highlight'&gt;&lt;pre&gt;&lt;code class='xml'&gt;&lt;span class='nt'&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;org.apache.wicket&lt;span class='nt'&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;wicket-core&lt;span class='nt'&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;version&amp;gt;&lt;/span&gt;6.4.0&lt;span class='nt'&gt;&amp;lt;/version&amp;gt;&lt;/span&gt;
&lt;span class='nt'&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Or download and build the distribution yourself, or use our convenience binary package&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Source: &lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/6.4.0'&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.4.0&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;Binary: &lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/6.4.0/binaries'&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.4.0/binaries&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id='upgrading_from_earlier_versions'&gt;Upgrading from earlier versions&lt;/h3&gt;

&lt;p&gt;If you upgrade from 6.0.0, 6.1.0, 6.2.0 or 6.3.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&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;http://s.apache.org/wicket-6.0-migration&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Have fun!&lt;/p&gt;

&lt;p&gt;— The Wicket team&lt;/p&gt;

&lt;h3 id='release_notes__wicket__version_640'&gt;Release Notes - Wicket - Version 6.4.0&lt;/h3&gt;

&lt;h4 id='subtask'&gt;Sub-task&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='WICKET-4880'&gt;WICKET-4880&lt;/a&gt; - Make it possible to override the Ajax behavior of AjaxSubmitLink and AjaxButton&lt;/li&gt;
&lt;/ul&gt;

&lt;h4 id='bug'&gt;Bug&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4869'&gt;WICKET-4869&lt;/a&gt; - Wicket-Atmosphere track message length&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4872'&gt;WICKET-4872&lt;/a&gt; - IllegalArgumentException on ReloadingWicketFilter and inheritance markup&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4877'&gt;WICKET-4877&lt;/a&gt; - encodeUrl fails parsing jsessionid when using root context&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4878'&gt;WICKET-4878&lt;/a&gt; - Rendering of feedback messages fails with DebugBar in page&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4881'&gt;WICKET-4881&lt;/a&gt; - IE 8 : error when handling Wicket Ajax Response&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4884'&gt;WICKET-4884&lt;/a&gt; - ValidationError messages for NumberTextFields with minimum/maximum are always English&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4886'&gt;WICKET-4886&lt;/a&gt; - Do not register Ajax timer if the component is removed&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4890'&gt;WICKET-4890&lt;/a&gt; - Bad validation messages after WICKET-2128&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4891'&gt;WICKET-4891&lt;/a&gt; - UrlRenderer.renderRelativeUrl misbehavior if the filterPath is composed.&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4894'&gt;WICKET-4894&lt;/a&gt; - Internet Explorer fails fails to properly include conditional stylesheet links added via AjaxRequestTarget&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4895'&gt;WICKET-4895&lt;/a&gt; - WicketRuntimeException: addOrReplace for feedback panel does not clear Component.FEEDBACK_LIST - feedback from replaced component causes error.&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4899'&gt;WICKET-4899&lt;/a&gt; - autocomplete shows strings with quotes strings as string2 with &amp;#34;quote&amp;#34;&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4900'&gt;WICKET-4900&lt;/a&gt; - Setting a status code on an AbstractResource results in no HTTP body&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4908'&gt;WICKET-4908&lt;/a&gt; - Wrong charset or screwed up characters in Norwegian properties-file&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4911'&gt;WICKET-4911&lt;/a&gt; - Palette Ajax update does not work&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4913'&gt;WICKET-4913&lt;/a&gt; - HtmlDocumentParser does not support tags containing number (e.g. h1-h6)&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4915'&gt;WICKET-4915&lt;/a&gt; - org.apache.wicket.util.resource.Patht#find fails on Windows&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4916'&gt;WICKET-4916&lt;/a&gt; - AbstractTree$TreeItem renderHead does not call renderHead for child TreeItems.&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4917'&gt;WICKET-4917&lt;/a&gt; - Websockets are not working if URL has a hash in it&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4918'&gt;WICKET-4918&lt;/a&gt; - LazyInitProxyFactory prevents using package private interfaces&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4920'&gt;WICKET-4920&lt;/a&gt; - Rendered Url on root context with cookies disabled might result in double slash //&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4922'&gt;WICKET-4922&lt;/a&gt; - Cloned ServletWebRequest returns wrong OriginalUrl&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4923'&gt;WICKET-4923&lt;/a&gt; - CryptoMapper ignores original queryString parameters&lt;/li&gt;
&lt;/ul&gt;

&lt;h4 id='improvement'&gt;Improvement&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4873'&gt;WICKET-4873&lt;/a&gt; - Support different session id parameter&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4876'&gt;WICKET-4876&lt;/a&gt; - CheckBoxMultipleChoice should implement getAdditionalAttributes as RadioChoice&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4887'&gt;WICKET-4887&lt;/a&gt; - Use a Set to keep the supported wicket elements in WicketTagIdentifier&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4889'&gt;WICKET-4889&lt;/a&gt; - Label constructor should accept Serializable as label&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4892'&gt;WICKET-4892&lt;/a&gt; - Provide helpful exception message in RequestCycle#urlFor()&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4901'&gt;WICKET-4901&lt;/a&gt; - AjaxPagingNaviagtionLink should provide updateAjaxAttributes like AjaxLink&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4902'&gt;WICKET-4902&lt;/a&gt; - ConcatBundleResource should use the respective ITextResourceCompressor&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4924'&gt;WICKET-4924&lt;/a&gt; - Websocket broadcast support does not work with OSGi&lt;/p&gt;

&lt;h4 id='new_feature'&gt;New Feature&lt;/h4&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4832'&gt;WICKET-4832&lt;/a&gt; - Websocket broadcast support&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4879'&gt;WICKET-4879&lt;/a&gt; - Implementing channels in wicket-atmosphere&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4883'&gt;WICKET-4883&lt;/a&gt; - Out of the box bean-validation (JSR 303) integration&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4888'&gt;WICKET-4888&lt;/a&gt; - Introduce a hierarchical feedback panel (FencedFeedbackPanel)&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h4 id='task'&gt;Task&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4885'&gt;WICKET-4885&lt;/a&gt; - Upgrade jQuery to its latest stable version (1.8.3)&lt;/li&gt;
&lt;/ul&gt;</content>
 </entry>
 
 <entry>
   <title>Apache Wicket 6.3.0 released</title>
   <link href="http://wicket.apache.org/2012/11/16/wicket-6.3.0-released.html"/>
   <updated>2012-11-16T00:00:00+01:00</updated>
   <id>http://wicket.apache.org/2012/11/16/wicket-6.3.0-released</id>
   <content type="html">&lt;p&gt;The Apache Wicket PMC is proud to announce Apache Wicket 6.3.0!&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;h2 id='new_and_noteworthy'&gt;New and noteworthy&lt;/h2&gt;

&lt;p&gt;This release fixes some javascript errors in IE7 and IE8 with Wicket 6.&lt;/p&gt;

&lt;p&gt;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 &lt;a href='https://cwiki.apache.org/WICKET/wicket-ajax.html#WicketAjax-Configuration'&gt;Wicket Ajax Guide&lt;/a&gt; for more information.&lt;/p&gt;

&lt;p&gt;For the full changelog see the release notes attached to the end of this announcement.&lt;/p&gt;

&lt;h2 id='using_this_release'&gt;Using this release&lt;/h2&gt;

&lt;p&gt;With Apache Maven update your dependency to (and don&amp;#8217;t forget to update any other dependencies on Wicket projects to the same version):&lt;/p&gt;
&lt;div class='highlight'&gt;&lt;pre&gt;&lt;code class='xml'&gt;&lt;span class='nt'&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;org.apache.wicket&lt;span class='nt'&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;wicket-core&lt;span class='nt'&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;version&amp;gt;&lt;/span&gt;6.3.0&lt;span class='nt'&gt;&amp;lt;/version&amp;gt;&lt;/span&gt;
&lt;span class='nt'&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Or download and build the distribution yourself, or use our convenience binary package&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/6.3.0'&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.3.0&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;&lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/6.3.0/binaries'&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.3.0/binaries&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id='upgrading_from_earlier_versions'&gt;Upgrading from earlier versions&lt;/h2&gt;

&lt;p&gt;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 &lt;a href='http://s.apache.org/wicket-6.0-migration'&gt;http://s.apache.org/wicket-6.0-migration&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Have fun!&lt;/p&gt;

&lt;p&gt;— The Wicket team&lt;/p&gt;

&lt;h3 id='release_notes__wicket__version_630'&gt;Release Notes - Wicket - Version 6.3.0&lt;/h3&gt;

&lt;h4 id='bug'&gt;Bug&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4623'&gt;WICKET-4623&lt;/a&gt; - UploadProgressBar does not show up if the form submitted by AjaxButton or AjaxLink&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4826'&gt;WICKET-4826&lt;/a&gt; - PaletteButton#onComponentTag(ComponentTag) does not call super&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4829'&gt;WICKET-4829&lt;/a&gt; - ComponentResolvers created in app init ignore markup&amp;#8217;s namespace&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4836'&gt;WICKET-4836&lt;/a&gt; - Unmount a page does not work if the path starts with /&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4837'&gt;WICKET-4837&lt;/a&gt; - SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4841'&gt;WICKET-4841&lt;/a&gt; - Return error code 400 when an Ajax request has no base url set in header/request parameters.&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4842'&gt;WICKET-4842&lt;/a&gt; - WicketRuntimeException when Tomcat cleans up a session later on&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4844'&gt;WICKET-4844&lt;/a&gt; - AbstractResourceReferenceMapper doesn&amp;#8217;t escape separators in style/variation names&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4848'&gt;WICKET-4848&lt;/a&gt; - Reporter of FeedbackMessage should not be set to &amp;#8216;null&amp;#8217; on detach&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4850'&gt;WICKET-4850&lt;/a&gt; - BaseWicketTester discards cookies with MaxAge = -1 when processing a new request&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4851'&gt;WICKET-4851&lt;/a&gt; - IE8, IE7 javascript errors with Wicket 6&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4857'&gt;WICKET-4857&lt;/a&gt; - AutoCompleteTextFields submits Form if a choice is selected via enter-key&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4859'&gt;WICKET-4859&lt;/a&gt; - Integer overflow in AbstractToolbar&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4864'&gt;WICKET-4864&lt;/a&gt; - &amp;#8216;format&amp;#8217; not set in ConversionException&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4865'&gt;WICKET-4865&lt;/a&gt; - Page parameters not working with CryptoMapper&lt;/li&gt;
&lt;/ul&gt;

&lt;h4 id='improvement'&gt;Improvement&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4831'&gt;WICKET-4831&lt;/a&gt; - Append the feedback message CSS class instead of overriding it&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4835'&gt;WICKET-4835&lt;/a&gt; - Add debug log messages in CompoundRequestMapper#mapRequest&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4845'&gt;WICKET-4845&lt;/a&gt; - Make BasicResourceReferenceMapper public so it is easy to extend it&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4853'&gt;WICKET-4853&lt;/a&gt; - Change FormComponent#reportRequiredError() from private to protected&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4856'&gt;WICKET-4856&lt;/a&gt; - Support SVG extension in SecurePackageResourceGuard&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4863'&gt;WICKET-4863&lt;/a&gt; - Customize ValidationError creation by FormComponent&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4867'&gt;WICKET-4867&lt;/a&gt; - Detach the object before calculating its size&lt;/li&gt;
&lt;/ul&gt;

&lt;h4 id='task'&gt;Task&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4855'&gt;WICKET-4855&lt;/a&gt; - Upgrade JQuery to 1.8.2&lt;/li&gt;
&lt;/ul&gt;</content>
 </entry>
 
 <entry>
   <title>Wicket 1.5.9 released</title>
   <link href="http://wicket.apache.org/2012/11/09/wicket-1.5.9-released.html"/>
   <updated>2012-11-09T00:00:00+01:00</updated>
   <id>http://wicket.apache.org/2012/11/09/wicket-1.5.9-released</id>
   <content type="html">&lt;p&gt;This is the nineth maintenance release of the Wicket 1.5.x series. This release brings over 48 bug fixes and improvements.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='https://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/release/wicket.1.5.9'&gt;Git tag&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;amp;version=12322962'&gt;Changelog&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;To use in Maven:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class='highlight'&gt;&lt;pre&gt;&lt;code class='xml'&gt;&lt;span class='nt'&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;org.apache.wicket&lt;span class='nt'&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;wicket-core&lt;span class='nt'&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;version&amp;gt;&lt;/span&gt;1.5.9&lt;span class='nt'&gt;&amp;lt;/version&amp;gt;&lt;/span&gt;
&lt;span class='nt'&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Download the &lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/1.5.9'&gt;full distribution&lt;/a&gt; (including source)&lt;/li&gt;
&lt;/ul&gt;</content>
 </entry>
 
 <entry>
   <title>Apache Wicket 6.2.0 released</title>
   <link href="http://wicket.apache.org/2012/10/23/wicket-6.2.0-released.html"/>
   <updated>2012-10-23T00:00:00+02:00</updated>
   <id>http://wicket.apache.org/2012/10/23/wicket-6.2.0-released</id>
   <content type="html">&lt;p&gt;The Apache Wicket PMC is proud to announce Apache Wicket 6.2.0!&lt;/p&gt;

&lt;p&gt;This release marks the second 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.&lt;/p&gt;

&lt;h2 id='new_and_noteworthy'&gt;New and noteworthy&lt;/h2&gt;

&lt;p&gt;SerializableChecker has been made easier to extend. It is now much easier to add your own checks at serialization time. For example, check whether your LoadableDetachableModels are detached, or no Hibernate entities are referenced directly from your component tree, etc.&lt;/p&gt;

&lt;p&gt;For the full changelog see the release notes attached to the end of this announcement.&lt;/p&gt;

&lt;h2 id='using_this_release'&gt;Using this release&lt;/h2&gt;

&lt;p&gt;With Apache Maven update your dependency to (and don&amp;#8217;t forget to update any other dependencies on Wicket projects to the same version):&lt;/p&gt;
&lt;div class='highlight'&gt;&lt;pre&gt;&lt;code class='xml'&gt;&lt;span class='nt'&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;org.apache.wicket&lt;span class='nt'&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;wicket-core&lt;span class='nt'&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;version&amp;gt;&lt;/span&gt;6.2.0&lt;span class='nt'&gt;&amp;lt;/version&amp;gt;&lt;/span&gt;
&lt;span class='nt'&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Or download and build the distribution yourself, or use our convenience binary package&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/6.2.0'&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.2.0&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;&lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/6.2.0/binaries'&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.2.0/binaries&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id='upgrading_from_earlier_versions'&gt;Upgrading from earlier versions&lt;/h2&gt;

&lt;p&gt;If you upgrade from 6.0.0 or 6.1.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 &lt;a href='http://s.apache.org/wicket-6.0-migration'&gt;http://s.apache.org/wicket-6.0-migration&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Have fun!&lt;/p&gt;

&lt;p&gt;— The Wicket team&lt;/p&gt;

&lt;h3 id='release_notes__wicket__version_620'&gt;Release Notes - Wicket - Version 6.2.0&lt;/h3&gt;

&lt;h4 id='subtask'&gt;Sub-task&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4752'&gt;WICKET-4752&lt;/a&gt; - Revert Wicket-4715 -Read multipart request params in WebApplication&lt;/li&gt;
&lt;/ul&gt;

&lt;h4 id='bug'&gt;Bug&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4587'&gt;WICKET-4587&lt;/a&gt; - URLRenderer renderFullUrl&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4589'&gt;WICKET-4589&lt;/a&gt; - Closing &lt;code&gt;&amp;lt;/wicket:container&amp;gt;&lt;/code&gt; tag is incorrectly setup as autocomponent&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4756'&gt;WICKET-4756&lt;/a&gt; - AtmosphereWebRequest should return true on calls to #isAjax()&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4759'&gt;WICKET-4759&lt;/a&gt; - FilterForm/FilterToolbar don&amp;#8217;t work when there&amp;#8217;s more than one IColumn to be filtered&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4769'&gt;WICKET-4769&lt;/a&gt; - Clicking on Label of Radio doesn&amp;#8217;t update component with Ajax update&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4771'&gt;WICKET-4771&lt;/a&gt; - Submitting value filled in DropDownChoice fails when tinymce textarea is on the page&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4776'&gt;WICKET-4776&lt;/a&gt; - Problems with switching between HTTP/HTTPS&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4777'&gt;WICKET-4777&lt;/a&gt; - JavaScriptReference escapes given URL&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4786'&gt;WICKET-4786&lt;/a&gt; - AjaxTabbedPanel doesn&amp;#8217;t include constructor with model&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4787'&gt;WICKET-4787&lt;/a&gt; - Registering resource bundles with duplicate resource references gives an NPE&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4788'&gt;WICKET-4788&lt;/a&gt; - FilteringHeaderResponse does not unwrap PriorityHeaderItems for filtering&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4789'&gt;WICKET-4789&lt;/a&gt; - URL rendering regression&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4791'&gt;WICKET-4791&lt;/a&gt; - UploadProgressBar hides immediately after being shown.&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4792'&gt;WICKET-4792&lt;/a&gt; - wickettester#startcomponent(component) doesn&amp;#8217;t call oninitialize&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4794'&gt;WICKET-4794&lt;/a&gt; - RfcCompliantEmailAddressValidator error message not defined&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4796'&gt;WICKET-4796&lt;/a&gt; - DatePickerTest fails because of java inconsistensy on localizing March german shortname Mrz vs Mär&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4797'&gt;WICKET-4797&lt;/a&gt; - CheckBoxMultipleChoice loses state&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4801'&gt;WICKET-4801&lt;/a&gt; - BaseWicketTester.executeAjaxEvent only fires one of multiple behaviors bound to a given event&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4806'&gt;WICKET-4806&lt;/a&gt; - AjaxEditableChoiceLabel won&amp;#8217;t close select onblur&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4810'&gt;WICKET-4810&lt;/a&gt; - CLONE - BaseWicketTester.clickLink() does not work with a ResourceLink with ResourceReference&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4816'&gt;WICKET-4816&lt;/a&gt; - Handling of semicolons in form action URLs&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4818'&gt;WICKET-4818&lt;/a&gt; - NullPointerException while reading the POST parameters&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4820'&gt;WICKET-4820&lt;/a&gt; - Race condition in ResourceSettings: getResourceWatcher() is not thread safe&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4822'&gt;WICKET-4822&lt;/a&gt; - Wicket.Event.add requires Wicket.$, but wicket-ajax-jquery is not listed as a dependency&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4824'&gt;WICKET-4824&lt;/a&gt; - Redirect to HTTPS is using wrong port 80 if HttpsConfig with default ports 80/443 is used&lt;/li&gt;
&lt;/ul&gt;

&lt;h4 id='improvement'&gt;Improvement&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4160'&gt;WICKET-4160&lt;/a&gt; - Make AbstractAutoCompleteRenderer.renderHeader() and .renderFooter() non-final&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4772'&gt;WICKET-4772&lt;/a&gt; - DataTable API and handling of AbstractToolbar&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4778'&gt;WICKET-4778&lt;/a&gt; - Add factory methods to JavaScriptHeaderItem to create a deferred JavaScript header item.&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4798'&gt;WICKET-4798&lt;/a&gt; - Make IteratorFilter.onFilter protected&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4804'&gt;WICKET-4804&lt;/a&gt; - Add #setStatus(int) in AbstractResource.ResourceResponse&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4808'&gt;WICKET-4808&lt;/a&gt; - WebClientInfo.getRemoteAddr() handling &amp;#8220;Forwarded-For&amp;#8221; value tokens not being ip addresses&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4812'&gt;WICKET-4812&lt;/a&gt; - Make SerializationChecker easier for extending so custom checks can be added to it&lt;/li&gt;
&lt;/ul&gt;

&lt;h4 id='new_feature'&gt;New Feature&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4793'&gt;WICKET-4793&lt;/a&gt; - Support Jetty 9.x websocket implementation&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4802'&gt;WICKET-4802&lt;/a&gt; - Add functionality to be able to export DataTable content&lt;/li&gt;

&lt;li&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4815'&gt;WICKET-4815&lt;/a&gt; - Interface to mark components with type safe models&lt;/li&gt;
&lt;/ul&gt;</content>
 </entry>
 
 <entry>
   <title>Apache Wicket 6.1.1 released</title>
   <link href="http://wicket.apache.org/2012/10/08/wicket-6.1.1-released.html"/>
   <updated>2012-10-08T00:00:00+02:00</updated>
   <id>http://wicket.apache.org/2012/10/08/wicket-6.1.1-released</id>
   <content type="html">&lt;p&gt;The Apache Wicket PMC is proud to announce Apache Wicket 6.1.1!&lt;/p&gt;

&lt;p&gt;This release marks the first patch 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.1.0 and 6.0.0.&lt;/p&gt;

&lt;p&gt;This release fixes two bugs in 6.1.0:&lt;/p&gt;

&lt;p&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4789'&gt;WICKET-4789&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The way URLs are encoded was changed (WICKET-4645) and now the first request (with ;jsessionid in path) generates invalid internal links.&lt;/p&gt;

&lt;p&gt;&lt;a href='https://issues.apache.org/jira/browse/WICKET-4759'&gt;WICKET-4759&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;FilterForm/FilterToolbar don&amp;#8217;t work when there&amp;#8217;s more than one IColumn to be filtered&lt;/p&gt;

&lt;p&gt;Any other issues will be released in 6.2.0&lt;/p&gt;

&lt;h2 id='using_this_release'&gt;Using this release&lt;/h2&gt;

&lt;p&gt;With Apache Maven update your dependency to (and don&amp;#8217;t forget to update any other dependencies on Wicket projects to the same version):&lt;/p&gt;
&lt;div class='highlight'&gt;&lt;pre&gt;&lt;code class='xml'&gt;&lt;span class='nt'&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;org.apache.wicket&lt;span class='nt'&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;wicket-core&lt;span class='nt'&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;
    &lt;span class='nt'&gt;&amp;lt;version&amp;gt;&lt;/span&gt;6.1.1&lt;span class='nt'&gt;&amp;lt;/version&amp;gt;&lt;/span&gt;
&lt;span class='nt'&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Or download and build the distribution yourself, or use our convenience binary package&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/6.1.1'&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.1.1&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;&lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/6.1.1/binaries'&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.1.1/binaries&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id='upgrading_from_earlier_versions'&gt;Upgrading from earlier versions&lt;/h2&gt;

&lt;p&gt;If you upgrade from 6.0.0 or 6.1.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 &lt;a href='http://s.apache.org/wicket-6.0-migration'&gt;http://s.apache.org/wicket-6.0-migration&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Have fun!&lt;/p&gt;

&lt;p&gt;— The Wicket team&lt;/p&gt;</content>
 </entry>
 
</feed>
