[geode] branch support/1.14 updated: Bumping version to 1.14.0

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.14
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/support/1.14 by this push:
 new d53d06d  Bumping version to 1.14.0
d53d06d is described below

commit d53d06d315ce8afd36ac6bb19aef45a33949f0ba
Author: Owen Nichols 
AuthorDate: Thu Feb 11 16:49:51 2021 -0800

Bumping version to 1.14.0
---
 geode-book/config.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geode-book/config.yml b/geode-book/config.yml
index 3c1c5d3..b3d2bda 100644
--- a/geode-book/config.yml
+++ b/geode-book/config.yml
@@ -28,7 +28,7 @@ template_variables:
   product_name_long: Apache Geode
   product_name: Geode
   product_name_lowercase: geode
-  product_version: '1.14'
+  product_version: '1.14.0'
   product_version_nodot: '114'
   product_version_geode: '1.14'
   min_java_version: '8'



[geode] branch support/1.14 updated: remove outdated copies of release scripts to ensure they are not run by accident

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.14
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/support/1.14 by this push:
 new ebb41f2  remove outdated copies of release scripts to ensure they are 
not run by accident
ebb41f2 is described below

commit ebb41f242373012cb018a49a16ed8df156fc467d
Author: Owen Nichols 
AuthorDate: Thu Feb 11 16:49:46 2021 -0800

remove outdated copies of release scripts to ensure they are not run by 
accident
---
 dev-tools/release/README.md  |  31 +-
 dev-tools/release/commit_rc.sh   | 146 ---
 dev-tools/release/create_support_branches.sh | 270 
 dev-tools/release/deploy_rc_pipeline.sh  | 622 ---
 dev-tools/release/end_of_support.sh  | 155 ---
 dev-tools/release/license_review.sh  | 362 
 dev-tools/release/prepare_rc.sh  | 347 ---
 dev-tools/release/print_rc_email.sh  | 101 -
 dev-tools/release/promote_rc.sh  | 507 --
 dev-tools/release/set_copyright.sh   |  57 ---
 dev-tools/release/set_versions.sh| 176 
 11 files changed, 1 insertion(+), 2773 deletions(-)

diff --git a/dev-tools/release/README.md b/dev-tools/release/README.md
index 493ce10..4bc08cd 100644
--- a/dev-tools/release/README.md
+++ b/dev-tools/release/README.md
@@ -1,30 +1 @@
-# geode/dev-tools/release
-This directory contains scripts to help create a release of Geode and manage 
branches.
-
-Not all release steps have scripts.  Please follow all instructions as 
documented in the wiki: [Releasing Apache 
Geode](https://cwiki.apache.org/confluence/display/GEODE/Releasing+Apache+Geode).
-
-These scripts are intended to be run from the parent directory of your geode 
develop checkout, e.g.:
-
-$ cd ..
-$ geode/dev-tools/release/foo.sh
-
-## Overview of scripts
-
-**license\_review.sh** compares versions with a previous release and/or checks 
that all bundled dependencies are noted in appropriate LICENSE file
-
-**create\_support\_branches.sh** cuts support/x.y from develop for all 
projects and walks you through creating pipelines and setting version numbers
-
-**set\_copyright.sh** updates the copyright year
-
-**set\_versions.sh** updates files that need to contain the version number 
planned for the next release from this support branch
-
-**prepare\_rc.sh** Checks out the various geode repos, builds a release 
candidate, and publishes to nexus staging repo
-
-**commit\_rc.sh** Pushes the tags and artifacts staged by prepare\_rc.sh and 
then runs print\_rc\_email.sh
-
-**print\_rc\_email.sh** Generates an email to send to the dev list announcing 
a release candidate
-
-**promote\_rc.sh** Tags an RC as the final release, builds docker images, 
merges to master, and starts the mirroring and brew processes
-
-**end\_of\_support.sh** cleans up pipelines and branches after 9-month life of 
support branch is reached
-
+See [Releasing Apache 
Geode](https://cwiki.apache.org/confluence/display/GEODE/Releasing+Apache+Geode)
diff --git a/dev-tools/release/commit_rc.sh b/dev-tools/release/commit_rc.sh
deleted file mode 100755
index 7331a12..000
--- a/dev-tools/release/commit_rc.sh
+++ /dev/null
@@ -1,146 +0,0 @@
-#!/usr/bin/env bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#  http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-set -e
-
-usage() {
-echo "Usage: print_rc_email.sh -v version_number -m maven_repo_id"
-echo "  -v   The #.#.#.RC# version number"
-echo "  -m   The 4 digit id of the nexus maven repo"
-exit 1
-}
-
-FULL_VERSION=""
-MAVEN=""
-
-while getopts ":v:m:" opt; do
-  case ${opt} in
-v )
-  FULL_VERSION=$OPTARG
-  ;;
-m )
-  MAVEN=$OPTARG
-  ;;
-\? )
-  usage
-  ;;
-  esac
-done
-
-if [[ ${FULL_VERSION} == "" ]] || [[ ${MAVEN} == "" ]]; then
-usage
-fi
-
-if [[ $FULL_VERSION =~ ^([0-9]+\.[0-9]+\.[0-9]+)\.(RC[0-9]+)$ ]]; then
-VERSION=${BASH_REMATCH[1]}
-else
-echo "Malformed version number ${FULL_VERSION}. Example valid version: 
1.9.0.RC1"
-exit 1
-fi
-
-VERSION_MM=${VERSION%.*}
-
-set -x
-WORKSPAC

[geode-examples] 01/01: pair develop examples with 1.15.0 now that support/1.14 has been created

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-examples.git

commit d8b16a64f4f592eeded1c95e72fb8c4a5bce27f3
Author: Owen Nichols 
AuthorDate: Thu Feb 11 16:48:04 2021 -0800

pair develop examples with 1.15.0 now that support/1.14 has been created
---
 gradle.properties | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gradle.properties b/gradle.properties
index 8486676..bf8f18f 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -14,8 +14,8 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 #
-version = 1.14.0-build.0
-geodeVersion = 1.14.+
+version = 1.15.0-build.0
+geodeVersion = 1.15.+
 
 # release properties, set these on the command line to validate against
 # a release candidate



[geode-examples] branch develop updated (15e25f7 -> d8b16a6)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-examples.git.


from 15e25f7  GEODE-8496: Bump gradle from 5.4 to 5.5 to match geode
 add 12a3c52  Bumping copyright year to 2021
 new d8b16a6  pair develop examples with 1.15.0 now that support/1.14 has 
been created

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 NOTICE| 2 +-
 gradle.properties | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)



[geode-benchmarks] branch support/1.14 created (now c973383)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to branch support/1.14
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git.


  at c973383  Bumping copyright year to 2021

No new revisions were added by this update.



[geode-examples] 01/01: Bumping copyright year to 2021

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.14
in repository https://gitbox.apache.org/repos/asf/geode-examples.git

commit 12a3c52b75d77b195d1312d88915ba580ab5e26e
Author: Owen Nichols 
AuthorDate: Thu Feb 11 16:27:16 2021 -0800

Bumping copyright year to 2021
---
 NOTICE | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/NOTICE b/NOTICE
index 1494bf3..9b3a413 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
 Apache Geode Examples
-Copyright 2017-2020 The Apache Software Foundation.
+Copyright 2017-2021 The Apache Software Foundation.
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).



[geode-examples] branch support/1.14 created (now 12a3c52)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to branch support/1.14
in repository https://gitbox.apache.org/repos/asf/geode-examples.git.


  at 12a3c52  Bumping copyright year to 2021

This branch includes the following new commits:

 new 12a3c52  Bumping copyright year to 2021

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




[geode] branch support/1.14 created (now 83cc3d4)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to branch support/1.14
in repository https://gitbox.apache.org/repos/asf/geode.git.


  at 83cc3d4  GEODE-8944: Bumping copyright year to 2021 (#6032)

No new revisions were added by this update.



[geode-benchmarks] branch develop updated: Bumping copyright year to 2021

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git


The following commit(s) were added to refs/heads/develop by this push:
 new c973383  Bumping copyright year to 2021
c973383 is described below

commit c973383c50c5ae5069f8b4efc2817c0a45686743
Author: Owen Nichols 
AuthorDate: Thu Feb 11 16:27:17 2021 -0800

Bumping copyright year to 2021
---
 NOTICE | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/NOTICE b/NOTICE
index a9040f9..2953ca4 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
 Apache Geode Benchmarks
-Copyright 2018-2020 The Apache Software Foundation.
+Copyright 2018-2021 The Apache Software Foundation.
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).



[geode-native] branch develop updated: Bumping copyright year to 2021

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
 new 6fea972  Bumping copyright year to 2021
6fea972 is described below

commit 6fea972286d07364825467b0a75d92bbe34e11ba
Author: Owen Nichols 
AuthorDate: Thu Feb 11 16:27:17 2021 -0800

Bumping copyright year to 2021
---
 NOTICE  | 2 +-
 dist/NOTICE | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/NOTICE b/NOTICE
index 9bf355a..b3bfbf8 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
 Apache Geode Native Client
-Copyright 2017-2020 The Apache Software Foundation.
+Copyright 2017-2021 The Apache Software Foundation.
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
diff --git a/dist/NOTICE b/dist/NOTICE
index 68b6289..b3bfbf8 100644
--- a/dist/NOTICE
+++ b/dist/NOTICE
@@ -1,5 +1,5 @@
 Apache Geode Native Client
-Copyright 2017 The Apache Software Foundation.
+Copyright 2017-2021 The Apache Software Foundation.
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).



