You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@polygene.apache.org by pa...@apache.org on 2016/09/12 01:16:08 UTC

[4/8] zest-java git commit: Upgrade Geode to 1.0.0-incubating-M3

Upgrade Geode to 1.0.0-incubating-M3

If you are using the Geode EntityStore, note that the default region
name has changed from 'zest:entitystore:region' to
'zest-entitystore-region' because Geode M3 introduced constraints on
Geode region names.


Project: http://git-wip-us.apache.org/repos/asf/zest-java/repo
Commit: http://git-wip-us.apache.org/repos/asf/zest-java/commit/82b8e460
Tree: http://git-wip-us.apache.org/repos/asf/zest-java/tree/82b8e460
Diff: http://git-wip-us.apache.org/repos/asf/zest-java/diff/82b8e460

Branch: refs/heads/develop
Commit: 82b8e460007c7a2388223d45d27e49e41f0eaf5c
Parents: 3f4227c
Author: Paul Merlin <pa...@apache.org>
Authored: Sun Sep 11 15:03:44 2016 -0700
Committer: Paul Merlin <pa...@apache.org>
Committed: Sun Sep 11 15:06:13 2016 -0700

----------------------------------------------------------------------
 .../org/apache/zest/entitystore/geode/GeodeConfiguration.java    | 4 +++-
 libraries.gradle                                                 | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zest-java/blob/82b8e460/extensions/entitystore-geode/src/main/java/org/apache/zest/entitystore/geode/GeodeConfiguration.java
----------------------------------------------------------------------
diff --git a/extensions/entitystore-geode/src/main/java/org/apache/zest/entitystore/geode/GeodeConfiguration.java b/extensions/entitystore-geode/src/main/java/org/apache/zest/entitystore/geode/GeodeConfiguration.java
index 08ad752..0de35cc 100644
--- a/extensions/entitystore-geode/src/main/java/org/apache/zest/entitystore/geode/GeodeConfiguration.java
+++ b/extensions/entitystore-geode/src/main/java/org/apache/zest/entitystore/geode/GeodeConfiguration.java
@@ -73,9 +73,11 @@ public interface GeodeConfiguration
     /**
      * Geode Region Name.
      *
+     * Region names may only be alphanumeric and may contain hyphens or underscores.
+     *
      * @return Geode Region Name
      */
-    @UseDefaults( "zest:entitystore:region" )
+    @UseDefaults( "zest-entitystore-region" )
     Property<String> regionName();
 }
 // END SNIPPET: config

http://git-wip-us.apache.org/repos/asf/zest-java/blob/82b8e460/libraries.gradle
----------------------------------------------------------------------
diff --git a/libraries.gradle b/libraries.gradle
index e026904..63d3567 100644
--- a/libraries.gradle
+++ b/libraries.gradle
@@ -29,7 +29,7 @@ def dnsJavaVersion = '2.1.7'
 def ehcacheVersion = '2.10.2.2.21' // 3.x exists
 def elasticsearchVersion = '1.7.5' // 2.x exists
 def freemarkerVersion = '2.3.25-incubating'
-def geodeVersion = '1.0.0-incubating.M2'
+def geodeVersion = '1.0.0-incubating.M3'
 def groovyVersion = '2.4.7'
 def h2Version = '1.4.192'
 def hazelcastVersion = '3.7.1'