Skip to content
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

Bump Coherence from 24.09.2 to 24.09.3. #115

Merged
merged 1 commit into from
Feb 6, 2025
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 .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/discovery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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=<desired-version>`.
To use a later Coherence version, such as `24.09.3`, prefix the calls with, or export `COHERENCE_VERSION=<desired-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).
Expand Down