Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request upgrades two Node.js dependencies to their latest patch versions to incorporate bug fixes and improvements. The changes maintain version consistency across the monorepo workspaces.
Changes:
- Upgraded
dotenvfrom^17.2.3to^17.2.4in both client and server packages - Upgraded
@types/nodefrom^25.2.0to^25.2.1in the server package - Updated
package-lock.jsonwith new version numbers, resolved URLs, and integrity hashes
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| client/package.json | Updated dotenv dependency to version 17.2.4 |
| server/package.json | Updated dotenv to 17.2.4 and @types/node to 25.2.1 |
| package-lock.json | Updated lockfile entries for all dependency changes including workspace references |
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
client/integration-tests/primitives/tools/codeql_bqrs_info/basic_info/before/results.bqrs
Outdated
Show resolved
Hide resolved
client/integration-tests/primitives/tools/codeql_bqrs_decode/basic_decode/before/results.bqrs
Outdated
Show resolved
Hide resolved
Replace mock ASCII text BQRS files with actual binary BQRS files from server/ql/javascript/examples/src/ExampleQuery1/ExampleQuery1.test.bqrs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Dependency updates:
dotenvfrom version^17.2.3to^17.2.4in bothclient/package.jsonandserver/package.jsonto include the latest bug fixes and improvements. [1] [2]@types/nodefrom version^25.2.0to^25.2.1inserver/package.jsonto stay current with type definitions for Node.js.