You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,27 +12,27 @@ the network transport.
12
12
13
13
### Requirements
14
14
* Coherence CE versions `22.06`, `14.1.2-0-0`, `25.03` or later (or equivalent non-open source editions) with a configured [gRPC Proxy](https://docs.oracle.com/en/middleware/standalone/coherence/14.1.1.2206/develop-remote-clients/using-coherence-grpc-server.html)
15
-
* Node `18.15.x` or later
15
+
* Node `20.19.x` or later
16
16
* NPM `9.x` or later
17
17
18
18
### Usage
19
19
20
20
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.
21
21
22
22
```bash
23
-
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:25.03.1
23
+
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:25.03.2
24
24
```
25
25
26
26
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"
27
27
```bash
28
28
npm run coh-up
29
29
```
30
30
31
-
**Important!** When calling `coh-up` or `coh-down`, the LTS version of Coherence will be used (`22.06.11`).
32
-
To use a later Coherence version, such as `25.03.1`, prefix the calls with, or export `COHERENCE_VERSION=<desired-version>`.
31
+
**Important!** When calling `coh-up` or `coh-down`, the LTS version of Coherence will be used (`22.06.12`).
32
+
To use a later Coherence version, such as `25.03.2`, prefix the calls with, or export `COHERENCE_VERSION=<desired-version>`.
33
33
For example:
34
34
```bash
35
-
COHERENCE_VERSION=25.03.1 npm run coh-up
35
+
COHERENCE_VERSION=25.03.2 npm run coh-up
36
36
```
37
37
38
38
For more details on the image, see the [documentation](https://github.com/oracle/coherence/tree/master/prj/coherence-docker).
@@ -54,10 +54,10 @@ The following table provides a listing of mappings between Java types and Javasc
54
54
Coherence `25.03` or later. If using Coherence `22.06.x`, these types will be returned as Number. It is recommended
55
55
using `25.03` if intentionally using `java.math.BigInteger` or `java.math.BigDecimal` as part of your application.
0 commit comments