[geode] branch develop updated (636aac6 -> 83cc3d4)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git.


from 636aac6  GEODE-8906: work around permission error on Windows 
acceptance tests (#6026)
 add 83cc3d4  GEODE-8944: Bumping copyright year to 2021 (#6032)

No new revisions were added by this update.

Summary of changes:
 NOTICE   | 2 +-
 geode-assembly/src/main/dist/NOTICE  | 2 +-
 geode-pulse/src/main/webapp/META-INF/NOTICE  | 2 +-
 geode-web-api/src/main/webapp/META-INF/NOTICE| 2 +-
 geode-web-management/src/main/webapp/META-INF/NOTICE | 2 +-
 geode-web/src/main/webapp/META-INF/NOTICE| 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)



[geode] annotated tag rel/v1.12.1.RC3 updated (9006226 -> 23ee1fc)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to annotated tag rel/v1.12.1.RC3
in repository https://gitbox.apache.org/repos/asf/geode.git.


*** WARNING: tag rel/v1.12.1.RC3 was modified! ***

from 9006226  (commit)
  to 23ee1fc  (tag)
 tagging 9006226ae0820cf826efbd20cdaf4fca42c804f1 (commit)
 replaces rel/v1.12.1.RC2
  by Owen Nichols
  on Thu Feb 11 14:36:25 2021 -0800

- Log -
Release candidate 1.12.1.RC3
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEE21R2gVpHVXRXfUQrRopIAOr7JJgFAmAlsWkACgkQRopIAOr7
JJjXaQ/+IhUqng61NoOVH5QJ05PXQ2771rY/QtfKUHATZ2fDnx47jeOIAPPCHxm+
v5Fazj/0OyrF97bJAtDnyaACSJAa//2iV85nGxjUGLkkXWBUxtaM7Ag0HEx2L1A0
Dg8VDuUIdulrHIvaiJhNx71SSbPeJbCCPSPJpG3ciGnnwp2aaWXDmvxHiYKxk3Lv
MAZT/hIBN+Dri1CnGCyUclij75xzN5kLTPqq+WIATtdGv2eytcxCRTE0Jgsn1ERi
CQuuZmQkfaxpbv+l377OzEJj+amRfQlUwrQUS6FF7mOz3bveGlqpdb0mQzL4gPgx
Oreg6qwWwWYZKeABLmajlVFDHWfcO1XIQ8EGtd5PG/Bsx6fcpyFhwR2XeVhw8pGv
MEn72/w+2xFYnivs7GDTr0eM7tB9r1GPokTzb820AMa2IBK9t6eIZdDKYzyC24eq
YwQl+UaNc19cxIrwYo6rKGV0lPrDKkkR8cP1jDO/oSE0zwkXliUsxJIQ1YTurGOu
NT7yQ4p/zTgqbYrN/Nxnmkpov9wqZj++qFcNsxyqtX3PHS4uH34crC6tESOgA3bQ
L3ML3DR0naINk3aJUXO99vD93JoOlUgVj+qIfIsPt3zlyJJjxYv8PMh7iusEXB11
tLgx8kmEMN0eREkvB6UJRN8grd2EutA15K78MuAQdVomLycgQWo=
=5tku
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



[geode-benchmarks] annotated tag rel/v1.12.1.RC3 updated (543f0db -> 689251c)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to annotated tag rel/v1.12.1.RC3
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git.


*** WARNING: tag rel/v1.12.1.RC3 was modified! ***

from 543f0db  (commit)
  to 689251c  (tag)
 tagging 543f0dbce4ec6ae7b5eff21700fce2d369ec2ecd (commit)
 replaces rel/v1.12.0
  by Owen Nichols
  on Thu Feb 11 14:36:25 2021 -0800

- Log -
Release candidate 1.12.1.RC3
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEE21R2gVpHVXRXfUQrRopIAOr7JJgFAmAlsWkACgkQRopIAOr7
JJg/cg/+LxKH1HTJNkbz3EUjj2vuhkCLnw5MWoodAm9l9Z073j3YLS2Do5Z6iLKH
uwzJcgSUEjHyCx27bHQcKkP+SqyPmcf67T3YCZe8VNiAioMA4NsQpAQ0MQ+AsNaa
nQDcx5fjR51ncEv7za9a/KVMDHFTkDbXu0TnxsaE58rkeYc4a3T3ZWOlBCbc7xhU
NJkEWTeBO0LV4dXJPVwZe0Xk8MuNeretVWDQxzoVMaQJqIOyE8KYhtxqX+BXynEV
QBKW5R9FAR5zcJuKPpXTwC2Z1EkGkBxA1i/Ky6OAFKkcpoGzV5FUFn6yQiIZ5GrG
4RNg7ZZr+kfgYfaqRdD5P/fN6MOYyPnc7bEDHQTeNT49+z1I+/Pac4odKaoMGuEP
QIdKv1+MtvO5TiOl3lSix1tdz0HLbcC0FMr63Foipoun6CsOj0/HwrNTN6e4o4aS
x+uXwL5Z3pyiTsXoRm3TQtMtpZN/rFzcz1sf1NIEJz8FwuwXKgWjLlhzv5JlAjV2
q1DWu2C8q0MRXUxLkM3JTmy54d+/UOfUlMvhGvbJYwoeCR+YAtehY6oxR1UOdPtt
V8t2dZEUsBj/WAxmOELarcEpYmiO3Uwa9+PSs3kFhhICRD+11rajpiJMrxY1BIwS
Buy/Nwdje2FN0byQSrtFD+twF74iuZK+07KnvOtPcn0s/m9GtGs=
=RI9Q
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



[geode-native] annotated tag rel/v1.12.1.RC3 updated (ba8fd9b -> e218137)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to annotated tag rel/v1.12.1.RC3
in repository https://gitbox.apache.org/repos/asf/geode-native.git.


*** WARNING: tag rel/v1.12.1.RC3 was modified! ***

from ba8fd9b  (commit)
  to e218137  (tag)
 tagging ba8fd9b99df53551da1e1d4349509795944739c4 (commit)
 replaces rel/v1.12.1.RC2
  by Owen Nichols
  on Thu Feb 11 14:36:25 2021 -0800

- Log -
Release candidate 1.12.1.RC3
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEE21R2gVpHVXRXfUQrRopIAOr7JJgFAmAlsWkACgkQRopIAOr7
JJhgshAAqtoiVEImHLK+ZHdyE1YaAfwg/36EHL8II3s2Ej46wl4fAyzWbAlV/wYj
OgMBB3vBxa1TNyUPGtp/XOGxdyKdmBfyhyvWtSvfzHyRgKuMsIS/d6KstdiQsHZL
d6Do3Fje+UtBVicwQiyvjkqv8SpPgAPVdg4kj5/ZBEuSDIhJH8bs03Erny2AAvl2
ldGXC7SppubApePdG/CATJLGSTHodi7UIzzEM4KrNgZpJcHlMqDAvKUNFaXEBQrZ
dGswRbRARPM+0tUBXwUrds0K8sZW3kev/VbcGrdF9gPzrUqON/1NMZwk6NvCkXZ8
WrIqa5hcBhtb2nkscv6coe2jzhA8DVKyf+lLzQuT4+vxd8l+1ZgkVAo6fQaysqTp
PkRKfwNA23HnAxSc//ortI74J0uME+woggYzvzfSZEL4VtIhnHKLkz0l9yU0Ukmz
4J/tFzZkJTtw75F9bLIN/Lwn3eG/5XrkaTB9cxDBaib+FMfWylPjsQlll/1D3jAM
SdD62Vw0W2/L96bwlJYok+6Q86Dm7KilTBqC0sv/anxi6H3h4hskyUXqDIlb1TTn
1d3szzk7TZamvi9dE8VixzT0g8gQC9VgATsYnK04Jhf6qmQCERhJXDkDcUC791yW
IVmGo5NhaK6rd9I1qjXDyjDZ0G6ceWHjUTSwk8tuDh6SYHZHEk8=
=Lq6Y
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



[geode-native] branch support/1.12 updated (21fcdb8 -> ba8fd9b)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-native.git.


from 21fcdb8  Bumping copyright year to 2021
 add ba8fd9b  Bumping copyright year to 2021

No new revisions were added by this update.

Summary of changes:
 dist/NOTICE | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[geode-examples] annotated tag rel/v1.12.1.RC3 updated (f27cc8d -> b234fc9)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to annotated tag rel/v1.12.1.RC3
in repository https://gitbox.apache.org/repos/asf/geode-examples.git.


*** WARNING: tag rel/v1.12.1.RC3 was modified! ***

from f27cc8d  (commit)
  to b234fc9  (tag)
 tagging f27cc8dff255fd4be3e2d0848a66e07c8dd33f00 (commit)
 replaces rel/v1.12.1.RC2
  by Owen Nichols
  on Thu Feb 11 14:36:25 2021 -0800

- Log -
Release candidate 1.12.1.RC3
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEE21R2gVpHVXRXfUQrRopIAOr7JJgFAmAlsWkACgkQRopIAOr7
JJhHIQ//cJWHlYJul2i6k6X6Vi8hzBz6ShZWtENC6SOWtbXL132N9U59afGMFI6n
1Hzt4kcUd5F0F5WW0pSLxmp0GSA0k+ILJ1uzNguv3MrIkOsSVEawY3hwv9x9ctwp
M/YgWrmWNuRAztm0ZbmYjicwi4X+6vlEDzvzcggPm/5RIySHSB4DmGJbXZK8H+MM
qjn5i4pdq30p0HQT3ad/Ywhz8Z4Vd/cKW8JChwENYbfGHJNKgKfzkjKNRrY7oDKd
o5ORox5ayrsKat9BYpfuBlaFVXrd/kb/qHNBVm7zQLRiP0EQbCf500gvXh0uC85L
a63ESt0lzCXIyAyHGcgWQ/9oWUsXQIUEkozQibdIpARUoXsmiAv+Goa21fycM6xt
mJK+W+vV0Fz3f5abEHiEzIWqe1coE6ofeum0haDE5IpdgGjWIRD00AFubcTyvcWM
hJDFhUliNo28i8lTBKMxH3XbXV6B81Ok7mUn/gH5R02rOA4F94Sx/RJICw3dj/gE
SL5DCfzalwVn8YSAxX7j/ZZP/0Wsgz1IBpHB65kMa+GfiQ4aBvMd4jx+0nQ8ZRhy
Qe6is8zlaFkkzP8f/EWfEA/B/qFy1skhlVT7t7Hrv4Ux4GquVmLi9DCEW9FgNTSy
Bny7PSzSGbtD/O4UrBkA3cJOQcxal7vqKMSXjoioqGlpmznp2gs=
=TDcI
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



[geode-examples] branch support/1.12 updated: Bumping version to 1.12.1

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-examples.git


The following commit(s) were added to refs/heads/support/1.12 by this push:
 new 1dd74e0  Bumping version to 1.12.1
1dd74e0 is described below

commit 1dd74e07452c8869381ae6dbebfbdf3a731f80a2
Author: Owen Nichols 
AuthorDate: Thu Feb 11 14:49:48 2021 -0800

Bumping version to 1.12.1
---
 gradle.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gradle.properties b/gradle.properties
index 4057b93..0813fbe 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 version = 1.12.1-build.0
-geodeVersion = 1.12.1
+geodeVersion = 1.12.+
 
 # release properties, set these on the command line to validate against
 # a release candidate



[geode] branch support/1.12 updated (d03fe4d -> 9006226)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode.git.


from d03fe4d  Bumping version to 1.12.1
 add 9006226  Bumping copyright year to 2021

No new revisions were added by this update.

Summary of changes:
 geode-assembly/src/main/dist/NOTICE  | 2 +-
 geode-pulse/src/main/webapp/META-INF/NOTICE  | 2 +-
 geode-web-api/src/main/webapp/META-INF/NOTICE| 2 +-
 geode-web-management/src/main/webapp/META-INF/NOTICE | 2 +-
 geode-web/src/main/webapp/META-INF/NOTICE| 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)



