Skip to content

Commit baaf932

Browse files
authored
Upgrade NodeJS dependencies to latest (#11)
* Upgrade NodeJS dependencies to latest * fix: track .bqrs test input files in before directories The integration tests for codeql_bqrs_interpret were failing in CI because the .bqrs files in before/ directories were being ignored by the gitignore rule (**/*.bqrs). These files exist locally but were not committed, causing the tests to fail with 'No .bqrs files found'. Fixed by: 1. Adding an exception to .gitignore for .bqrs files in before/ directories 2. Force-adding the 4 .bqrs test input files that were previously ignored * fix: replace fake BQRS test files with real binary files Replace mock ASCII text BQRS files with actual binary BQRS files from server/ql/javascript/examples/src/ExampleQuery1/ExampleQuery1.test.bqrs
1 parent 6eda1a4 commit baaf932

File tree

8 files changed

+15
-12
lines changed

8 files changed

+15
-12
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
# Ignore binary query results files in integration tests
22
**/*.bqrs
3+
4+
# But allow .bqrs files in before directories (needed as test inputs)
5+
!**/before/*.bqrs
Binary file not shown.
Binary file not shown.
Binary file not shown.

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"dependencies": {
2828
"@modelcontextprotocol/sdk": "^1.26.0",
29-
"dotenv": "^17.2.3",
29+
"dotenv": "^17.2.4",
3030
"js-yaml": "^4.1.1"
3131
},
3232
"devDependencies": {

package-lock.json

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

server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"dependencies": {
3030
"@modelcontextprotocol/sdk": "^1.26.0",
3131
"cors": "^2.8.6",
32-
"dotenv": "^17.2.3",
32+
"dotenv": "^17.2.4",
3333
"express": "^5.2.1",
3434
"js-yaml": "^4.1.1",
3535
"lowdb": "^7.0.1",
@@ -40,7 +40,7 @@
4040
"@types/cors": "^2.8.19",
4141
"@types/express": "^5.0.6",
4242
"@types/js-yaml": "^4.0.9",
43-
"@types/node": "^25.2.0",
43+
"@types/node": "^25.2.1",
4444
"@vitest/coverage-v8": "^4.0.18",
4545
"esbuild": "^0.27.2",
4646
"eslint": "^9.39.2",

0 commit comments

Comments
 (0)