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

Update to 22.06.10 #96

Merged
merged 1 commit into from
Oct 15, 2024
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/node.js.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.15.x, 19.x]
coherence-version: [22.06.7, 24.03]
coherence-version: [22.06.10, 24.09]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ jobs:
- run: echo "/tmp/grpc/bin" >> $GITHUB_PATH
- run: npm install
# run unit tests
- run: COHERENCE_VERSION=22.06.5 npm run test-cycle
- run: COHERENCE_VERSION=23.09 npm run test-cycle
- run: COHERENCE_VERSION=22.06.10 npm run test-cycle
- run: COHERENCE_VERSION=24.09 npm run test-cycle
- run: npm install --no-save typedoc
# generate dist which runs other tasks
- run: npm run dist
Expand Down
2 changes: 1 addition & 1 deletion DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ The above can also be shortened to:
However, if developing new functionality or tests, the manual start of the cluster using `coh-up` may be preferred as
it avoids restarting the cluster allowing for quicker development times.

**Important!** When calling `coh-up`, `test`, `coh-down`, or `test-cycle` the LTS version of Coherence will be used (`22.06.2`).
**Important!** When calling `coh-up`, `test`, `coh-down`, or `test-cycle` the LTS version of Coherence will be used (`22.06.10`).
To use a later Coherence version, such as `22.03`, prefix the calls with, or export `COHERENCE_VERSION=<desired-version>`.
For example:
```bash
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ or to save some keystrokes/time, use the included npm script, `coh-up` to start
npm run coh-up
```

**Important!** When calling `coh-up` or `coh-down`, the LTS version of Coherence will be used (`22.06.2`).
**Important!** When calling `coh-up` or `coh-down`, the LTS version of Coherence will be used (`22.06.10`).
To use a later Coherence version, such as `24.03`, prefix the calls with, or export `COHERENCE_VERSION=<desired-version>`.
For example:
```bash
Expand Down
2 changes: 1 addition & 1 deletion bin/docker-utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

set -e

declare VERSION=${COHERENCE_VERSION:=22.06.5}
declare VERSION=${COHERENCE_VERSION:=22.06.10}
declare TYPE=${COHERENCE_TYPE:=coherence-ce}
declare REGISTRY=${DOCKER_REGISTRY:=ghcr.io/oracle}

Expand Down
2 changes: 1 addition & 1 deletion bin/npm-post-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ declare -r ROOT="${PWD}"

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

Expand Down
2 changes: 1 addition & 1 deletion bin/test-cycle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set -e
mkdir -p "${PWD}"/etc/cert
chmod 777 "${PWD}"/etc/cert

declare VERSION=${COHERENCE_VERSION:=22.06.2}
declare VERSION=${COHERENCE_VERSION:=22.06.10}
declare TYPE=${COHERENCE_TYPE:=coherence-ce}
declare REGISTRY=${DOCKER_REGISTRY:=ghcr.io/oracle}
declare LABEL=clear
Expand Down
Loading