[geode-examples] 03/03: temporarily point to staging repo for CI purposes

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-examples.git

commit 552a4b6d531746c7410d677cff739e444e690999
Author: Owen Nichols 
AuthorDate: Thu Feb 11 14:49:44 2021 -0800

temporarily point to staging repo for CI purposes
---
 gradle.properties | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gradle.properties b/gradle.properties
index 5302fd2..4057b93 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -19,8 +19,8 @@ geodeVersion = 1.12.1
 
 # release properties, set these on the command line to validate against
 # a release candidate
-geodeRepositoryUrl =
-geodeReleaseUrl =
+geodeRepositoryUrl = 
https://repository.apache.org/content/repositories/orgapachegeode-1074
+geodeReleaseUrl = https://dist.apache.org/repos/dist/dev/geode/1.12.1.RC3
 
 # dependency versions not found in geode-all-bom
 micrometerVersion = 1.2.1



[geode-examples] 01/03: Bumping version to 1.12.1

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-examples.git

commit 60258199000442adbfd1dddcce270d9494c371d0
Author: Owen Nichols 
AuthorDate: Thu Feb 11 14:32:36 2021 -0800

Bumping version to 1.12.1
---
 gradle.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gradle.properties b/gradle.properties
index 1483181..5a8be17 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 version = 1.12.1-build.0
-geodeVersion = 1.12.+
+geodeVersion = 1.12.1
 
 # release properties, set these on the command line to validate against
 # a release candidate



[geode-examples] branch support/1.12 updated (c4cf1c4 -> 552a4b6)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-examples.git.


from c4cf1c4  Bumping version to 1.12.1
 new 6025819  Bumping version to 1.12.1
 new f27cc8d  Revert "temporarily point to staging repo for CI purposes"
 new 552a4b6  temporarily point to staging repo for CI purposes

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gradle.properties | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)



[geode-examples] 02/03: Revert "temporarily point to staging repo for CI purposes"

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-examples.git

commit f27cc8dff255fd4be3e2d0848a66e07c8dd33f00
Author: Owen Nichols 
AuthorDate: Thu Feb 11 14:35:16 2021 -0800

Revert "temporarily point to staging repo for CI purposes"
---
 gradle.properties | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gradle.properties b/gradle.properties
index 5a8be17..5302fd2 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -19,8 +19,8 @@ geodeVersion = 1.12.1
 
 # release properties, set these on the command line to validate against
 # a release candidate
-geodeRepositoryUrl = 
https://repository.apache.org/content/repositories/orgapachegeode-1073
-geodeReleaseUrl = https://dist.apache.org/repos/dist/dev/geode/1.12.1.RC2
+geodeRepositoryUrl =
+geodeReleaseUrl =
 
 # dependency versions not found in geode-all-bom
 micrometerVersion = 1.2.1



svn commit: r46050 - in /dev/geode: 1.12.1.RC2/ 1.12.1.RC3/

2021-02-11 Thread dixie
Author: dixie
Date: Thu Feb 11 22:49:42 2021
New Revision: 46050

Log:
Releasing Apache Geode 1.12.1.RC3 distribution

Added:
dev/geode/1.12.1.RC3/
dev/geode/1.12.1.RC3/apache-geode-1.12.1-src.tgz   (with props)
dev/geode/1.12.1.RC3/apache-geode-1.12.1-src.tgz.asc
dev/geode/1.12.1.RC3/apache-geode-1.12.1-src.tgz.sha256
dev/geode/1.12.1.RC3/apache-geode-1.12.1.tgz   (with props)
dev/geode/1.12.1.RC3/apache-geode-1.12.1.tgz.asc
dev/geode/1.12.1.RC3/apache-geode-1.12.1.tgz.sha256
dev/geode/1.12.1.RC3/apache-geode-benchmarks-1.12.1-src.tgz   (with props)
dev/geode/1.12.1.RC3/apache-geode-benchmarks-1.12.1-src.tgz.asc
dev/geode/1.12.1.RC3/apache-geode-benchmarks-1.12.1-src.tgz.sha256
dev/geode/1.12.1.RC3/apache-geode-examples-1.12.1-src.tgz   (with props)
dev/geode/1.12.1.RC3/apache-geode-examples-1.12.1-src.tgz.asc
dev/geode/1.12.1.RC3/apache-geode-examples-1.12.1-src.tgz.sha256
dev/geode/1.12.1.RC3/apache-geode-native-1.12.1-src.tgz   (with props)
dev/geode/1.12.1.RC3/apache-geode-native-1.12.1-src.tgz.asc
dev/geode/1.12.1.RC3/apache-geode-native-1.12.1-src.tgz.sha256
Removed:
dev/geode/1.12.1.RC2/

Added: dev/geode/1.12.1.RC3/apache-geode-1.12.1-src.tgz
==
Binary file - no diff available.

Propchange: dev/geode/1.12.1.RC3/apache-geode-1.12.1-src.tgz
--
svn:mime-type = application/octet-stream

Added: dev/geode/1.12.1.RC3/apache-geode-1.12.1-src.tgz.asc
==
--- dev/geode/1.12.1.RC3/apache-geode-1.12.1-src.tgz.asc (added)
+++ dev/geode/1.12.1.RC3/apache-geode-1.12.1-src.tgz.asc Thu Feb 11 22:49:42 
2021
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCAAdFiEE21R2gVpHVXRXfUQrRopIAOr7JJgFAmAlsWoACgkQRopIAOr7
+JJiUfg//SHQi/wjkjkcagmsvripLCU9DVuMI4Dy7HWT+wObVkeTE/S8ocoHFUVL5
+s/+YcGTzCnEapfMu0RayZMqx2yGz2pmItUlnhQWQxSsn3/XikBctew/Mhcc4uJZ4
+Gf7kbZnAwM0Pr2YNvgO1Uis/apUQK+zl6p0hRNrkCKT+iupB1Qsh81Ai5OHwrfhZ
+ZFOd/O3ahPxJ+pTYc0KZmYSzUvOiPYyeZhL0QpcuOP7eAHgC1Fey0eZaQ2crUdfH
+CrDe3Whr6rHBPhpIrMk2LUx26ppp8tl+yb+EqzzX7DaI3vGi6BtdztUSdf7Z+lcQ
+IKqESCjxcaeobr55ZDdnccoO5qz0aNjOfy8TOEA84y485T8tf59kM3P1zGRAi7xB
+qu/X2oahe0Wl8gWx8QqEwaw6cS69u3Xek0ZO575HS5LPMfm32Py8Rrekm0Nnf6wI
+f6Tn9jr/hAj8oQNhBabTDp3cOjsOizUsjjsqOto/BRW2vX+Sx6HCDbtM0QGQiJ5m
+WCmkcboB5ALri+WaUOQeqBBjblRT46H6fZgDDhp8OPvpctiuDx1o5c9mlU1U7gHM
+AgwZUTkF9pEzunoKNWz8YwspjgUd9MSbDZ4707oC/YC1Joir1llrBN01zOUfxdVY
+UGd1YJqvCoqVMBl8+kQ3yoZ9GIboVxNl/FqRFiwLAFvLFSAxvGc=
+=lSDm
+-END PGP SIGNATURE-

