Author: ivaynberg
Date: Thu Oct 20 16:02:10 2011
New Revision: 1186872
URL: http://svn.apache.org/viewvc?rev=1186872&view=rev
Log:
changelog
Modified:
wicket/trunk/CHANGELOG-1.5
wicket/trunk/release-igor.sh
Modified: wicket/trunk/CHANGELOG-1.5
URL:
http://svn.apache.org/viewvc/wicket/trunk/CHANGELOG-1.5?rev=1186872&r1=1186871&r2=1186872&view=diff
==============================================================================
--- wicket/trunk/CHANGELOG-1.5 (original)
+++ wicket/trunk/CHANGELOG-1.5 Thu Oct 20 16:02:10 2011
@@ -11,6 +11,7 @@ Release Notes - Wicket - Version 1.5.2
* [WICKET-4099] - SmartLinkLabel doesn't recognize already tagged links
* [WICKET-4102] - AutoLabelTextResolver fails to pick up locale changes in
the session
* [WICKET-4105] - Using ajax to update a component that has an
AbstractTransformerBehavior attached throws a ClassCastException
+ * [WICKET-4107] - StatelessForm resubmitting via GET
* [WICKET-4109] - AutocompleteTextField after Submit does not work
* [WICKET-4111] - addDomReadyEvent broken for IE
* [WICKET-4112] - WicketTester#startComponentInPage and
WicketTester#assertModelValue have inconsistent behavior.
@@ -26,12 +27,17 @@ Release Notes - Wicket - Version 1.5.2
* [WICKET-4135] - retrying of exception handling
* [WICKET-4136] - component without close tag fails with "Unable to find
close tag for" if it is the last componet on page
* [WICKET-4141] - Automatic Linking in base page broken
+ * [WICKET-4152] - NPE in CachingResourceStreamLocator due to the search in
parent's markup in Autolink code
** Improvement
* [WICKET-2244] - Allow overriding of the Validator default MessageKey
* [WICKET-4098] - AjaxLazyLoadPanelTester should take BaseWicketTester as
parameter
* [WICKET-4117] - Improve markup parsing in order to generate a meaningful
message when a not balanced quote is found.
+** New Feature
+ * [WICKET-4147] - Add Application and Session lifecycle listeners
+ * [WICKET-4148] - Add listener to intercept behavior instantiation just
like we do component instantiation
+
** Task
* [WICKET-4095] - Adding wicket-example for rendering a Page in the
current requestCycle
Modified: wicket/trunk/release-igor.sh
URL:
http://svn.apache.org/viewvc/wicket/trunk/release-igor.sh?rev=1186872&r1=1186871&r2=1186872&view=diff
==============================================================================
--- wicket/trunk/release-igor.sh (original)
+++ wicket/trunk/release-igor.sh Thu Oct 20 16:02:10 2011
@@ -33,6 +33,15 @@ stty -echo
read passphrase
stty $stty_orig
+# test the GPGP passphrase to fail-fast:
+echo "$passphrase" | gpg --passphrase-fd 0 --armor --output pom.xml.asc
--detach-sig pom.xml
+gpg --verify pom.xml.asc
+if [ $? -ne 0 ]; then
+ echo "It appears that you fat-fingered your GPG passphrase"
+ exit $?
+fi
+rm pom.xml.asc
+
echo "modifying poms with the new version: $version"
mvn5 versions:set -DnewVersion=$version
mvn5 versions:commit