Skip to content

Commit 0fa1d91

Browse files
committed
Merge remote-tracking branch 'origin/main' into 3-dev
2 parents f17f316 + e633b7f commit 0fa1d91

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @neo4j/cypher-builder
22

3+
## 2.8.1
4+
5+
### Patch Changes
6+
7+
- [#586](https://github.com/neo4j/cypher-builder/pull/586) [`3dac2b8`](https://github.com/neo4j/cypher-builder/commit/3dac2b82e2b016a5eed9340ede6842cf276b3877) Thanks [@angrykoala](https://github.com/angrykoala)! - Deprecates second parameter of `new ListComprehension` in favor of `.in`
8+
39
## 2.8.0
410

511
### Minor Changes

eslint.config.mjs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import js from "@eslint/js";
33
import typescriptEslint from "@typescript-eslint/eslint-plugin";
44
import tsParser from "@typescript-eslint/parser";
55
import tsdoc from "eslint-plugin-tsdoc";
6-
import globals from "globals";
76
import path from "node:path";
87
import { fileURLToPath } from "node:url";
98

@@ -32,10 +31,6 @@ export default [
3231
},
3332

3433
languageOptions: {
35-
globals: {
36-
...globals.node,
37-
},
38-
3934
parser: tsParser,
4035
ecmaVersion: 5,
4136
sourceType: "commonjs",

package.json

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@neo4j/cypher-builder",
3-
"version": "2.8.0",
3+
"version": "2.8.1",
44
"description": "A programmatic API for building Cypher queries for Neo4j",
55
"exports": "./dist/index.js",
66
"main": "./dist/index.js",
@@ -43,22 +43,21 @@
4343
"homepage": "https://neo4j.github.io/cypher-builder/",
4444
"devDependencies": {
4545
"@changesets/changelog-github": "^0.5.1",
46-
"@changesets/cli": "^2.29.6",
47-
"@eslint/js": "^9.33.0",
46+
"@changesets/cli": "^2.29.7",
47+
"@eslint/js": "^9.37.0",
4848
"@tsconfig/node20": "^20.1.6",
4949
"@types/jest": "^30.0.0",
50-
"@types/node": "^24.3.0",
51-
"@typescript-eslint/eslint-plugin": "^8.40.0",
52-
"@typescript-eslint/parser": "^8.40.0",
53-
"eslint": "^9.33.0",
50+
"@types/node": "^24.7.2",
51+
"@typescript-eslint/eslint-plugin": "^8.46.1",
52+
"@typescript-eslint/parser": "^8.46.1",
53+
"eslint": "^9.37.0",
5454
"eslint-config-prettier": "^10.1.8",
5555
"eslint-plugin-tsdoc": "^0.4.0",
56-
"globals": "^16.3.0",
57-
"jest": "^30.0.5",
56+
"jest": "^30.2.0",
5857
"jest-extended": "^6.0.0",
5958
"prettier": "^3.6.2",
60-
"ts-jest": "^29.4.1",
61-
"typedoc": "^0.28.10",
62-
"typescript": "^5.9.2"
59+
"ts-jest": "^29.4.5",
60+
"typedoc": "^0.28.14",
61+
"typescript": "^5.9.3"
6362
}
6463
}

0 commit comments

Comments
 (0)