Skip to content

Commit 18aadab

Browse files
authored
Merge pull request #388 from ml054/v5.4
v5.2 -> v5.4 merge
2 parents 6d46068 + 38f1053 commit 18aadab

37 files changed

+4322
-2172
lines changed

.github/workflows/RavenClient.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ on:
66
pull_request:
77
branches: [ v5.4 ]
88
schedule:
9-
- cron: '0 10 * * 6'
9+
- cron: '0 10 * * *'
10+
workflow_dispatch:
11+
inputs:
12+
ravendb_version:
13+
description: 'RavenDB Version'
14+
required: true
15+
type: string
1016

1117
jobs:
1218
build:
@@ -21,11 +27,12 @@ jobs:
2127
RAVENDB_TEST_HTTPS_SERVER_URL: https://localhost:8989
2228
RAVENDB_BUILD_TYPE: nightly
2329
RAVEN_License: ${{ secrets.RAVEN_LICENSE }}
30+
RAVENDB_SERVER_VERSION: ${{ matrix.serverVersion }}
2431

2532
strategy:
2633
matrix:
27-
node-version: [14.x, 16.x, 18.x]
28-
serverVersion: ["5.4"]
34+
node-version: [16.x, 18.x, 20.x]
35+
serverVersion: ["5.4", "6.0"]
2936
fail-fast: false
3037

3138
steps:
@@ -37,7 +44,12 @@ jobs:
3744
node-version: ${{ matrix.node-version }}
3845

3946
- name: Download RavenDB Server
40-
run: wget -O RavenDB.tar.bz2 "https://hibernatingrhinos.com/downloads/RavenDB%20for%20Linux%20x64/latest?buildType=${{ env.RAVENDB_BUILD_TYPE }}&version=${{ matrix.serverVersion }}"
47+
run: |
48+
if [[ -n "${{ inputs.ravendb_version }}" ]]; then
49+
wget -O RavenDB.tar.bz2 "https://daily-builds.s3.amazonaws.com/RavenDB-${{ inputs.ravendb_version }}-linux-x64.tar.bz2"
50+
else
51+
wget -O RavenDB.tar.bz2 "https://hibernatingrhinos.com/downloads/RavenDB%20for%20Linux%20x64/latest?buildType=${{ env.RAVENDB_BUILD_TYPE }}&version=${{ matrix.serverVersion }}"
52+
fi
4153
4254
- run: mkdir certs
4355
- run: openssl genrsa -out certs/ca.key 2048

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@
1111
npm install --save ravendb
1212
```
1313

14-
## Releases and Changelog - [click here](https://github.com/ravendb/ravendb-nodejs-client/releases)
14+
## Releases
15+
16+
* All client versions 5.2.x are fully compatible with and support RavenDB server releases 5.4 and 6.0.
17+
18+
* [Click here](https://github.com/ravendb/ravendb-nodejs-client/releases) to view all Releases and Changelog.
1519

1620
## Documentation
1721

0 commit comments

Comments
 (0)