Skip to content

Commit 0ac97bf

Browse files
authored
Version updates (#99)
* Version updates. * Version updates.
1 parent 230171c commit 0ac97bf

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
strategy:
2828
fail-fast: false
2929
matrix:
30-
node-version: [18.15.x, 19.x]
31-
coherence-version: [22.06.10, 24.09]
30+
node-version: [18.x, 19.x, 20.x, 21.x, 22.x, 23.x]
31+
coherence-version: [22.06.11, 24.09]
3232

3333
steps:
3434
- uses: actions/checkout@v3

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
ref: ${{ github.event.release.target_commitish }}
2727
# install Node.js
28-
- name: Use Node.js 18.15.x
28+
- name: Use Node.js 18.x
2929
uses: actions/setup-node@v3
3030
with:
3131
node-version: 18.15.x
@@ -37,7 +37,7 @@ jobs:
3737
- run: echo "/tmp/grpc/bin" >> $GITHUB_PATH
3838
- run: npm install
3939
# run unit tests
40-
- run: COHERENCE_VERSION=22.06.10 npm run test-cycle
40+
- run: COHERENCE_VERSION=22.06.11 npm run test-cycle
4141
- run: COHERENCE_VERSION=24.09 npm run test-cycle
4242
- run: npm install --no-save typedoc
4343
# generate dist which runs other tasks

DEVELOPING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The above can also be shortened to:
4444
However, if developing new functionality or tests, the manual start of the cluster using `coh-up` may be preferred as
4545
it avoids restarting the cluster allowing for quicker development times.
4646

47-
**Important!** When calling `coh-up`, `test`, `coh-down`, or `test-cycle` the LTS version of Coherence will be used (`22.06.10`).
47+
**Important!** When calling `coh-up`, `test`, `coh-down`, or `test-cycle` the LTS version of Coherence will be used (`22.06.11`).
4848
To use a later Coherence version, such as `22.03`, prefix the calls with, or export `COHERENCE_VERSION=<desired-version>`.
4949
For example:
5050
```bash

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ the network transport.
2121
Before testing the library, you must ensure a Coherence cluster is available. For local development, we recommend using the Coherence CE Docker image; it contains everything necessary for the client to operate correctly.
2222

2323
```bash
24-
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:24.03
24+
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:24.09
2525
```
2626

2727
or to save some keystrokes/time, use the included npm script, `coh-up` to start a two-member Cluster with the gRPC port at 1408"
2828
```bash
2929
npm run coh-up
3030
```
3131

32-
**Important!** When calling `coh-up` or `coh-down`, the LTS version of Coherence will be used (`22.06.10`).
33-
To use a later Coherence version, such as `24.03`, prefix the calls with, or export `COHERENCE_VERSION=<desired-version>`.
32+
**Important!** When calling `coh-up` or `coh-down`, the LTS version of Coherence will be used (`22.06.11`).
33+
To use a later Coherence version, such as `24.09`, prefix the calls with, or export `COHERENCE_VERSION=<desired-version>`.
3434
For example:
3535
```bash
3636
COHERENCE_VERSION=24.03 npm run coh-up

bin/docker-utils.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
set -e
99

10-
declare VERSION=${COHERENCE_VERSION:=22.06.10}
10+
declare VERSION=${COHERENCE_VERSION:=22.06.11}
1111
declare TYPE=${COHERENCE_TYPE:=coherence-ce}
1212
declare REGISTRY=${DOCKER_REGISTRY:=ghcr.io/oracle}
1313

bin/test-cycle.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set -e
1010
mkdir -p "${PWD}"/etc/cert
1111
chmod 777 "${PWD}"/etc/cert
1212

13-
declare VERSION=${COHERENCE_VERSION:=22.06.10}
13+
declare VERSION=${COHERENCE_VERSION:=22.06.11}
1414
declare TYPE=${COHERENCE_TYPE:=coherence-ce}
1515
declare REGISTRY=${DOCKER_REGISTRY:=ghcr.io/oracle}
1616
declare LABEL=clear

0 commit comments

Comments
 (0)