[ANNOUNCE] Apache Wicket 7.0.0-M3 Released

2014-09-05 Thread Martijn Dashorst
We have released the third in a series of milestone releases for Apache
Wicket 7. We aim to finalise Wicket 7 over the coming months and
request your help in testing the new major version.

Caveats
---

It is still a development version so expect API breaks to happen over
the course of the coming milestone releases.

Semantic versioning
---

As we adopted semver Wicket 7 will be the first release since 6.0
where we are able to refactor the API. We will continue to use semver
when we have made Wicket 7 final and maintain api compatibility
between minor versions of Wicket 7.

Requirements


Wicket 7 requires the following:

 - Java 7
 - Servlet 3 compatible container

You can't mix wicket libraries from prior Wicket versions with Wicket 7.

Migration guide
---

As usual we have a migration guide available online for people
migrating their applications to Wicket 7. We will continue to update
the guide as development progresses. If you find something that is not
in the guide, please update the guide, or let us know so we can update
the guide.

You can find the guide here:  http://s.apache.org/wicket7migrate

Using this release
--

This is pre-release software: use at your own peril!

With Apache Maven update your dependency to (and don't forget to
update any other dependencies on Wicket projects to the same version):

dependency
groupIdorg.apache.wicket/groupId
artifactIdwicket-core/artifactId
version7.0.0-M2/version
/dependency

Or download and build the distribution yourself, or use our
convenience binary package

 * Source: http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M2
 * Binary: http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M2/binaries

Have fun and let us know what you think!



The signatures for the source release artefacts:


Signature for apache-wicket-7.0.0-M3.zip:

-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
Comment: GPGTools - https://gpgtools.org

iEYEABECAAYFAlQAbW0ACgkQJBX8W/xy/UUC1gCgrS4LfdT7+WyZK/CbzhS6hva9
vV8An3Gh3rhl9n3XGsVdO3Rv2OxC7K8q
=AEvS
-END PGP SIGNATURE-

Signature for apache-wicket-7.0.0-M3.tar.gz:

-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
Comment: GPGTools - https://gpgtools.org

iEYEABECAAYFAlQAbW0ACgkQJBX8W/xy/UVx8QCaA7bZh2WhYOtk2f5mTrptBkLS
K5QAnRAjJOb+sh0wI86AAnd7kcGCblIu
=xRnJ
-END PGP SIGNATURE-



CHANGELOG for 7.0.0-M3:

Sub-task


* [WICKET-5633] - Make JavaScriptFilteredIntoFooterHeaderResponse
non-final to be able to create custom filters

Bug
---

* [WICKET-5241] - RequestLogger's server duration does not include
'detach duration'
* [WICKET-5371] - IllegalArgumentException: Argument 'page' may not be
null. - when sending event from asynchronous process
* [WICKET-5564] - AjaxRequestTarget.focusComponent() does not work
when two Ajax responses arrive next to each other
* [WICKET-5578] - Stateless/Statefull pages - incorrect behaviour
* [WICKET-5603] - OnChangeAjaxBehavior attached to DropDownChoice
produces two Ajax requests in Chrome v35
* [WICKET-5607] - Wicket Ajax fires calls scheduled by
AbstractAjaxTimerBehavior even after unload of the page
* [WICKET-5609] - AutoCompleteTextField can only complete text that is
visible on screen browser screen
* [WICKET-5615] - UploadProgressBar does not show up if no
FileUploadField is given
* [WICKET-5616] - CLONE - ModalWindow is not visible in Safari when
opened from a link at the bottom of a large page
* [WICKET-5619] - ConcurrentModificationException may occur when
calling EventBus.post()
* [WICKET-5624] - Do not throw when WebSocket is not supported
* [WICKET-5626] - ConcatBundleResource#reportError() doesn't print the
resource attributes
* [WICKET-5630] - Fix last button translation germany of wizard to 'Letzter'
* [WICKET-5631] - Allow submitting with POST method for PhantomJS
* [WICKET-5636] - Update StatelessForm's and AbstractRepeater's
javadoc that FormComponents should be repeated only with RepeatingView
* [WICKET-5637] - Fix the encoding of the Chinese translations for
Wizard component
* [WICKET-5639] - ResourceResponse does not write headers when status
code is set
* [WICKET-5643] - WebPageRenderer should bind a Session if redirect is
required and the session is temporary.
* [WICKET-5644] - AjaxWizardButtonBar broken since ARA#preventDefault is false
* [WICKET-5647] - missing generic cast causes compile error on OS X / jdk 8
* [WICKET-5655] - Problem with setting of IComponentInheritedModel and
FLAG_INHERITABLE_MODEL
* [WICKET-5656] - PropertyResolver does not scan for NotNull in annotation tree
* [WICKET-5657] - wicket-autocomplete may fail after preceeding Ajax request
* [WICKET-5662] - @SpringBean(name=something, required=false) still
throws org.springframework.beans.factory.NoSuchBeanDefinitionException:
No 

Re: [ANNOUNCE] Apache Wicket 7.0.0-M3 Released

