Skip to content

Commit c27bd41

Browse files
committed
Update to 22.06.10
1 parent 1f9b706 commit c27bd41

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
fail-fast: false
2929
matrix:
3030
node-version: [18.15.x, 19.x]
31-
coherence-version: [22.06.7, 24.03]
31+
coherence-version: [22.06.10, 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
@@ -37,8 +37,8 @@ jobs:
3737
- run: echo "/tmp/grpc/bin" >> $GITHUB_PATH
3838
- run: npm install
3939
# run unit tests
40-
- run: COHERENCE_VERSION=22.06.5 npm run test-cycle
41-
- run: COHERENCE_VERSION=23.09 npm run test-cycle
40+
- run: COHERENCE_VERSION=22.06.10 npm run test-cycle
41+
- run: COHERENCE_VERSION=24.09 npm run test-cycle
4242
- run: npm install --no-save typedoc
4343
# generate dist which runs other tasks
4444
- run: npm run dist

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.2`).
47+
**Important!** When calling `coh-up`, `test`, `coh-down`, or `test-cycle` the LTS version of Coherence will be used (`22.06.10`).
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ or to save some keystrokes/time, use the included npm script, `coh-up` to start
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.2`).
32+
**Important!** When calling `coh-up` or `coh-down`, the LTS version of Coherence will be used (`22.06.10`).
3333
To use a later Coherence version, such as `24.03`, prefix the calls with, or export `COHERENCE_VERSION=<desired-version>`.
3434
For example:
3535
```bash

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.5}
10+
declare VERSION=${COHERENCE_VERSION:=22.06.10}
1111
declare TYPE=${COHERENCE_TYPE:=coherence-ce}
1212
declare REGISTRY=${DOCKER_REGISTRY:=ghcr.io/oracle}
1313

bin/npm-post-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ declare -r ROOT="${PWD}"
1111

1212
# Grabs the proto files from the Coherence project.
1313
function grab_proto_files() {
14-
declare -r BASE_URL="https://raw.githubusercontent.com/oracle/coherence/22.06.5/prj/coherence-grpc/src/main/proto/"
14+
declare -r BASE_URL="https://raw.githubusercontent.com/oracle/coherence/22.06.10/prj/coherence-grpc/src/main/proto/"
1515
declare -r PROTO_FILES=("messages.proto" "services.proto")
1616
declare -r PROTO_DIR="${ROOT}/etc/proto"
1717

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.2}
13+
declare VERSION=${COHERENCE_VERSION:=22.06.10}
1414
declare TYPE=${COHERENCE_TYPE:=coherence-ce}
1515
declare REGISTRY=${DOCKER_REGISTRY:=ghcr.io/oracle}
1616
declare LABEL=clear

0 commit comments

Comments
 (0)