Added: dev/geode/1.12.1.RC3/apache-geode-1.12.1-src.tgz.sha256
==
--- dev/geode/1.12.1.RC3/apache-geode-1.12.1-src.tgz.sha256 (added)
+++ dev/geode/1.12.1.RC3/apache-geode-1.12.1-src.tgz.sha256 Thu Feb 11 22:49:42 
2021
@@ -0,0 +1 @@
+db3998ae44937f318cb167c88381f134f312044bafe1ce78fdf2148e1150c4a5 
*apache-geode-1.12.1-src.tgz

Added: dev/geode/1.12.1.RC3/apache-geode-1.12.1.tgz
==
Binary file - no diff available.

Propchange: dev/geode/1.12.1.RC3/apache-geode-1.12.1.tgz
--
svn:mime-type = application/octet-stream

Added: dev/geode/1.12.1.RC3/apache-geode-1.12.1.tgz.asc
==
--- dev/geode/1.12.1.RC3/apache-geode-1.12.1.tgz.asc (added)
+++ dev/geode/1.12.1.RC3/apache-geode-1.12.1.tgz.asc Thu Feb 11 22:49:42 2021
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: BCPG v1.61
+
+iQIcBAABAgAGBQJgJbEjAAoJEEaKSADq+ySYhBgP/i4Iol+H8mui7ar1CCqtw+Z4
+Dh+VOdDODv4qk06/RMFMDKSPnFuVgShaVyoQg1J7sdB25ohCiEOZBeIbCYTltSfP
+g5sgQM1ql+7MwAeeq0THC+ew271wjaAzhR9c2jYHiLwhA4O8iQf7WHGhDBQIhqIM
+YvoUAKLa7UT7Drb4+pwLZQS7bTPUcIxVqEgw/foqOp3oBhMJjphkhPpMRy33oqRl
+J/MTa5Wtc9thIK5OF0Y+4hZVa+0V0+1hXsttc9P8RQIf0OqMRRM7ouW0KILDyWUh
+uQ5ifxd36ULicFsy3aHi3N/gXMI/IRTzGVrzdxvU/WQa1qaoWbIpzHTBPf7LGzdD
+2dW9POvBlMHt8kkVOEyUONQbzmfwciDMb89KljARCMIzBBrNAsVBMavXxRVB1DJp
+ZvRrLOHktdNDX9kODjsvok9D399p0c/haRNHD7wsAF6YdwyE/L7Tmwvj+Z3EY4Bd
+VnlJZ3jIoAXqyinZ4Z5Hu/2pEAMF8AobfbVhEXDk4icQPgN8WoU1+v3Bo4awRDdx
+yD2VR+BWPv/5jsHyIJ6/BaieLvaM8bekdciNN5z5NxFv81GnTTpsxijScUJqMR8w
+a9/nT3nqRMWSUGCj543cbXJi8EdtCGW64AolMWksvDXMLTWo71fWcqMJN3Jw4Hjw
+EFQBKmxttk3CdG4eEt0X
+=PEQH
+-END PGP SIGNATURE-

Added: dev/geode/1.12.1.RC3/apache-geode-1.12.1.tgz.sha256
==
--- dev/geode/1.12.1.RC3/apache-geode-1.12.1.tgz.sha256 (added)
+++ dev/geode/1.12.1.RC3/apache-geode-1.12.1.tgz.sha256 Thu Feb 11 22:49:42 2021
@@ -0,0 +1 @@
+64dcc09e22274b428163ddcbdf4fafd5754061204e9d9fca88b62dff5b9e1c16 
*apache-geode-1.12.1.tgz

Added: dev/geode/1.12.1.RC3/apache

[geode-benchmarks] annotated tag rel/v1.12.1.RC2 updated (543f0db -> b166e78)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to annotated tag rel/v1.12.1.RC2
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git.


*** WARNING: tag rel/v1.12.1.RC2 was modified! ***

from 543f0db  (commit)
  to b166e78  (tag)
 tagging 543f0dbce4ec6ae7b5eff21700fce2d369ec2ecd (commit)
 replaces rel/v1.12.0
  by Owen Nichols
  on Thu Feb 11 13:55:30 2021 -0800

- Log -
Release candidate 1.12.1.RC2
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEE21R2gVpHVXRXfUQrRopIAOr7JJgFAmAlp9IACgkQRopIAOr7
JJhJSw/9G9l0UdYW/N0yUNk5p+Zf+swz5bmvKUyiXSwMDra2auEdj4xv11EVZyYS
+YGAlGj3FAnm1ihIbbr0KNNgig3OAByktHMHMeNVFzUvsR+Ov7zVv7pJOM2rXhXE
9m9lLbWmuiDMrTp6eAJE/pfIMHsFaeVEOMvNNj6sr4V5CkesUmggzP9ZRjHAjXGC
Yy0ugVwvIvqRvbOz26omPsJbJHt7dwJii8jVN+YoKPfuhnQMb5tU0mJx1O516ZMP
35bNZQXyVZAve4+Dzyk1eJrHdGCZpDmfsRhIt4t9Td+dsdeKy4Q+8ExPO5REmE02
Tm+IodUdgzvvi1D18PcECYQye73Ir8fEWyBj6KlMCasXEelJfODsVSscB9Ly3JXr
IANCp7mDbLHRR+G6XjEae5fF1zupOta8ltZ7mhpJaYw/l1chO9gK4NxA0i+L7Pv6
WuZEEY4zbwMlMWu20ijpIGtyTMkRfYKcX6mMtVTWzkO52zghTr6BhkPNtMRoSmlg
54OKazi2wkPBx6t+3TpIYqtGLQnLNqjQ/maX8stH3U7ohptQFZShKj/8k8oS2sns
Dc6xABBNdW7fyS87wMCL7+yvW+rpqNIKyw9co8N+uV9iOT4kEb1TckoGzBO0hAhu
f0AdjIliBWXZUDsmrAId+V2LuoasEfZ7vNtWA2mUhhZExZPOyRc=
=aQ6g
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



[geode-native] annotated tag rel/v1.12.1.RC2 updated (21fcdb8 -> bb6b60a)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to annotated tag rel/v1.12.1.RC2
in repository https://gitbox.apache.org/repos/asf/geode-native.git.


*** WARNING: tag rel/v1.12.1.RC2 was modified! ***

from 21fcdb8  (commit)
  to bb6b60a  (tag)
 tagging 21fcdb8d3847a3ef9a372726a309049778e2e488 (commit)
 replaces rel/v1.12.0
  by Owen Nichols
  on Thu Feb 11 13:55:30 2021 -0800

- Log -
Release candidate 1.12.1.RC2
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEE21R2gVpHVXRXfUQrRopIAOr7JJgFAmAlp9IACgkQRopIAOr7
JJg3YQ/7BOnzIcJTYEw7bmO5hqUNjspx/xBAW8Se8RI5qggpw/+Ms91QQqoaqMFF
/4gjlWiG+ctnp5ObwpbcwKyBybjE3W5gv7NUrF4oEVt7TufeLerG2HAnFM/w40eW
tqdq/SO/j+DBo0L8+MKHcd6hvkUNAY1s7TzYfOy5uKzr/fbix92F+aRjlVZOaW77
PnbfM66yarSm0XFwAo2qMQrCM83Ob3sIEikxeCn70hhaX9BGiPh899Gx4VoRM5zm
kiPEIl4khepVSrFLJRLXRI1pRrvvhp2ooBB9T/LYDHsnnf88OjU6J9NoUWZJ5POk
mfGLg4sNI8mATDnwJY3siS747j48vk+XaAb+yK5BcNAe23edCwxmQiFDk/RZkkLJ
dCZjsGiXv+CvYHQAGs5VBGjVf6v9c7aMn94XoHAFaL3h/ccma1S3klVCm97JFrm8
mK5En4C59wRF6ob0xxmyNmifGp8H0OtAty+OxbzhTkSHr2xaalJtRa8A+tjsvQGn
hwxGavC1XL4kh857a5sL/En82WApVgo1boOUa27NuJ856rVP4E7o8EdxZ3UsAG02
NEJe3+gfNiM3qQs0hSQ52Qxzw75E3yfn0/uxruiTJ8mkpSROIjLzS7kbZjBasiTe
g1ViZYVBB0KgCfLGjzPR5gHL3xxt+pPh7XALifiZmx9/cf+2xHo=
=3Iu1
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



[geode-examples] annotated tag rel/v1.12.1.RC2 updated (b88adb4 -> 01e55f2)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to annotated tag rel/v1.12.1.RC2
in repository https://gitbox.apache.org/repos/asf/geode-examples.git.


*** WARNING: tag rel/v1.12.1.RC2 was modified! ***

from b88adb4  (commit)
  to 01e55f2  (tag)
 tagging b88adb41301c359e155037710aceeefa34661252 (commit)
 replaces rel/v1.12.1.RC1
  by Owen Nichols
  on Thu Feb 11 13:55:30 2021 -0800

