release notes and ver git-svn-id: https://svn.apache.org/repos/asf/wicket/branches/wicket-1.4.8@937669 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/CHANGELOG-1.4 b/CHANGELOG-1.4 index 31e922b..3f92ebd 100644 --- a/CHANGELOG-1.4 +++ b/CHANGELOG-1.4
@@ -1,6 +1,38 @@ This file contains all changes done on the 1.4 version. +Release Notes - Wicket - Version 1.4.8 + +** Bug + * [WICKET-2075] - Pagemap is locked forever with some Page serialization exceptions + * [WICKET-2424] - OnChangeAjaxBehavior + DatePicker do not work together + * [WICKET-2764] - MarkupCache messed up when using MergedMarkup (e.g. for Page markup inheritance) together with IResourceStreams that do NOT also implement IFixedLocationResourceStream + * [WICKET-2767] - DatePicker Calendar: wrong year format when 4 digits are used (yyyy), e.g. 2010 --> 0010 + * [WICKET-2772] - Generate wicketpath attribute for RadioChoice + * [WICKET-2779] - Submit a nested form via ajax to upload a file inside modal window does not work on IE. + * [WICKET-2787] - ValueMap.getAsBoolean(key, defaultValue) always returns false for non-existing keys, instead of the defaultValue + * [WICKET-2799] - @RequireHttps not switching to https when setting response page to non-bookmarkable page + * [WICKET-2802] - StringIndexOutOfBoundsException in PortletServletRequestWrapper for some resource requests + * [WICKET-2806] - Javascript looking for related radio in group is not working if css class is already assigned to radio + * [WICKET-2822] - Small Bug in JavaDoc for SpringWebApplicationFactory + +** Improvement + * [WICKET-2771] - Please support "isPrimary" for @SpringBean + * [WICKET-2776] - Enhancing RadioChoice input items with individual title and css class attributes + * [WICKET-2778] - Set Application ThreadLocal in WicketSessionFilter + * [WICKET-2796] - Improve error reporting on locked page maps + * [WICKET-2803] - ListMultipleChoice's Constructors Should Accept IModel<? extends Collection<T>> + * [WICKET-2813] - IndicatingAjaxButton should have construtors that take a IModel for the button text as does AjaxButton. + * [WICKET-2817] - ChoiceGroup's Constructor Should Accept IModel<? extends Collection<T>> + * [WICKET-2821] - More "IModel<? extends Collection<" Fixes + * [WICKET-2830] - Make BookmarkablePageRequestTargetUrlCodingStrategy#encode non final + * [WICKET-2831] - ConverterLocator#get(Class<T>) shouldn't be final + * [WICKET-2837] - Inaccurate AjaxSubmitLink Javadoc + +** Wish + * [WICKET-2847] - Make StringResourceStream non final + + Release Notes - Wicket - Version 1.4.7 ** Bug
diff --git a/archetypes/quickstart/pom.xml b/archetypes/quickstart/pom.xml index ecd0ca2..38be906 100644 --- a/archetypes/quickstart/pom.xml +++ b/archetypes/quickstart/pom.xml
@@ -3,7 +3,7 @@ <parent> <groupId>org.apache.wicket</groupId> <artifactId>wicket-parent</artifactId> - <version>1.4-SNAPSHOT</version> + <version>1.4.8</version> <relativePath>../../pom.xml</relativePath> </parent>
diff --git a/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml b/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml index e426f74..002b957 100644 --- a/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml +++ b/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
@@ -127,7 +127,7 @@ </plugins> </build> <properties> - <wicket.version>1.4-SNAPSHOT</wicket.version> + <wicket.version>1.4.8</wicket.version> <jetty.version>6.1.4</jetty.version> </properties> #end
diff --git a/pom.xml b/pom.xml index a171fe3..17303fe 100644 --- a/pom.xml +++ b/pom.xml
@@ -19,7 +19,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>org.apache.wicket</groupId> <artifactId>wicket-parent</artifactId> - <version>1.4-SNAPSHOT</version> + <version>1.4.8</version> <packaging>pom</packaging> <name>Wicket Parent</name> <description>Wicket is a Java-based open source component web application framework.</description> @@ -222,9 +222,9 @@ <url>http://wicketstuff.org/bamboo</url> </ciManagement> <scm> - <connection>scm:svn:http://svn.apache.org/repos/asf/wicket/trunk</connection> - <developerConnection>scm:svn:https://svn.apache.org/repos/asf/wicket/trunk</developerConnection> - <url>http://svn.apache.org/viewvc/wicket/trunk</url> + <connection>scm:svn:http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.8</connection> + <developerConnection>scm:svn:https://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.8</developerConnection> + <url>http://svn.apache.org/viewvc/wicket/releases/wicket-1.4.8</url> </scm> <mailingLists> <mailingList>
diff --git a/testing/wicket-threadtest/pom.xml b/testing/wicket-threadtest/pom.xml index 5cc0932..7b55967 100644 --- a/testing/wicket-threadtest/pom.xml +++ b/testing/wicket-threadtest/pom.xml
@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.wicket</groupId> <artifactId>wicket-parent</artifactId> - <version>1.4-SNAPSHOT</version> + <version>1.4.8</version> <relativePath>../../pom.xml</relativePath> </parent>
diff --git a/wicket-auth-roles/pom.xml b/wicket-auth-roles/pom.xml index 212ba9d..33cbddf 100644 --- a/wicket-auth-roles/pom.xml +++ b/wicket-auth-roles/pom.xml
@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.wicket</groupId> <artifactId>wicket-parent</artifactId> - <version>1.4-SNAPSHOT</version> + <version>1.4.8</version> <relativePath>../pom.xml</relativePath> </parent>
diff --git a/wicket-datetime/pom.xml b/wicket-datetime/pom.xml index f20d2c6..339243e 100644 --- a/wicket-datetime/pom.xml +++ b/wicket-datetime/pom.xml
@@ -21,7 +21,7 @@ <parent> <groupId>org.apache.wicket</groupId> <artifactId>wicket-parent</artifactId> - <version>1.4-SNAPSHOT</version> + <version>1.4.8</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>wicket-datetime</artifactId>
diff --git a/wicket-devutils/pom.xml b/wicket-devutils/pom.xml index 67131aa..b680759 100644 --- a/wicket-devutils/pom.xml +++ b/wicket-devutils/pom.xml
@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.wicket</groupId> <artifactId>wicket-parent</artifactId> - <version>1.4-SNAPSHOT</version> + <version>1.4.8</version> <relativePath>../pom.xml</relativePath> </parent>
diff --git a/wicket-examples/pom.xml b/wicket-examples/pom.xml index d4b5bf4..23f407a 100644 --- a/wicket-examples/pom.xml +++ b/wicket-examples/pom.xml
@@ -21,7 +21,7 @@ <parent> <groupId>org.apache.wicket</groupId> <artifactId>wicket-parent</artifactId> - <version>1.4-SNAPSHOT</version> + <version>1.4.8</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>wicket-examples</artifactId>
diff --git a/wicket-extensions/pom.xml b/wicket-extensions/pom.xml index f396479..8640d93 100644 --- a/wicket-extensions/pom.xml +++ b/wicket-extensions/pom.xml
@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.wicket</groupId> <artifactId>wicket-parent</artifactId> - <version>1.4-SNAPSHOT</version> + <version>1.4.8</version> <relativePath>../pom.xml</relativePath> </parent>
diff --git a/wicket-guice/pom.xml b/wicket-guice/pom.xml index c4ca8d7..9275f68 100644 --- a/wicket-guice/pom.xml +++ b/wicket-guice/pom.xml
@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.wicket</groupId> <artifactId>wicket-parent</artifactId> - <version>1.4-SNAPSHOT</version> + <version>1.4.8</version> <relativePath>../pom.xml</relativePath> </parent>
diff --git a/wicket-ioc/pom.xml b/wicket-ioc/pom.xml index 078752a..46b0bd6 100644 --- a/wicket-ioc/pom.xml +++ b/wicket-ioc/pom.xml
@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.wicket</groupId> <artifactId>wicket-parent</artifactId> - <version>1.4-SNAPSHOT</version> + <version>1.4.8</version> <relativePath>../pom.xml</relativePath> </parent>
diff --git a/wicket-jmx/pom.xml b/wicket-jmx/pom.xml index 5166fd0..2046d7a 100644 --- a/wicket-jmx/pom.xml +++ b/wicket-jmx/pom.xml
@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.wicket</groupId> <artifactId>wicket-parent</artifactId> - <version>1.4-SNAPSHOT</version> + <version>1.4.8</version> <relativePath>../pom.xml</relativePath> </parent>
diff --git a/wicket-objectssizeof-agent/pom.xml b/wicket-objectssizeof-agent/pom.xml index 8712b60..f8e1200 100644 --- a/wicket-objectssizeof-agent/pom.xml +++ b/wicket-objectssizeof-agent/pom.xml
@@ -21,7 +21,7 @@ <parent> <groupId>org.apache.wicket</groupId> <artifactId>wicket-parent</artifactId> - <version>1.4-SNAPSHOT</version> + <version>1.4.8</version> <relativePath>../pom.xml</relativePath> </parent>
diff --git a/wicket-quickstart/pom.xml b/wicket-quickstart/pom.xml index c140ed0..a021e3d 100644 --- a/wicket-quickstart/pom.xml +++ b/wicket-quickstart/pom.xml
@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.wicket</groupId> <artifactId>wicket-parent</artifactId> - <version>1.4-SNAPSHOT</version> + <version>1.4.8</version> <relativePath>../pom.xml</relativePath> </parent>
diff --git a/wicket-spring/pom.xml b/wicket-spring/pom.xml index 10d65ad..aab1ba1 100644 --- a/wicket-spring/pom.xml +++ b/wicket-spring/pom.xml
@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.wicket</groupId> <artifactId>wicket-parent</artifactId> - <version>1.4-SNAPSHOT</version> + <version>1.4.8</version> <relativePath>../pom.xml</relativePath> </parent>
diff --git a/wicket-velocity/pom.xml b/wicket-velocity/pom.xml index 6a1e429..4fb3643 100644 --- a/wicket-velocity/pom.xml +++ b/wicket-velocity/pom.xml
@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.wicket</groupId> <artifactId>wicket-parent</artifactId> - <version>1.4-SNAPSHOT</version> + <version>1.4.8</version> <relativePath>../pom.xml</relativePath> </parent>
diff --git a/wicket/pom.xml b/wicket/pom.xml index 5ef39c5..86d264c 100644 --- a/wicket/pom.xml +++ b/wicket/pom.xml
@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.wicket</groupId> <artifactId>wicket-parent</artifactId> - <version>1.4-SNAPSHOT</version> + <version>1.4.8</version> <relativePath>../pom.xml</relativePath> </parent>