2014-09-05 Thread Martin Grigorov
On Sep 5, 2014 3:35 PM, Martijn Dashorst dasho...@apache.org wrote:

 We have released the third in a series of milestone releases for Apache
 Wicket 7. We aim to finalise Wicket 7 over the coming months and
 request your help in testing the new major version.

 Caveats
 ---

 It is still a development version so expect API breaks to happen over
 the course of the coming milestone releases.

 Semantic versioning
 ---

 As we adopted semver Wicket 7 will be the first release since 6.0
 where we are able to refactor the API. We will continue to use semver
 when we have made Wicket 7 final and maintain api compatibility
 between minor versions of Wicket 7.

 Requirements
 

 Wicket 7 requires the following:

  - Java 7
  - Servlet 3 compatible container

 You can't mix wicket libraries from prior Wicket versions with Wicket 7.

 Migration guide
 ---

 As usual we have a migration guide available online for people
 migrating their applications to Wicket 7. We will continue to update
 the guide as development progresses. If you find something that is not
 in the guide, please update the guide, or let us know so we can update
 the guide.

 You can find the guide here:  http://s.apache.org/wicket7migrate

 Using this release
 --

 This is pre-release software: use at your own peril!

 With Apache Maven update your dependency to (and don't forget to
 update any other dependencies on Wicket projects to the same version):

 dependency
 groupIdorg.apache.wicket/groupId
 artifactIdwicket-core/artifactId
 version7.0.0-M2/version

This should be read as M3

 /dependency

 Or download and build the distribution yourself, or use our
 convenience binary package

  * Source: http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M2
  * Binary: http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M2/binaries

Same here


 Have fun and let us know what you think!

 

 The signatures for the source release artefacts:


 Signature for apache-wicket-7.0.0-M3.zip:

 -BEGIN PGP SIGNATURE-
 Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
 Comment: GPGTools - https://gpgtools.org

 iEYEABECAAYFAlQAbW0ACgkQJBX8W/xy/UUC1gCgrS4LfdT7+WyZK/CbzhS6hva9
 vV8An3Gh3rhl9n3XGsVdO3Rv2OxC7K8q
 =AEvS
 -END PGP SIGNATURE-

 Signature for apache-wicket-7.0.0-M3.tar.gz:

 -BEGIN PGP SIGNATURE-
 Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
 Comment: GPGTools - https://gpgtools.org

 iEYEABECAAYFAlQAbW0ACgkQJBX8W/xy/UVx8QCaA7bZh2WhYOtk2f5mTrptBkLS
 K5QAnRAjJOb+sh0wI86AAnd7kcGCblIu
 =xRnJ
 -END PGP SIGNATURE-

 

 CHANGELOG for 7.0.0-M3:

 Sub-task
 

 * [WICKET-5633] - Make JavaScriptFilteredIntoFooterHeaderResponse
 non-final to be able to create custom filters

 Bug
 ---

 * [WICKET-5241] - RequestLogger's server duration does not include
 'detach duration'
 * [WICKET-5371] - IllegalArgumentException: Argument 'page' may not be
 null. - when sending event from asynchronous process
 * [WICKET-5564] - AjaxRequestTarget.focusComponent() does not work
 when two Ajax responses arrive next to each other
 * [WICKET-5578] - Stateless/Statefull pages - incorrect behaviour
 * [WICKET-5603] - OnChangeAjaxBehavior attached to DropDownChoice
 produces two Ajax requests in Chrome v35
 * [WICKET-5607] - Wicket Ajax fires calls scheduled by
 AbstractAjaxTimerBehavior even after unload of the page
 * [WICKET-5609] - AutoCompleteTextField can only complete text that is
 visible on screen browser screen
 * [WICKET-5615] - UploadProgressBar does not show up if no
 FileUploadField is given
 * [WICKET-5616] - CLONE - ModalWindow is not visible in Safari when
 opened from a link at the bottom of a large page
 * [WICKET-5619] - ConcurrentModificationException may occur when
 calling EventBus.post()
 * [WICKET-5624] - Do not throw when WebSocket is not supported
 * [WICKET-5626] - ConcatBundleResource#reportError() doesn't print the
 resource attributes
 * [WICKET-5630] - Fix last button translation germany of wizard to
'Letzter'
 * [WICKET-5631] - Allow submitting with POST method for PhantomJS
 * [WICKET-5636] - Update StatelessForm's and AbstractRepeater's
 javadoc that FormComponents should be repeated only with RepeatingView
 * [WICKET-5637] - Fix the encoding of the Chinese translations for
 Wizard component
 * [WICKET-5639] - ResourceResponse does not write headers when status
 code is set
 * [WICKET-5643] - WebPageRenderer should bind a Session if redirect is
 required and the session is temporary.
 * [WICKET-5644] - AjaxWizardButtonBar broken since ARA#preventDefault is
false
 * [WICKET-5647] - missing generic cast causes compile error on OS X / jdk
8
 * [WICKET-5655] - Problem with setting of IComponentInheritedModel and
 FLAG_INHERITABLE_MODEL
 * [WICKET-5656] - PropertyResolver does not scan for NotNull in
annotation tree
 *