Skip to content

Commit fa13745

Browse files
committed
Update 22.06.10 -> 22.06.11
1 parent 41fe7f1 commit fa13745

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/validate-nslookup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
os: [ubuntu-latest]
2323
coherenceVersion:
2424
- 24.09
25-
- 22.06.10
25+
- 22.06.11
2626
base-image:
2727
- gcr.io/distroless/java17-debian11
2828
runs-on: ${{ matrix.os }}

.github/workflows/validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
os: [ubuntu-latest]
2323
coherenceVersion:
2424
- 24.09
25-
- 22.06.10
25+
- 22.06.11
2626
base-image:
2727
- gcr.io/distroless/java17-debian11
2828
profile:
@@ -31,7 +31,7 @@ jobs:
3131
exclude:
3232
- coherenceVersion: 24.09
3333
profile: ",-jakarta,javax"
34-
- coherenceVersion: 22.06.10
34+
- coherenceVersion: 22.06.11
3535
profile: ",jakarta,-javax"
3636

3737
runs-on: ${{ matrix.os }}

Makefile

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

3434
# Coherence CE version to run base tests against
35-
COHERENCE_VERSION ?= 22.06.10
35+
COHERENCE_VERSION ?= 22.06.11
3636
COHERENCE_GROUP_ID ?= com.oracle.coherence.ce
3737
COHERENCE_WKA1 ?= server1
3838
COHERENCE_WKA2 ?= server1

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ The Coherence Python Client allows Python applications to act as cache clients t
2020
* Support for storing Python objects as JSON as well as the ability to serialize to Java objects on the server for access from other Coherence language API's
2121

2222
#### Requirements
23-
* [Coherence CE](https://github.com/oracle/coherence) 22.06.10+ or Coherence 14.1.1.2206.10+ Commercial edition with a configured [gRPCProxy](https://docs.oracle.com/en/middleware/standalone/coherence/14.1.1.2206/develop-remote-clients/using-coherence-grpc-server.html).
24-
* Python 3.8.x
23+
* [Coherence CE](https://github.com/oracle/coherence) 22.06.11+ or Coherence 14.1.1.2206.11+ Commercial edition with a configured [gRPCProxy](https://docs.oracle.com/en/middleware/standalone/coherence/14.1.1.2206/develop-remote-clients/using-coherence-grpc-server.html).
24+
* Python 3.9.x
2525

2626

2727
#### Starting a Coherence Cluster
@@ -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:24.03
34+
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:24.09
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.10"
12+
declare -r IMAGE_NAME="ghcr.io/oracle/coherence-ce:22.06.11"
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.10
13+
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:22.06.11
1414
```
1515

1616
### The Examples

tests/scripts/run-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ if [ -z "${PROFILE_STR}" ] ; then
3030
exit 1
3131
fi
3232

33-
echo "Coherence CE 22.06.10"
33+
echo "Coherence CE 22.06.11"
3434
COHERENCE_CLIENT_REQUEST_TIMEOUT=180.0 \
3535
COHERENCE_VERSION=$COH_VER \
3636
COHERENCE_BASE_IMAGE=$BASE_IMAGE \
3737
PROFILES=$PROFILE_STR \
3838
make clean test-cluster-shutdown remove-app-images build-test-images test-cluster-startup just-wait test
3939

40-
echo "Coherence CE 22.06.10 with SSL"
40+
echo "Coherence CE 22.06.11 with SSL"
4141
RUN_SECURE=true COHERENCE_IGNORE_INVALID_CERTS=true \
4242
COHERENCE_TLS_CERTS_PATH=$(pwd)/tests/utils/certs/guardians-ca.crt \
4343
COHERENCE_TLS_CLIENT_CERT=$(pwd)/tests/utils/certs/star-lord.crt \

0 commit comments

Comments
 (0)