From b5395e66e58663eb36bdf794f447d216115731a1 Mon Sep 17 00:00:00 2001 From: Ryan Lubke Date: Thu, 23 Jan 2025 11:50:09 -0800 Subject: [PATCH 1/5] Bump Coherence version from 24.09 to 24.09.2. Add dependabot support --- .github/dependabot.yml | 10 ++++++++++ .github/workflows/node.js.yml | 2 +- .github/workflows/release.yml | 2 +- README.md | 6 +++--- 4 files changed, 15 insertions(+), 5 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..e6de33c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" \ No newline at end of file diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 3a00e9b..86d49d5 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.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, 24.09] + coherence-version: [22.06.11, 24.09.2] steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e5cccfe..456f028 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 npm run test-cycle + - run: COHERENCE_VERSION=24.09.2 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 ad4c533..3d59f40 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 +docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:24.09.2 ``` 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`, prefix the calls with, or export `COHERENCE_VERSION=`. +To use a later Coherence version, such as `24.09.2`, prefix the calls with, or export `COHERENCE_VERSION=`. For example: ```bash -COHERENCE_VERSION=24.03 npm run coh-up +COHERENCE_VERSION=24.09.2 npm run coh-up ``` For more details on the image, see the [documentation](https://github.com/oracle/coherence/tree/master/prj/coherence-docker). From 3486b44df509d4ba62a0782a08fc27b9be9bc5aa Mon Sep 17 00:00:00 2001 From: Ryan Lubke Date: Thu, 23 Jan 2025 11:56:35 -0800 Subject: [PATCH 2/5] Bump Coherence version from 24.09 to 24.09.2. Add dependabot support --- .github/dependabot.yml | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index e6de33c..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,10 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "daily" - - package-ecosystem: "npm" - directory: "/" - schedule: - interval: "daily" \ No newline at end of file From 3c7d8c5b8ceaf829d48dd4d9fd617d7a2ab6a4df Mon Sep 17 00:00:00 2001 From: Ryan Lubke Date: Thu, 23 Jan 2025 11:59:19 -0800 Subject: [PATCH 3/5] Add dependabot support --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..e6de33c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" \ No newline at end of file From 9f403d0379d1fcc84a4a2738d30b750d726c09ef Mon Sep 17 00:00:00 2001 From: Ryan Lubke Date: Thu, 23 Jan 2025 12:04:23 -0800 Subject: [PATCH 4/5] Bump upload-artifact to V4 --- .github/workflows/node.js.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 86d49d5..7112cbb 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -49,7 +49,7 @@ jobs: # clean up - name: Archive production artifacts if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: save-log-file path: logs-*.txt From 3a429a7d5fd311860d2101e9bbca5fffdc70e4b3 Mon Sep 17 00:00:00 2001 From: Ryan Lubke Date: Thu, 23 Jan 2025 12:10:38 -0800 Subject: [PATCH 5/5] Make upload artifact names unique --- .github/workflows/node.js.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 7112cbb..02e815e 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -51,5 +51,5 @@ jobs: if: always() uses: actions/upload-artifact@v4 with: - name: save-log-file + name: save-log-file-${{ matrix.node-version }}-${{ matrix.coherence-version }} path: logs-*.txt