From 01c44c8bf68c0f0fa296792746eebb6f4a24e3ee Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Sun, 10 Feb 2013 00:02:45 +0100 Subject: [PATCH] Further enhancements for 3.2.2 --- src/dist/changelog.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/dist/changelog.txt b/src/dist/changelog.txt index b7e6c0e9df..370c5614bc 100644 --- a/src/dist/changelog.txt +++ b/src/dist/changelog.txt @@ -8,6 +8,7 @@ Changes in version 3.2.2 (2013-03-07) * official support for Hibernate 4.2 (SPR-10255) * ConfigurationClassPostProcessor consistently uses ClassLoader, not loading core JDK annotations via ASM (SPR-10249) +* ConfigurationClassPostProcessor detects covariant return type mismatch, avoiding infinite recursion (SPR-10261) * ConfigurationClassPostProcessor allows for overriding of scoped-proxy bean definitions (SPR-10265) * "depends-on" attribute on lang namespace element actually respected at runtime now (SPR-8625) * allow for ordering of mixed AspectJ before/after advices (SPR-9438) @@ -17,6 +18,8 @@ Changes in version 3.2.2 (2013-03-07) * @Scheduled provides String variants of fixedDelay, fixedRate, initialDelay for placeholder support (SPR-8067) * refined CronSequenceGenerator's rounding up of seconds to address second-specific cron expressions (SPR-9459) * SQLErrorCodeSQLExceptionTranslator tries to find SQLException with actual error code among causes (SPR-10260) +* deprecated (NamedParameter)JdbcTemplate's queryForInt/Long operations in favor of queryForObject (SPR-10257) +* added useful query variants without parameters to NamedParameterJdbcTemplate, for convenience in DAOs (SPR-10256) * DefaultMessageListenerContainer invokes specified ExceptionListener for recovery exceptions as well (SPR-10230) * DefaultMessageListenerContainer logs recovery failures at error level and exposes "isRecovering()" method (SPR-10230) * MediaType throws dedicated InvalidMediaTypeException instead of generic IllegalArgumentException (SPR-10226)