Skip to content

Commit 2c1f39c

Browse files
authored
Merge branch 'main' into temporal-data
2 parents b554179 + d7a99a6 commit 2c1f39c

6 files changed

Lines changed: 83 additions & 77 deletions

File tree

.github/workflows/node.js.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121

2222
strategy:
2323
matrix:
24-
node-version: [18.x, 20.x]
24+
node-version: [20.x, 22.x]
2525

2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
- name: Run docker-compose for FalkorDB standalone instance
29-
uses: hoverkraft-tech/compose-action@v2.3.0
29+
uses: hoverkraft-tech/compose-action@v2.4.0
3030
with:
3131
compose-file: ./docker/standalone-compose.yml
3232
- name: Test if FalkorDB standalone instance is running
@@ -36,7 +36,7 @@ jobs:
3636
docker exec falkordb-standalone redis-cli ping || { echo "FalkorDB standalone instance is not running"; exit 1; }
3737
3838
- name: Run docker-compose for FalkorDB replication instance
39-
uses: hoverkraft-tech/compose-action@v2.3.0
39+
uses: hoverkraft-tech/compose-action@v2.4.0
4040
with:
4141
compose-file: ./docker/sentinel-compose.yml
4242

@@ -51,7 +51,7 @@ jobs:
5151
docker exec sentinel-3 redis-cli -p 26381 ping || { echo "FalkorDB replication instance is not running"; exit 1; }
5252
5353
- name: Run docker-compose for FalkorDB cluster instance
54-
uses: hoverkraft-tech/compose-action@v2.3.0
54+
uses: hoverkraft-tech/compose-action@v2.4.0
5555
with:
5656
compose-file: ./docker/cluster-compose.yml
5757

@@ -141,7 +141,7 @@ jobs:
141141
contents: read
142142
packages: write
143143
steps:
144-
- uses: actions/checkout@v4
144+
- uses: actions/checkout@v5
145145
- uses: actions/setup-node@v4
146146
with:
147147
node-version: 20

.github/workflows/spellcheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
permissions:
1111
contents: read
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- name: Spellcheck
15-
uses: rojopolis/spellcheck-github-actions@0.51.0
15+
uses: rojopolis/spellcheck-github-actions@0.53.0
1616
with:
1717
config_path: .github/spellcheck-settings.yml
1818
task_name: Markdown

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ await graph.query(`CREATE (:Rider {name:'Valentino Rossi'})-[:rides]->(:Team {na
4848
(:Rider {name:'Dani Pedrosa'})-[:rides]->(:Team {name:'Honda'}),
4949
(:Rider {name:'Andrea Dovizioso'})-[:rides]->(:Team {name:'Ducati'})`)
5050

51-
result = await graph.query(`MATCH (r:Rider)-[:rides]->(t:Team)
51+
const result = await graph.query(`MATCH (r:Rider)-[:rides]->(t:Team)
5252
WHERE t.name = $name RETURN r.name`,
5353
{params: {name: 'Yamaha'}})
5454

package-lock.json

Lines changed: 69 additions & 66 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,11 @@
3232
"keywords": [
3333
"falkordb"
3434
],
35+
"engines": {
36+
"node": ">=20.0.0"
37+
},
3538
"devDependencies": {
36-
"@tsconfig/node14": "^14.1.2",
39+
"@tsconfig/node20": "^20.1.4",
3740
"@types/jest": "^29.5.14",
3841
"@types/lodash": "^4.17.13",
3942
"@types/node": "^24.0.3",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@tsconfig/node14/tsconfig.json",
2+
"extends": "@tsconfig/node20/tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist",
55
"target": "es2022",

0 commit comments

Comments
 (0)