- Log -
Release candidate 1.12.1.RC2
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEE21R2gVpHVXRXfUQrRopIAOr7JJgFAmAlp9IACgkQRopIAOr7
JJjfAw//e0SetZoa3nnXvc+Yn0F8UwEIc2yISQxa0L0sEIHioyT3WbLFgoUu39W/
BcUlcwz3uctWp4vm61qLygkbMbSBTveXqowg+rP5UXCec+/Pz+7/1OYd84zEJaT7
aLnPt2n8y/WvDCqP9fgKKIxsI8WTBrD1HBXJuddPgPAHX/OJ5xbCOmiyymB7eQXv
+70+VanTg9PwSxVPU+3i8ZSOrt6T16YgotnSMW5LtTC2rEG0fO3Q0TiG2Vb+cUyO
3NnMsH9Ytza9tlnayvMEVU6/urREmUvNmT8zCa4tiWK5MCmAucwB4PXq9fulh/jb
KpvmzVB1pZi+Jii9O0jspR36rrMRa4NX8NlslvIxAjjDFllIs+JoBB2KeRCugpLC
IY75Eh2kZ8a50mjex3+pRJ2BQP3mkkdXTZp9T4papLKk458oLHmLHtTtk3jeoCqp
8tlc+esu3eiWK3FxkrCIcsOa1EdF6Ad/Z4LeascpvWbN5UPota6pE6CLOqrnoMQv
KK030bif2h6Jb2qlUFdQt/3LJA14MF0b0gCJYAugKT4lmIsmbpUMsr3eaP8iw3Wu
WJd6dGah548pS8nLZmTWV9b3bm6uCphvsJ4g+vp9nJWcxdErqttedydWBdeUym90
8HsVwRa3ItYKO0TEO8RQc/V/2M3u2tq7atjQcnwvRpAaUrXUUhs=
=73VO
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



[geode-examples] branch support/1.12 updated: Bumping version to 1.12.1

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-examples.git


The following commit(s) were added to refs/heads/support/1.12 by this push:
 new c4cf1c4  Bumping version to 1.12.1
c4cf1c4 is described below

commit c4cf1c4ef9fc813b59fa065e3cc2ccdbec04944c
Author: Owen Nichols 
AuthorDate: Thu Feb 11 14:08:23 2021 -0800

Bumping version to 1.12.1
---
 gradle.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gradle.properties b/gradle.properties
index 5a8be17..1483181 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 version = 1.12.1-build.0
-geodeVersion = 1.12.1
+geodeVersion = 1.12.+
 
 # release properties, set these on the command line to validate against
 # a release candidate



[geode] annotated tag rel/v1.12.1.RC2 updated (d03fe4d -> 1366600)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to annotated tag rel/v1.12.1.RC2
in repository https://gitbox.apache.org/repos/asf/geode.git.


*** WARNING: tag rel/v1.12.1.RC2 was modified! ***

from d03fe4d  (commit)
  to 1366600  (tag)
 tagging d03fe4d05395e4e530078f47cd779d51d1ed1ce3 (commit)
 replaces rel/v1.12.0
  by Owen Nichols
  on Thu Feb 11 13:55:30 2021 -0800

- Log -
Release candidate 1.12.1.RC2
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEE21R2gVpHVXRXfUQrRopIAOr7JJgFAmAlp9IACgkQRopIAOr7
JJhonQ/7BvvR6gXW+vIzoYTx1b8b8L+ld6WNAzeiIhnctVurGXrWoNMqj7hT5Usc
/zceZKaCO7gzl4PMSXzIwUYALSuq7TKs1cks+nTNb4WayEx9B1PgsL+M1MXgEFFC
b2ez5RqenrwAF5sJH+vX6zn+eKkEtvk56CewrwCe9gUCtmIQxfAd1HJXZ7CQwIIH
F/J5Ic0exyNjlmGJAYu9U0MR7FqgyhjJODVRoyT33b6rPsA8wBAYos8jjjynS9Ub
MaFnxyn5kG8C2W1Jsgq5QpuEW/fsVWMorx+xkkuGEVmqjDjahbCWTG6fr7vgaJh2
TEYxI9ThtatYqmk8fThprsd4mZHo0UJgToK6I8xXJSLUWdD27BP7OpEU/bDoLcrK
cxUztdI1f0d3EdnfWgo6YoxtO5cRB6C4jg10lMteUMUD9QtvMAfXjsBELfh619+V
sQLwsDysJ0EyxNl7XzqNijiiuoF9mUUbK1e4GNvbKABtD43Ag0N4jWommmtFv87D
nnr9y6yhbWEbtWwne6ZFZkhDsJjXewHTEVVKUOlkRpbBSgFT3bdIAklAmL9i/QGY
g5u5Pb8Rh9Tj52kCveYMpKNvqNYxM2sNy272xb9wrSDfVE48084H79xABZsP6krd
M4GO58y4pIX9ZeoRbSzR0j/H5YnZOW1F7t45BFo5Y5hGb4k8SI4=
=PJV6
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



[geode-examples] branch support/1.12 updated (d235195 -> 2737dc2)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-examples.git.


from d235195  Bumping version to 1.12.1
 new c15caeb  Bumping version to 1.12.1
 new b88adb4  Revert "temporarily point to staging repo for CI purposes"
 new 2737dc2  temporarily point to staging repo for CI purposes

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gradle.properties | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)



[geode-examples] 03/03: temporarily point to staging repo for CI purposes

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-examples.git

commit 2737dc2ff7f42c4da3ef14cde83549f8c1317566
Author: Owen Nichols 
AuthorDate: Thu Feb 11 14:08:18 2021 -0800

temporarily point to staging repo for CI purposes
---
 gradle.properties | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gradle.properties b/gradle.properties
index 5302fd2..5a8be17 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -19,8 +19,8 @@ geodeVersion = 1.12.1
 
 # release properties, set these on the command line to validate against
 # a release candidate
-geodeRepositoryUrl =
-geodeReleaseUrl =
+geodeRepositoryUrl = 
https://repository.apache.org/content/repositories/orgapachegeode-1073
+geodeReleaseUrl = https://dist.apache.org/repos/dist/dev/geode/1.12.1.RC2
 
 # dependency versions not found in geode-all-bom
 micrometerVersion = 1.2.1



[geode-examples] 01/03: Bumping version to 1.12.1

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-examples.git

commit c15caeb8dcfacf36e58c6f9a1cd37f7aea4db890
Author: Owen Nichols 
AuthorDate: Thu Feb 11 13:52:17 2021 -0800

Bumping version to 1.12.1
---
 gradle.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gradle.properties b/gradle.properties
index 73ca915..9537cd8 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 version = 1.12.1-build.0
-geodeVersion = 1.12.+
+geodeVersion = 1.12.1
 
 # release properties, set these on the command line to validate against
 # a release candidate



[geode-examples] 02/03: Revert "temporarily point to staging repo for CI purposes"

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-examples.git

commit b88adb41301c359e155037710aceeefa34661252
Author: Owen Nichols 
AuthorDate: Thu Feb 11 13:54:13 2021 -0800

Revert "temporarily point to staging repo for CI purposes"
---
 gradle.properties | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gradle.properties b/gradle.properties
index 9537cd8..5302fd2 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -19,8 +19,8 @@ geodeVersion = 1.12.1
 
 # release properties, set these on the command line to validate against
 # a release candidate
-geodeRepositoryUrl = 
https://repository.apache.org/content/repositories/orgapachegeode-1072
-geodeReleaseUrl = https://dist.apache.org/repos/dist/dev/geode/1.12.1.RC1
+geodeRepositoryUrl =
+geodeReleaseUrl =
 
 # dependency versions not found in geode-all-bom
 micrometerVersion = 1.2.1



svn commit: r46049 - in /dev/geode: 1.12.1.RC1/ 1.12.1.RC2/

2021-02-11 Thread dixie
Author: dixie
Date: Thu Feb 11 22:08:17 2021
New Revision: 46049

Log:
Releasing Apache Geode 1.12.1.RC2 distribution

Added:
dev/geode/1.12.1.RC2/
dev/geode/1.12.1.RC2/apache-geode-1.12.1-src.tgz   (with props)
dev/geode/1.12.1.RC2/apache-geode-1.12.1-src.tgz.asc
dev/geode/1.12.1.RC2/apache-geode-1.12.1-src.tgz.sha256
dev/geode/1.12.1.RC2/apache-geode-1.12.1.tgz   (with props)
dev/geode/1.12.1.RC2/apache-geode-1.12.1.tgz.asc
dev/geode/1.12.1.RC2/apache-geode-1.12.1.tgz.sha256
dev/geode/1.12.1.RC2/apache-geode-benchmarks-1.12.1-src.tgz   (with props)
dev/geode/1.12.1.RC2/apache-geode-benchmarks-1.12.1-src.tgz.asc
dev/geode/1.12.1.RC2/apache-geode-benchmarks-1.12.1-src.tgz.sha256
dev/geode/1.12.1.RC2/apache-geode-examples-1.12.1-src.tgz   (with props)
dev/geode/1.12.1.RC2/apache-geode-examples-1.12.1-src.tgz.asc
dev/geode/1.12.1.RC2/apache-geode-examples-1.12.1-src.tgz.sha256
dev/geode/1.12.1.RC2/apache-geode-native-1.12.1-src.tgz   (with props)
dev/geode/1.12.1.RC2/apache-geode-native-1.12.1-src.tgz.asc
dev/geode/1.12.1.RC2/apache-geode-native-1.12.1-src.tgz.sha256
Removed:
dev/geode/1.12.1.RC1/

Added: dev/geode/1.12.1.RC2/apache-geode-1.12.1-src.tgz
==
Binary file - no diff available.

Propchange: dev/geode/1.12.1.RC2/apache-geode-1.12.1-src.tgz
--
svn:mime-type = application/octet-stream

