Skip to content

Update to latest 22.06 CE release. #60

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ override ENV_FILE := tests/utils/.env
MVN_VERSION ?= 1.0.0

# Coherence CE version to run base tests against
COHERENCE_VERSION ?= 22.06.4
COHERENCE_VERSION ?= 22.06.5
COHERENCE_GROUP_ID ?= com.oracle.coherence.ce
COHERENCE_WKA1 ?= server1
COHERENCE_WKA2 ?= server1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ For local development, we recommend using the Coherence CE Docker image; it cont
everything necessary for the client to operate correctly.

```bash
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:22.06.4
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:22.06.5
```

## Installation
Expand Down
2 changes: 1 addition & 1 deletion bin/docker-utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -e

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

function coh_up() {
declare -r CONTAINER_ID=$(docker ps -a -q -f name="${CONTAINER_NAME}")
Expand Down
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ python3 -m pip install coherence-client
Be sure a Coherence gRPC proxy is available for the examples to work against.

```bash
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:22.06.4
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:22.06.5
```

### The Examples
Expand Down
2 changes: 1 addition & 1 deletion tests/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<maven.compiler.target>8</maven.compiler.target>

<coherence.group.id>com.oracle.coherence.ce</coherence.group.id>
<coherence.version>22.06.4</coherence.version>
<coherence.version>22.06.5</coherence.version>

<!-- The version of Coherence to use in the test images -->
<coherence.test.groupId>com.oracle.coherence.ce</coherence.test.groupId>
Expand Down
4 changes: 2 additions & 2 deletions tests/scripts/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ set -e
# Set the following to include long running streaming tests
# INCLUDE_LONG_RUNNING=true

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

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