backport from 1.1.x
33e3a6c - c20602d meaning: c20602d 7f9a096 d439f9b 33e3a6c changed xsd:boolean to string SGF-78 handle CACHING_PROXY in client FB SGF-80 update spring & gemfire dependencies update changelog re-add handle CACHING_PROXY in client FB SGF-80
This commit is contained in:
@@ -2,11 +2,19 @@ SPRING DATA GEMFIRE CHANGELOG
|
||||
=============================
|
||||
http://www.springsource.org/spring-gemfire
|
||||
|
||||
Changes in version 1.1.0.RELEASE (2011-12-14)
|
||||
Changes in version 1.1.1.RELEASE (2012-03-20)
|
||||
---------------------------------------------
|
||||
|
||||
General
|
||||
* Upgraded to GemFire 6.6.2
|
||||
* Upgraded to Spring Framework 3.1.1 GA
|
||||
|
||||
Package org.springframework.data.gemfire
|
||||
* Fixed incorrect parsing of pdx-serializer (from value to reference)
|
||||
* Fixed incorrect parsing of use-bean-factory-locator
|
||||
|
||||
Package org.springframework.data.gemfire.client
|
||||
* Fixed bug that caused client namespace to create only local regions
|
||||
|
||||
|
||||
Changes in version 1.1.0.RELEASE (2011-12-14)
|
||||
|
||||
@@ -5,9 +5,9 @@ log4jVersion = 1.2.16
|
||||
slf4jVersion = 1.6.4
|
||||
|
||||
# Common libraries
|
||||
springVersion = 3.1.0.RELEASE
|
||||
springVersion = 3.1.1.RELEASE
|
||||
springDataCommonsVersion = 1.3.0.M1
|
||||
gemfireVersion = 6.6.1
|
||||
gemfireVersion = 6.6.2
|
||||
|
||||
# Testing
|
||||
junitVersion = 4.8.1
|
||||
@@ -17,7 +17,7 @@ hamcrestVersion = 1.2.1
|
||||
# Manifest properties
|
||||
|
||||
## OSGi ranges
|
||||
spring.range = "[3.1.0, 4.0.0)"
|
||||
spring.range = "[3.0.0, 4.0.0)"
|
||||
gemfire.range = "[6.5, 7.0)"
|
||||
|
||||
# --------------------
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
junitVersion = 4.8.1
|
||||
springVersion = 3.1.0.RELEASE
|
||||
springVersion = 3.1.1.RELEASE
|
||||
version = 1.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -93,6 +93,9 @@ public class ClientRegionFactoryBean<K, V> extends RegionLookupFactoryBean<K, V>
|
||||
else if (DataPolicy.PERSISTENT_REPLICATE.equals(dataPolicy)) {
|
||||
s = ClientRegionShortcut.LOCAL_PERSISTENT;
|
||||
}
|
||||
else if (DataPolicy.NORMAL.equals(this.dataPolicy)) {
|
||||
s = ClientRegionShortcut.CACHING_PROXY;
|
||||
}
|
||||
else {
|
||||
s = ClientRegionShortcut.LOCAL;
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
targetNamespace="http://www.springframework.org/schema/gemfire"
|
||||
elementFormDefault="qualified"
|
||||
attributeFormDefault="unqualified"
|
||||
version="1.1">
|
||||
version="1.1.1">
|
||||
|
||||
<xsd:import namespace="http://www.springframework.org/schema/beans"/>
|
||||
<xsd:import namespace="http://www.springframework.org/schema/tool"/>
|
||||
@@ -1074,7 +1074,7 @@ The client subscription configuration that is used to control a clients use of s
|
||||
<xsd:attribute name="max-time-between-pings" use="optional" type="xsd:string" default="60000" />
|
||||
<xsd:attribute name="message-time-to-live" use="optional" type="xsd:string" default="180" />
|
||||
<xsd:attribute name="socket-buffer-size" use="optional" type="xsd:string" default="32768" />
|
||||
<xsd:attribute name="notify-by-subscription" use="optional" type="xsd:boolean" default="true" />
|
||||
<xsd:attribute name="notify-by-subscription" use="optional" type="xsd:string" default="true" />
|
||||
<xsd:attribute name="groups" use="optional" type="xsd:string" default="">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation><![CDATA[
|
||||
|
||||
Reference in New Issue
Block a user