Skip to content

Commit b5395e6

Browse files
committed
Bump Coherence version from 24.09 to 24.09.2.
Add dependabot support
1 parent 0ac97bf commit b5395e6

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
- package-ecosystem: "npm"
8+
directory: "/"
9+
schedule:
10+
interval: "daily"

.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.x, 19.x, 20.x, 21.x, 22.x, 23.x]
31-
coherence-version: [22.06.11, 24.09]
31+
coherence-version: [22.06.11, 24.09.2]
3232

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

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- run: npm install
3939
# run unit tests
4040
- run: COHERENCE_VERSION=22.06.11 npm run test-cycle
41-
- run: COHERENCE_VERSION=24.09 npm run test-cycle
41+
- run: COHERENCE_VERSION=24.09.2 npm run test-cycle
4242
- run: npm install --no-save typedoc
4343
# generate dist which runs other tasks
4444
- run: npm run dist

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ 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.09
24+
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:24.09.2
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"
@@ -30,10 +30,10 @@ npm run coh-up
3030
```
3131

3232
**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>`.
33+
To use a later Coherence version, such as `24.09.2`, prefix the calls with, or export `COHERENCE_VERSION=<desired-version>`.
3434
For example:
3535
```bash
36-
COHERENCE_VERSION=24.03 npm run coh-up
36+
COHERENCE_VERSION=24.09.2 npm run coh-up
3737
```
3838

3939
For more details on the image, see the [documentation](https://github.com/oracle/coherence/tree/master/prj/coherence-docker).

0 commit comments

Comments
 (0)