From da9239f80223d4c41a70d76c163b3a3cc0e8f687 Mon Sep 17 00:00:00 2001 From: Ryan Lubke Date: Thu, 6 Feb 2025 09:58:37 -0800 Subject: [PATCH] Bump Coherence from 24.09.2 to 24.09.3. --- .github/workflows/build.yml | 2 +- .github/workflows/discovery.yml | 2 +- .github/workflows/release.yml | 2 +- README.md | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 52bc3d5..553ef70 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: fail-fast: false matrix: node-version: [18.x, 19.x, 20.x, 21.x, 22.x, 23.x] - coherence-version: [22.06.11, 14.1.2-0-1, 24.09.2] + coherence-version: [22.06.11, 14.1.2-0-1, 24.09.3] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/discovery.yml b/.github/workflows/discovery.yml index 89e1304..4e82503 100644 --- a/.github/workflows/discovery.yml +++ b/.github/workflows/discovery.yml @@ -28,7 +28,7 @@ jobs: fail-fast: false matrix: node-version: [20.x, 21.x, 22.x, 23.x] - coherence-version: [22.06.11, 14.1.2-0-1, 24.09.2] + coherence-version: [22.06.11, 14.1.2-0-1, 24.09.3] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4f750d9..ce8d950 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,7 +38,7 @@ jobs: - run: npm install # run unit tests - run: COHERENCE_VERSION=22.06.11 npm run test-cycle - - run: COHERENCE_VERSION=24.09.2 npm run test-cycle + - run: COHERENCE_VERSION=24.09.3 npm run test-cycle - run: npm install --no-save typedoc # generate dist which runs other tasks - run: npm run dist diff --git a/README.md b/README.md index 5121636..a385bc1 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ the network transport. 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. ```bash -docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:24.09.2 +docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:24.09.3 ``` 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" @@ -30,10 +30,10 @@ npm run coh-up ``` **Important!** When calling `coh-up` or `coh-down`, the LTS version of Coherence will be used (`22.06.11`). -To use a later Coherence version, such as `24.09.2`, prefix the calls with, or export `COHERENCE_VERSION=`. +To use a later Coherence version, such as `24.09.3`, prefix the calls with, or export `COHERENCE_VERSION=`. For example: ```bash -COHERENCE_VERSION=24.09.2 npm run coh-up +COHERENCE_VERSION=24.09.3 npm run coh-up ``` For more details on the image, see the [documentation](https://github.com/oracle/coherence/tree/master/prj/coherence-docker).