Added: dev/geode/1.12.1.RC2/apache-geode-1.12.1-src.tgz.asc
==
--- dev/geode/1.12.1.RC2/apache-geode-1.12.1-src.tgz.asc (added)
+++ dev/geode/1.12.1.RC2/apache-geode-1.12.1-src.tgz.asc Thu Feb 11 22:08:17 
2021
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIyBAABCAAdFiEE21R2gVpHVXRXfUQrRopIAOr7JJgFAmAlp9IACgkQRopIAOr7
+JJjIzw/4jUKbMh9V1Ne2Vb2bMV9NuvSuG4TPhOvV/lRvOuV3fBMYoKG7P9IyeiO6
+K/VNbMyVhCxBj8jD/QQxvAGQte8iHK69ST+5BH9fz5h2sFoukiGgH9eSYWnwI1zS
+WHO5avN8Wm1AtZfGAzJr5OxF6zvmtSZ0aQS3DptC0qiwKru07zBW94n+ulphxW/o
+FPjB97QQdOdTcJrx334QhPqlv6bQUE3SuVghyvcQ1NTclFhp+g0yWy/wyz5Byqvo
+D57jvWVqGob3c+hePlnSH1ONOKlCdWuzH+cCERbFMfZTjC6SgRviIumRuMfEmbOT
+z4KQ2oMwS0Cmk/dfr2Rk3n6/yH4rCgjTYDZTDbVtM7OqVGaT/PQ1ElO492d49AiX
+75v+l3XZ/nB/U3jl3UHJ9RQEmqPxS74VJulCXIM1O3WANhnQLphSn7JxkYuwWAA1
+K0qBqNE8YeaatfKrqJGNJn8P+9dCPDzM9GK23agUzcuDtdXfs2ytlYIlox/v+CEP
+ESszKKlvikOYmCOjF66kzwGjb3gbkon0DeMjSqOY5g5S5oinMYnj5atlsdZ+qOdd
+44PZAovPuq56sU7a49G+e8kKMI8Cam9TfBteNLFNCdJnan8Qiq6VwwQssUzI6gm+
+pO/WzaKjL7nmruSU5LnafTRmmc5admdOteg7SWiE0QBHecBxGg==
+=TToq
+-END PGP SIGNATURE-

Added: dev/geode/1.12.1.RC2/apache-geode-1.12.1-src.tgz.sha256
==
--- dev/geode/1.12.1.RC2/apache-geode-1.12.1-src.tgz.sha256 (added)
+++ dev/geode/1.12.1.RC2/apache-geode-1.12.1-src.tgz.sha256 Thu Feb 11 22:08:17 
2021
@@ -0,0 +1 @@
+44f632256db421464c4e6ba58c67727ba75e6610b5966e1db133ee00f60c9052 
*apache-geode-1.12.1-src.tgz

Added: dev/geode/1.12.1.RC2/apache-geode-1.12.1.tgz
==
Binary file - no diff available.

Propchange: dev/geode/1.12.1.RC2/apache-geode-1.12.1.tgz
--
svn:mime-type = application/octet-stream

Added: dev/geode/1.12.1.RC2/apache-geode-1.12.1.tgz.asc
==
--- dev/geode/1.12.1.RC2/apache-geode-1.12.1.tgz.asc (added)
+++ dev/geode/1.12.1.RC2/apache-geode-1.12.1.tgz.asc Thu Feb 11 22:08:17 2021
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: BCPG v1.61
+
+iQIcBAABAgAGBQJgJaeDAAoJEEaKSADq+ySYCD4P/0SKyoCRWRJhNobE+8zyMDhD
+8eGZ4C0ifRGKpzmF/WUpVgJntkXgHhxIRPnFOlTw3g9XDpQjMP58uLH0gQ58FeAg
+OmF0Q3/Qag8H+KRF7Ni180eUkbuH5HnEB3a+U8hVHcPfPY/jeQbGAEKI3P13KQyW
+jERZ2s4AyMGBZZQbKZlJYInpHB75IJuEh6UycnVj19vcbQeH7dulyny84K7rufeU
+t8RRqqkCyUC4LLU8LZSaknXc3Yyqp0ipzC4kXMRG7mdUlLtYRy5ytFIO0NnVVpqb
+ERlq/yfaGZURJu/rQqxsUaA1GI5lMyqqu3gilW+71xlHhL1fTLYB5qLvi4Dez8HX
+BUmakvgnVF8/nwlISvC4zZwIUbUkW+0j7DVpH5o5q9H89wjquL3WMnT2K08G8Z1R
+xzK+PsszWjHtx1o5lWU//8RTaAPqIabanhMW7+WQLaa3DfHwomi3wT1fv/cXeGr3
+JPCG766kim2rUuh+QX/blTyT7bmlXaomIpW8SCFkaa33aP0cAf5dV9GNpkVPuhRJ
+DS4pEyLCDFQUY+sQpWmRu9jZCevByd13fNVkN4N+m3+bYx0eaPLo873q1x9koqbp
+SMQGhJsgM+jZb29fPHSOTJe5w77wBdyDVBG8JDQmLOHhjusasS2KqML7wQ301+Ke
+PSgN39mz4ooanGGepYN0
+=S0d2
+-END PGP SIGNATURE-

Added: dev/geode/1.12.1.RC2/apache-geode-1.12.1.tgz.sha256
==
--- dev/geode/1.12.1.RC2/apache-geode-1.12.1.tgz.sha256 (added)
+++ dev/geode/1.12.1.RC2/apache-geode-1.12.1.tgz.sha256 Thu Feb 11 22:08:17 2021
@@ -0,0 +1 @@
+fb73f1a83340f3eb1ce0dc7fde29b5570b1b550d7166ea1a2234a940f4c245c5 
*apache-geode-1.12.1.tgz

Added: dev/geode/1.12.1.RC2/apache

[geode-benchmarks] annotated tag rel/v1.12.1.RC1 updated (543f0db -> 7fc5e12)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to annotated tag rel/v1.12.1.RC1
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git.


*** WARNING: tag rel/v1.12.1.RC1 was modified! ***

from 543f0db  (commit)
  to 7fc5e12  (tag)
 tagging 543f0dbce4ec6ae7b5eff21700fce2d369ec2ecd (commit)
 replaces rel/v1.12.0
  by Owen Nichols
  on Thu Feb 11 12:33:01 2021 -0800

- Log -
Release candidate 1.12.1.RC1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEE21R2gVpHVXRXfUQrRopIAOr7JJgFAmAllH0ACgkQRopIAOr7
JJis/Q//fEgMwAOwxbSePuBDesaBhd19nUIW2MN448v7woKeJAJebfLnUukLnAYM
dBic02on7lF6KuR5HpIrY1r/bdkdav6Rd91bkjsIECt4aHFT7a6DvnjCmMj9P26k
2nQix6I8QnXx6hjQ89Dq4cS6P7dEM/k+29oFE2T2NgkW2IZtaW9Am6495BGuXnNh
3lW/yoqScAObYf/v88oUHiB0JRog0HjhywoF5AkK9u7u4YVUTGhuSNxsYSw3G/Hq
ZDrzjRkGv1BTQXZAYFKCWVKamCRDL3SN8GtQtTA58nHB/FS3yr7z18Ffw5MN60RT
AXmVckP4nTJdKwNLTude5mOCPFbJH+tzxrg6k7mYWp9zjzxCpWAsM8hiAvfW/MrI
gaBtfoaQYmQxqU5vqytJY+ac9FwM+tYdIiPuI/wHQdjfR0wkiB/V6rsva4mqSuHY
QFYpbMtNzqlgEYwfoOQOtwrKfWUUUC/my6mRA+a45weZUcxBdz3K/RHTLfVC4mtS
zymaPc2e+lgQCpAzm0EtllhbpOdW91exdvxCN8VmBfnnDLNXu6sC7/fOunT8oLCO
5hwhlY7U+F5FCh67dsBYFc4RzhimmEV+lxj+fCLXflqHJyb+dQMpweFOADf409Px
SdqXJB5bJbcxI73RhlrYGhsUUc/G2ldDLyQd673/l+Btrg3W2Xw=
=D5q8
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



[geode-benchmarks] branch support/1.12 updated (2c942d9 -> 543f0db)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git.


from 2c942d9  GEODE-7716: Use gradlew that does not require a checked in jar
 add 543f0db  Bumping copyright year to 2021

No new revisions were added by this update.

Summary of changes:
 NOTICE | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[geode-native] annotated tag rel/v1.12.1.RC1 updated (21fcdb8 -> c5077ac)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to annotated tag rel/v1.12.1.RC1
in repository https://gitbox.apache.org/repos/asf/geode-native.git.


*** WARNING: tag rel/v1.12.1.RC1 was modified! ***

from 21fcdb8  (commit)
  to c5077ac  (tag)
 tagging 21fcdb8d3847a3ef9a372726a309049778e2e488 (commit)
 replaces rel/v1.12.0
  by Owen Nichols
  on Thu Feb 11 12:33:01 2021 -0800

