From: Juergen H. <jho...@us...> - 2008-10-24 10:39:14
|
Update of /cvsroot/springframework/spring In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8117 Modified Files: changelog.txt readme.txt Log Message: prepared for 2.5.6 release Index: changelog.txt =================================================================== RCS file: /cvsroot/springframework/spring/changelog.txt,v retrieving revision 1.738 retrieving revision 1.739 diff -C2 -d -r1.738 -r1.739 *** changelog.txt 21 Oct 2008 20:01:43 -0000 1.738 --- changelog.txt 24 Oct 2008 10:36:32 -0000 1.739 *************** *** 4,8 **** ! Changes in version 2.5.6 (2008-10-22) ------------------------------------- --- 4,8 ---- ! Changes in version 2.5.6 (2008-10-27) ------------------------------------- *************** *** 108,112 **** --- 108,114 ---- * HibernateTemplate's "loadAll" operation selects distinct root entities (avoiding duplicate entries in result list) * HibernateTemplate translates Hibernate's DataException into a Spring DataIntegrityViolationException (for consistency) + * fixed HibernateTransactionManager's "earlyFlushBeforeCommit" feature to not switch to FlushMode.NEVER too early * added "packagesToScan" property to Hibernate AnnotationSessionFactoryBean, for autodetection of @Entity classes + * HibernateJpaDialect checks "EntityManager.getDelegate()" as well to find Hibernate Session (for Seam compatibility) * added "persistenceXmlLocation" property to DefaultPersistenceUnitManager, as alternative to "persistenceXmlLocations" * @PersistenceContext of type TRANSACTION allows returned Query objects to be parameterized and executed as well *************** *** 139,142 **** --- 141,145 ---- Package org.springframework.util + * fixed "StringUtils.delete" to prevent an eternal loop in case of the pattern being empty * "StringUtils.cleanPath" preserves leading slash if given in original path * "FileSystemUtils.copyRecursively" ignores 'special' files (i.e. neither a regular file nor a directory) *************** *** 146,149 **** --- 149,153 ---- * revised "WebUtils.extractFilenameFromUrlPath" to search actual URI part only even when given a URL with query string * Log4jNestedDiagnosticContextFilter/Interceptor explicitly remove the NDC stack if depth=0 after the "NDC.pop()" call + * fixed FacesWebRequest's "getParameterValues" implementation to use "ExternalContext.getRequestParameterValuesMap" * PortletContextResource cleans given path (analogous to ServletContextResource) * Servlet/PortletContextResource accept path with leading "/../" part as well (as accepted by most servlet containers) Index: readme.txt =================================================================== RCS file: /cvsroot/springframework/spring/readme.txt,v retrieving revision 1.160 retrieving revision 1.161 diff -C2 -d -r1.160 -r1.161 *** readme.txt 2 Jul 2008 14:16:38 -0000 1.160 --- readme.txt 24 Oct 2008 10:36:32 -0000 1.161 *************** *** 1,4 **** ! THE SPRING FRAMEWORK, release 2.5.6 (July 2008) ! ----------------------------------------------- http://www.springframework.org --- 1,4 ---- ! THE SPRING FRAMEWORK, release 2.5.6 (October 2008) ! -------------------------------------------------- http://www.springframework.org *************** *** 113,117 **** - Dependencies: spring-core, (spring-beans, AOP Alliance) ! * "spring-beans" (~475 KB) - Contents: JavaBeans support, bean container - Dependencies: spring-core --- 113,117 ---- - Dependencies: spring-core, (spring-beans, AOP Alliance) ! * "spring-beans" (~480 KB) - Contents: JavaBeans support, bean container - Dependencies: spring-core *************** *** 129,141 **** - Dependencies: Commons Logging, (Commons Attributes) ! * "spring-jdbc" (~320 KB) - Contents: JDBC support - Dependencies: spring-beans, spring-tx ! * "spring-jms" (~185 KB) - Contents: JMS 1.0.2/1.1 support - Dependencies: spring-beans, spring-tx, JMS API ! * "spring-orm" (~365 KB) - Contents: JDO support, JPA support, Hibernate support, TopLink support, iBATIS support - Dependencies: spring-jdbc, (spring-web) --- 129,141 ---- - Dependencies: Commons Logging, (Commons Attributes) ! * "spring-jdbc" (~330 KB) - Contents: JDBC support - Dependencies: spring-beans, spring-tx ! * "spring-jms" (~190 KB) - Contents: JMS 1.0.2/1.1 support - Dependencies: spring-beans, spring-tx, JMS API ! * "spring-orm" (~370 KB) - Contents: JDO support, JPA support, Hibernate support, TopLink support, iBATIS support - Dependencies: spring-jdbc, (spring-web) *************** *** 161,165 **** - Dependencies: spring-web, Portlet API, (spring-webmvc) ! * "spring-webmvc-struts" (~40 KB) - Contents: Struts 1.x action support, Tiles 1.x view support - Dependencies: spring-web, Struts API, (spring-webmvc) --- 161,165 ---- - Dependencies: spring-web, Portlet API, (spring-webmvc) ! * "spring-webmvc-struts" (~35 KB) - Contents: Struts 1.x action support, Tiles 1.x view support - Dependencies: spring-web, Struts API, (spring-webmvc) |