Skip to content

Commit 66e9b3a

Browse files
authored
Update to latest 22.06 CE release. (#60)
1 parent 3c1ff81 commit 66e9b3a

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ override ENV_FILE := tests/utils/.env
3131
MVN_VERSION ?= 1.0.0
3232

3333
# Coherence CE version to run base tests against
34-
COHERENCE_VERSION ?= 22.06.4
34+
COHERENCE_VERSION ?= 22.06.5
3535
COHERENCE_GROUP_ID ?= com.oracle.coherence.ce
3636
COHERENCE_WKA1 ?= server1
3737
COHERENCE_WKA2 ?= server1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ For local development, we recommend using the Coherence CE Docker image; it cont
3131
everything necessary for the client to operate correctly.
3232

3333
```bash
34-
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:22.06.4
34+
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:22.06.5
3535
```
3636

3737
## Installation

bin/docker-utils.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -e
99

1010
declare -r ROOT="${PWD}"
1111
declare -r CONTAINER_NAME="coherence-py-test-container"
12-
declare -r IMAGE_NAME="ghcr.io/oracle/coherence-ce:22.06.2"
12+
declare -r IMAGE_NAME="ghcr.io/oracle/coherence-ce:22.06.5"
1313

1414
function coh_up() {
1515
declare -r CONTAINER_ID=$(docker ps -a -q -f name="${CONTAINER_NAME}")

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ python3 -m pip install coherence-client
1010
Be sure a Coherence gRPC proxy is available for the examples to work against.
1111

1212
```bash
13-
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:22.06.4
13+
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:22.06.5
1414
```
1515

1616
### The Examples

tests/java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<maven.compiler.target>8</maven.compiler.target>
3535

3636
<coherence.group.id>com.oracle.coherence.ce</coherence.group.id>
37-
<coherence.version>22.06.4</coherence.version>
37+
<coherence.version>22.06.5</coherence.version>
3838

3939
<!-- The version of Coherence to use in the test images -->
4040
<coherence.test.groupId>com.oracle.coherence.ce</coherence.test.groupId>

tests/scripts/run-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ set -e
1212
# Set the following to include long running streaming tests
1313
# INCLUDE_LONG_RUNNING=true
1414

15-
echo "Coherence CE 22.06.2"
15+
echo "Coherence CE 22.06.5"
1616
COHERENCE_CLIENT_REQUEST_TIMEOUT=180.0 \
1717
make clean test-cluster-shutdown remove-app-images build-test-images test-cluster-startup just-wait test
1818

19-
echo "Coherence CE 22.06.2 with SSL"
19+
echo "Coherence CE 22.06.5 with SSL"
2020
RUN_SECURE=true COHERENCE_IGNORE_INVALID_CERTS=true \
2121
COHERENCE_TLS_CERTS_PATH=$(pwd)/tests/utils/certs/guardians-ca.crt \
2222
COHERENCE_TLS_CLIENT_CERT=$(pwd)/tests/utils/certs/star-lord.crt \

0 commit comments

Comments
 (0)