- Log -
Release candidate 1.12.1.RC1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEE21R2gVpHVXRXfUQrRopIAOr7JJgFAmAllH0ACgkQRopIAOr7
JJjsVBAAgftJ1TYl4efwh1Mi6bQlcJAr/0kZ9aN8HFu/9z7qPT50btIh3K9wTYDA
hWZN6RADGc8RmsbSA6s6Lok0wt1HNry+mN+IyATnm6br/sUqaqGkg1DQD/B+mv69
NrGck898jJgTXwiYuwDJFLjZPmWVOPWqt9kzwYBkn49MnLFydx4sFsgSazOrrGq7
p0Zod+YvtPMe+S6i1FRN1U3InUfq44q9/jEk5lC2TQz2ScLzQ/fzC5/fWaac+irD
5DfTJ4Oy8zfpJ8GDsqTfYosGYNccCYElMn2BJzExSbCZe1xO9gnzU52TFV6mjO1U
vVsEoZacFUH7E+NQ1HdRkbjoi0brIme5a4NKRVLEk9O5qlbSTHvAfkCXQubdimIf
EAvMv2YeDsCiTuShPH0rSNTt9gtqS9xExrRMbhYLDSd/BAoKIJIIl1xda7AzdkT5
n1PutbJ21yDajORh9v+dvA/pUuTTnXzxno4NFcmrBo8qlXwVDcxXl0f2DTiygGy9
SMQYDZkZvqFqbCZexN0EDoM8vg/oA2CVKEgNfaZTZwi7R0sEWtyNpBTZIMd/w3xZ
P63iLSTwr8yaQC+JqXWOtHz3Z+cVsPaWQPhnoM0T7jcunbTcA/8DDzBfdgk+E1kH
3dco13osq6B2Z0BWR9j2xzgMvpJnoHgIgsw5XebnflfR85l7V64=
=5R4w
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



[geode-native] branch support/1.12 updated (3478d98 -> 21fcdb8)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-native.git.


from 3478d98  parameterize GEODE_VERSION so that Geode release scripts can 
maintain this going forward
 add 21fcdb8  Bumping copyright year to 2021

No new revisions were added by this update.

Summary of changes:
 NOTICE | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[geode-examples] annotated tag rel/v1.12.1.RC1 updated (f097cb0 -> 030edc3)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to annotated tag rel/v1.12.1.RC1
in repository https://gitbox.apache.org/repos/asf/geode-examples.git.


*** WARNING: tag rel/v1.12.1.RC1 was modified! ***

from f097cb0  (commit)
  to 030edc3  (tag)
 tagging f097cb0dcc0514f6d3a6fc4501e0730ba9d6ea54 (commit)
 replaces rel/v1.12.0
  by Owen Nichols
  on Thu Feb 11 12:33:00 2021 -0800

- Log -
Release candidate 1.12.1.RC1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEE21R2gVpHVXRXfUQrRopIAOr7JJgFAmAllHwACgkQRopIAOr7
JJgRgg//T9qkWRLcjXPSoJqEmBCAOTdo2Xb0ZzsfYgAmRi+VQzYs9o0517Tn+3ta
llin5zxLpGZCPVO4n7IF4J3DrJh8xNYmjH4nRJsrmW02xWgFXFAZZbWizKyqqep+
eK73iEBtuFc4ecXCKexHFm9U+/zo4QqfZYi3tt4r1uZ+ExRK/7cZipXRPlLMtw/b
IRNiR90W4xQ0pI+9OYcJhqywdzafLuXEyeIfcSFC5tZVR9r9IuZTuQhVzvVFjMnS
d9pHV8HCQSgdQL/eSIJIyCnWHgovPgyNK4li6YJdXPTTnHfkD38Zz+Hl4xT+HcNe
Ura1/JQlYHpgX9XMnmZlCVITSoOGbcXjLLX+wrvVnSiJXZ97vZU5QW8dIBkyUvRf
+WL6MIZQLwHwEI4c57LtF5thUXctxVleYxAuM74fjuaGinJubMkY8ecVKZpS9ugE
jyGkHlxCVlGJsgX/m+nVcIlRHAo0tFaEFJJMquwK4WplU1wzFZ/K1H1MAvNelgd0
2ObtswSPbOzTKQ1AqQmymYzg3lYzRTNQdqelK0CaDPq62VDI+CFNdcmhPMxDQEH7
dBTazDisZa0UClWY5BK+jAglKntBVno0LSFZ5hfNdatQcfqrNj7fctd2JfAt7h2p
96qpJ7p/C9V+1tpCNcrUt6lprt8Btczu4p9b3BT1lwja/GGoVJA=
=7l+e
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



[geode-examples] branch support/1.12 updated: Bumping version to 1.12.1

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-examples.git


The following commit(s) were added to refs/heads/support/1.12 by this push:
 new d235195  Bumping version to 1.12.1
d235195 is described below

commit d235195a4dd472c9da85169bafa603c81e9060c7
Author: Owen Nichols 
AuthorDate: Thu Feb 11 12:55:06 2021 -0800

Bumping version to 1.12.1
---
 gradle.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gradle.properties b/gradle.properties
index 9537cd8..73ca915 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 version = 1.12.1-build.0
-geodeVersion = 1.12.1
+geodeVersion = 1.12.+
 
 # release properties, set these on the command line to validate against
 # a release candidate



[geode] annotated tag rel/v1.12.1.RC1 updated (3a40b5a -> 79a9630)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to annotated tag rel/v1.12.1.RC1
in repository https://gitbox.apache.org/repos/asf/geode.git.


*** WARNING: tag rel/v1.12.1.RC1 was modified! ***

from 3a40b5a  (commit)
  to 79a9630  (tag)
 tagging 3a40b5a0b245cc72bf47516cec15ee9f49180032 (commit)
 replaces rel/v1.12.0
  by Owen Nichols
  on Thu Feb 11 12:33:00 2021 -0800

- Log -
Release candidate 1.12.1.RC1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEE21R2gVpHVXRXfUQrRopIAOr7JJgFAmAllHwACgkQRopIAOr7
JJjDSw//XJnV+mb2lb85p05oTjxJLEgJ5Sibw7bSlxyLxaPZVVfYUZya5AzxYiPt
P1WRYA7Pb0zlpkFW9LSthcpweKQFoBYDlqxG+fatEnbG0PGc9QxEgMsKY/a7MvA6
CJ3TCpgQzeZs6tmGyRPLnTP9TQjWH6KTTd5LObxnVNU+/qu4Pn5ydyVNUcrzE6P3
lHiYcG8PYf7cYCACI9VSscc2ha1AA4lVVTZlGGpl50SBdeKJ95DbiwqZ97pnqQkd
CBFJKb2663/GymeSyQmcRt+0BAkjxywjk+GkrE6nID87rFSNhqMIh+FXF/myoVEA
biRIJtGJsd7vIcaapV095RWXaWTCsDhqrv3Qu/+3//l4eX2tGiA+GXsGoASf1TMU
iouOZHe6GLxdBNKXq00lAwHdOzFWA5NAw1r18E4UmAv0RG52SogVVSL5+jnbvXks
fiAOfz5oqnQhULsOwlcZaIm1YGecMzGCmCf7H5P+DzOFHHjcCX+kz47cLc7kWWKU
g6+SuDYkNVCwGuQB4VQv2EAA0818il9zh05AviSg9v8ra3tb/KVQrzr9AUlC7H8h
Sh2JttuglakrjpWBYhxlQCxdxJFeZ8CgEUc+x9blDyJZEu2EXQw6oeJcHmBD2jcS
MQkDLRQa42/yDZqyMAUo6txS9b3QoxWmBCyNo+mvQoyitmLJy4I=
=+4kT
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



[geode] 01/02: Bumping copyright year to 2021

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode.git

commit c2d67e90df93dd797f3dbe1a0f55dd9129803b39
Author: Owen Nichols 
AuthorDate: Thu Feb 11 12:27:54 2021 -0800

Bumping copyright year to 2021
---
 NOTICE | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/NOTICE b/NOTICE
index a76a1fe..e005a2a 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
 Apache Geode
-Copyright 2016-2020 The Apache Software Foundation.
+Copyright 2016-2021 The Apache Software Foundation.
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).



[geode] 02/02: Bumping version to 1.12.1

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode.git

commit d03fe4d05395e4e530078f47cd779d51d1ed1ce3
Author: Owen Nichols 
AuthorDate: Thu Feb 11 12:27:55 2021 -0800

Bumping version to 1.12.1
---
 geode-book/config.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geode-book/config.yml b/geode-book/config.yml
index 7d06907..f2722e0 100644
--- a/geode-book/config.yml
+++ b/geode-book/config.yml
@@ -27,7 +27,7 @@ sections:
 template_variables:
   product_name_long: Apache Geode
   product_name: Geode
-  product_version: '1.12'
+  product_version: '1.12.1'
   product_version_nodot: '112'
   product_version_geode: '1.12'
   min_java_version: '8'



[geode] branch support/1.12 updated (e0c38b9 -> d03fe4d)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode.git.


from e0c38b9  GEODE-8906: pull in the gradle logs before the rsync (#6021)
 new c2d67e9  Bumping copyright year to 2021
 new d03fe4d  Bumping version to 1.12.1

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 NOTICE| 2 +-
 geode-book/config.yml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



[geode-examples] branch support/1.12 updated (7455889 -> 10fa613)

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a change to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-examples.git.


from 7455889  restore mavenCentral as a fallback so that geodeVersion alone 
can be used to select either release or snapshot builds
 new 7a8d605  Bumping copyright year to 2021
 new f097cb0  Bumping version to 1.12.1
 new 10fa613  temporarily point to staging repo for CI purposes

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 NOTICE| 2 +-
 gradle.properties | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)



[geode-examples] 01/03: Bumping copyright year to 2021

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-examples.git

commit 7a8d6059768e99c0165af9d2cc77d944bd6b454b
Author: Owen Nichols 
AuthorDate: Thu Feb 11 12:27:54 2021 -0800

Bumping copyright year to 2021
---
 NOTICE | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/NOTICE b/NOTICE
index bd35ed9..9b3a413 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
 Apache Geode Examples
