Skip to content

Commit f3830bc

Browse files
authored
Merge pull request #330 from ml054/v5.4
v5.4 branch
2 parents 700b704 + 038185a commit f3830bc

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

.github/workflows/RavenClient.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: tests/node
2-
2+
33
on:
44
push:
5-
branches: [ v5.2 ]
5+
branches: [ v5.4 ]
66
pull_request:
7-
branches: [ v5.2 ]
7+
branches: [ v5.4 ]
88
schedule:
99
- cron: '0 10 * * 6'
1010

@@ -21,16 +21,16 @@ jobs:
2121
RAVENDB_TEST_HTTPS_SERVER_URL: https://localhost:8989
2222
RAVENDB_BUILD_TYPE: nightly
2323
RAVEN_License: ${{ secrets.RAVEN_LICENSE }}
24-
24+
2525
strategy:
2626
matrix:
27-
node-version: [12.x, 14.x, 16.x, 18.x]
28-
serverVersion: ["5.2", "5.3"]
27+
node-version: [14.x, 16.x, 18.x]
28+
serverVersion: ["5.4"]
2929
fail-fast: false
3030

3131
steps:
3232
- uses: actions/checkout@v2
33-
33+
3434
- name: Use Node.js ${{ matrix.node-version }}
3535
uses: actions/setup-node@v1
3636
with:
@@ -49,24 +49,24 @@ jobs:
4949
- run: openssl pkcs12 -passout pass:"" -export -out certs/server.pfx -inkey certs/localhost.key -in certs/localhost.crt
5050
- run: sudo cp certs/ca.crt /usr/local/share/ca-certificates/ca.crt
5151
- run: sudo update-ca-certificates
52-
52+
5353
- name: Extract RavenDB Server
5454
run: tar xjf RavenDB.tar.bz2
5555

5656
- run: npm install
57-
57+
5858
- name: Run Linter
5959
run: npm run lint
60-
60+
6161
- name: Check exports
6262
run: npm run check-exports
63-
63+
6464
- name: Run Tests
6565
run: npm run test
66-
66+
6767
- name: Build
6868
run: npm run build
69-
69+
7070
- name: Check imports
7171
run: node -e "require('./dist').DocumentStore"
7272

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![NPM](https://nodei.co/npm/ravendb.png?compact=true)](https://nodei.co/npm/ravendb/)
44

5-
[![build status](https://github.com/ravendb/ravendb-nodejs-client/workflows/tests/node/badge.svg?branch=v5.2)](https://github.com/ravendb/ravendb-nodejs-client/actions) [![Known Vulnerabilities](https://snyk.io/test/github/ravendb/ravendb-nodejs-client/badge.svg)](https://snyk.io/test/github/ravendb/ravendb-nodejs-client)
5+
[![build status](https://github.com/ravendb/ravendb-nodejs-client/workflows/tests/node/badge.svg?branch=v5.4)](https://github.com/ravendb/ravendb-nodejs-client/actions) [![Known Vulnerabilities](https://snyk.io/test/github/ravendb/ravendb-nodejs-client/badge.svg)](https://snyk.io/test/github/ravendb/ravendb-nodejs-client)
66

77

88
## Installation

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ravendb",
3-
"version": "5.2.8",
3+
"version": "5.4.0",
44
"description": "RavenDB client for Node.js",
55
"files": [
66
"dist/"

src/Http/RequestExecutor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export class RequestExecutor implements IDisposable {
148148

149149
private _log: ILogger;
150150

151-
public static readonly CLIENT_VERSION = "5.2.0";
151+
public static readonly CLIENT_VERSION = "5.4.0";
152152

153153
private _updateDatabaseTopologySemaphore = semaphore();
154154
private _updateClientConfigurationSemaphore = semaphore();

0 commit comments

Comments
 (0)