-Copyright 2017-2018 The Apache Software Foundation.
+Copyright 2017-2021 The Apache Software Foundation.
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).



[geode-examples] 03/03: temporarily point to staging repo for CI purposes

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-examples.git

commit 10fa613f076bd56db8fc6961c4c5b5b8f9de0c6e
Author: Owen Nichols 
AuthorDate: Thu Feb 11 12:55:00 2021 -0800

temporarily point to staging repo for CI purposes
---
 gradle.properties | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gradle.properties b/gradle.properties
index 5302fd2..9537cd8 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -19,8 +19,8 @@ geodeVersion = 1.12.1
 
 # release properties, set these on the command line to validate against
 # a release candidate
-geodeRepositoryUrl =
-geodeReleaseUrl =
+geodeRepositoryUrl = 
https://repository.apache.org/content/repositories/orgapachegeode-1072
+geodeReleaseUrl = https://dist.apache.org/repos/dist/dev/geode/1.12.1.RC1
 
 # dependency versions not found in geode-all-bom
 micrometerVersion = 1.2.1



[geode-examples] 02/03: Bumping version to 1.12.1

2021-02-11 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode-examples.git

commit f097cb0dcc0514f6d3a6fc4501e0730ba9d6ea54
Author: Owen Nichols 
AuthorDate: Thu Feb 11 12:27:56 2021 -0800

Bumping version to 1.12.1
---
 gradle.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gradle.properties b/gradle.properties
index 3d12be1..5302fd2 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 version = 1.12.1-build.0
-geodeVersion = 1.12.+
+geodeVersion = 1.12.1
 
 # release properties, set these on the command line to validate against
 # a release candidate



svn commit: r46047 - /dev/geode/1.12.1.RC1/

2021-02-11 Thread dixie
Author: dixie
Date: Thu Feb 11 20:54:59 2021
New Revision: 46047

Log:
Releasing Apache Geode 1.12.1.RC1 distribution

Added:
dev/geode/1.12.1.RC1/
dev/geode/1.12.1.RC1/apache-geode-1.12.1-src.tgz   (with props)
dev/geode/1.12.1.RC1/apache-geode-1.12.1-src.tgz.asc
dev/geode/1.12.1.RC1/apache-geode-1.12.1-src.tgz.sha256
dev/geode/1.12.1.RC1/apache-geode-1.12.1.tgz   (with props)
dev/geode/1.12.1.RC1/apache-geode-1.12.1.tgz.asc
dev/geode/1.12.1.RC1/apache-geode-1.12.1.tgz.sha256
dev/geode/1.12.1.RC1/apache-geode-benchmarks-1.12.1-src.tgz   (with props)
dev/geode/1.12.1.RC1/apache-geode-benchmarks-1.12.1-src.tgz.asc
dev/geode/1.12.1.RC1/apache-geode-benchmarks-1.12.1-src.tgz.sha256
dev/geode/1.12.1.RC1/apache-geode-examples-1.12.1-src.tgz   (with props)
dev/geode/1.12.1.RC1/apache-geode-examples-1.12.1-src.tgz.asc
dev/geode/1.12.1.RC1/apache-geode-examples-1.12.1-src.tgz.sha256
dev/geode/1.12.1.RC1/apache-geode-native-1.12.1-src.tgz   (with props)
dev/geode/1.12.1.RC1/apache-geode-native-1.12.1-src.tgz.asc
dev/geode/1.12.1.RC1/apache-geode-native-1.12.1-src.tgz.sha256

Added: dev/geode/1.12.1.RC1/apache-geode-1.12.1-src.tgz
==
Binary file - no diff available.

Propchange: dev/geode/1.12.1.RC1/apache-geode-1.12.1-src.tgz
--
svn:mime-type = application/octet-stream

Added: dev/geode/1.12.1.RC1/apache-geode-1.12.1-src.tgz.asc
==
--- dev/geode/1.12.1.RC1/apache-geode-1.12.1-src.tgz.asc (added)
+++ dev/geode/1.12.1.RC1/apache-geode-1.12.1-src.tgz.asc Thu Feb 11 20:54:59 
2021
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCAAdFiEE21R2gVpHVXRXfUQrRopIAOr7JJgFAmAllH0ACgkQRopIAOr7
+JJh/+Q/8C7LQbzHZyEmWR8h+CKs8KvPZ377ow6JbOp/UzfG5hbdgbaGLQ5uQBNFy
+a60O2O+Foo/gq0d1jtFXTaCOeafN0qZYSaHT1wCVhAQI5cPfHrdGtbV79O3XJgMq
+dK9QZohkZnGXS3uvnsBUSgZDtNeytkSa52+Ddo9PLvYf05WAIdrDEMvsmpJtD8B/
+JEix/eBxfQcTAS/jrobavOfSjiVySNcsIrM9gmAmQDKx8a3Zp5EvK43c3Mgrvjfj
+P1iND7POK+fsVgp3y2nbHEQbR8WeabTNZ7yhOYPdKPWqJTaPpRZDHmVENjpI+lS9
+kOHPLsyZRNIWtoGcN/KCBl62xheu7mx7HL5Qppyj4j7+KyJMr/aTZQCfZ6/Bqgzd
+mzGuZ1j6RNKfOYmkAOfNBHNDA+O1b4kddz+9U+SoKVLKcXNI1bCHs7Q7sSt6qpxD
+uZtBFbQdK+oFMXXZ0eeEFzXe1nyJ/9x0crZHHT+lCrxlTBKtPTURocdZky+VE8x3
+IUiQmYJJA7Ypws7fbHi2MmQn20yVfFZqcfrUkKK3t29yOvuAdAluzIZ1COrXNAZ0
+QxSe5UTLKY7LwfY+vNbp2SK1MqNw5ISSea9v1dY4pJfxRhp8ANZSZylrYy+rNILS
+SBhtISj6+WTb2l5DSUFfL+XeiZ2yZPts5a+/Gw5NlOibQXyRUQE=
+=VavR
+-END PGP SIGNATURE-

Added: dev/geode/1.12.1.RC1/apache-geode-1.12.1-src.tgz.sha256
==
--- dev/geode/1.12.1.RC1/apache-geode-1.12.1-src.tgz.sha256 (added)
+++ dev/geode/1.12.1.RC1/apache-geode-1.12.1-src.tgz.sha256 Thu Feb 11 20:54:59 
2021
@@ -0,0 +1 @@
+089c41da1fd70fc879679d34d24cbc92b40a7ea57ad6a76e6ec4b0308c54b7ff 
*apache-geode-1.12.1-src.tgz

Added: dev/geode/1.12.1.RC1/apache-geode-1.12.1.tgz
==
Binary file - no diff available.

Propchange: dev/geode/1.12.1.RC1/apache-geode-1.12.1.tgz
--
svn:mime-type = application/octet-stream

Added: dev/geode/1.12.1.RC1/apache-geode-1.12.1.tgz.asc
==
--- dev/geode/1.12.1.RC1/apache-geode-1.12.1.tgz.asc (added)
+++ dev/geode/1.12.1.RC1/apache-geode-1.12.1.tgz.asc Thu Feb 11 20:54:59 2021
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: BCPG v1.61
+
+iQIcBAABAgAGBQJgJZQiAAoJEEaKSADq+ySYQ7oQAI/1WullMznmnDXXbdezPYMJ
+NDEdq41Clt2qZ7vTmDTvVdQ3LjVuiGp0V9It9i+ZA7YHH6lfn0ZK+pCHYGowA3Wg
+9BmW5vx3tBC3RElCJNekYzQjpJRJ0XdKziBcIKaFPPtfUZPmGgayXXtvnZxoXMNc
+X/cwogsMEnzfk0G1JOkxsCNrUhvh6VX2uo//aJSLyYX8YU6NByILhkh9yS3YLnqb
+hbEVaSjucTrMbyll4IWMzDOJ60Rf9TV96rhPFqVWEz8wBV3CxzOuY4mQ3mRY7rik
+iZIE9Gen4a+9Vje1WECBV2OqMD8BJSExEBEZnw21JS/4LnvYGZYYS3/sijwSgj8z
+m9HCMubsPzXpOS09zLsz11GKrt/C+nJi+gMR6vOX7YztXUf9vIzaD2Lr/9u6By2O
+pzjqRfcEt3A2nFwgD7QcVqF81tvPpTxHJB9o+bPncbvrpCrCcA0OxJHgnTw2a9Bd
+WfHgfzZSJpA0QUCBPsVG3j1DDaVl5xicgN93oC2IWTWzAXqtkB8Y5Fb7/mSxhblb
+Ve99wfy2quHoo+0UETwYxtGOXydQIMlYjsFqtuUiG78ut9szElWxf+/dmsDbbSGS
+IgXLPGYckN6L5YNJjQtu997yGftuXlJQT3JzPeF4CL1L/nNHM066rTW73ML9pWv3
+I7OTStimCgqYYLy6HKn/
+=zAhw
+-END PGP SIGNATURE-

Added: dev/geode/1.12.1.RC1/apache-geode-1.12.1.tgz.sha256
==
--- dev/geode/1.12.1.RC1/apache-geode-1.12.1.tgz.sha256 (added)
+++ dev/geode/1.12.1.RC1/apache-geode-1.12.1.tgz.sha256 Thu Feb 11 20:54:59 2021
@@ -0,0 +1 @@
+3f123a34fd624d012ebff4d9ec3c15c5e8467e422894a4038911bb9fa76da2b3 
*apache-geode-1.12.1.tgz

Added: dev/geode/1.12.1.RC1/apache-geode-benchmarks-1.12.1-src.tgz
==