Skip to content

Fix release update of version-bearing files from 2.24.2-rc3 to 2.24.2#90

Draft
data-douser wants to merge 2 commits intomainfrom
dd/release-prep/5
Draft

Fix release update of version-bearing files from 2.24.2-rc3 to 2.24.2#90
data-douser wants to merge 2 commits intomainfrom
dd/release-prep/5

Conversation

@data-douser
Copy link
Collaborator

Summary of Changes

This pull request updates the project version from 2.24.2-rc3 (release candidate) to the final 2.24.2 release across all relevant files. This ensures consistency and signals that the project is ready for production use.

Outline of Changes

Version update across packages:

  • Updated the version in the main project package.json files for codeql-development-mcp-server_repo, codeql-development-mcp-server, codeql-development-mcp-server_client, and the VS Code extension package to 2.24.2. [1] [2] [3] [4]

Version update across CodeQL tool packs:

  • Updated the version in all codeql-pack.yml files for source tool packs for actions, cpp, csharp, go, java, javascript, python, and ruby languages to 2.24.2. [1] [2] [3] [4] [5] [6] [7] [8]

Version update across CodeQL test packs:

  • Updated the version in all codeql-pack.yml files for test packs for actions, cpp, csharp, go, java, javascript, python, and ruby languages to 2.24.2. [1] [2] [3] [4] [5] [6] [7] [8]

…VERSION constant

The release-tag workflow produced a v2.24.2 tag with a stale
`const VERSION = '2.24.1'` in the server entrypoint because
`update-release-version.sh` did not know about that file.

Changes:
- Add `server/src/codeql-development-mcp-server.ts` to the version-bearing
  file list in `update-release-version.sh` (collect_versions, update_versions,
  and new `update_ts_version` helper)
- Update all 24 version-bearing files from 2.24.2-rc3 to 2.24.2
@data-douser data-douser self-assigned this Feb 25, 2026
@data-douser data-douser added the bug Something isn't working label Feb 25, 2026
Copilot AI review requested due to automatic review settings February 25, 2026 04:48
@data-douser data-douser added the enhancement New feature or request label Feb 25, 2026
@github-actions
Copy link
Contributor

github-actions bot commented Feb 25, 2026

Dependency Review

The following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ⚠️ 3 package(s) with unknown licenses.
See the Details below.

License Issues

package-lock.json

PackageVersionLicenseIssue Type
client2.24.2NullUnknown License
extensions/vscode2.24.2NullUnknown License
server2.24.2NullUnknown License

OpenSSF Scorecard

PackageVersionScoreDetails
npm/client 2.24.2 UnknownUnknown
npm/extensions/vscode 2.24.2 UnknownUnknown
npm/server 2.24.2 UnknownUnknown

Scanned Files

  • package-lock.json

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the repository from the 2.24.2 release-candidate state to the final 2.24.2 release, ensuring version consistency across Node packages, CodeQL packs, and the bundled server artifact.

Changes:

  • Bumped version across root/client/server/VS Code extension package.json (and regenerated package-lock.json) to 2.24.2.
  • Bumped all server/ql/*/tools/{src,test}/codeql-pack.yml pack versions to 2.24.2.
  • Updated the server entrypoint const VERSION and refreshed the committed server/dist/** bundle; extended update-release-version.sh to include the TypeScript entrypoint version.

Reviewed changes

Copilot reviewed 24 out of 27 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
package.json Updates monorepo root version to 2.24.2.
package-lock.json Regenerates lockfile for 2.24.2 workspace versions.
client/package.json Updates client package version to 2.24.2.
extensions/vscode/package.json Updates VS Code extension version to 2.24.2.
server/package.json Updates server package version to 2.24.2.
server/src/codeql-development-mcp-server.ts Updates the server’s const VERSION to 2.24.2.
server/dist/codeql-development-mcp-server.js Updates bundled server artifact version string to 2.24.2.
server/scripts/update-release-version.sh Adds support for collecting/updating the server entrypoint const VERSION.
server/ql/actions/tools/src/codeql-pack.yml Updates Actions tools src pack version to 2.24.2.
server/ql/actions/tools/test/codeql-pack.yml Updates Actions tools test pack version to 2.24.2.
server/ql/cpp/tools/src/codeql-pack.yml Updates C/C++ tools src pack version to 2.24.2.
server/ql/cpp/tools/test/codeql-pack.yml Updates C/C++ tools test pack version to 2.24.2.
server/ql/csharp/tools/src/codeql-pack.yml Updates C# tools src pack version to 2.24.2.
server/ql/csharp/tools/test/codeql-pack.yml Updates C# tools test pack version to 2.24.2.
server/ql/go/tools/src/codeql-pack.yml Updates Go tools src pack version to 2.24.2.
server/ql/go/tools/test/codeql-pack.yml Updates Go tools test pack version to 2.24.2.
server/ql/java/tools/src/codeql-pack.yml Updates Java tools src pack version to 2.24.2.
server/ql/java/tools/test/codeql-pack.yml Updates Java tools test pack version to 2.24.2.
server/ql/javascript/tools/src/codeql-pack.yml Updates JavaScript tools src pack version to 2.24.2.
server/ql/javascript/tools/test/codeql-pack.yml Updates JavaScript tools test pack version to 2.24.2.
server/ql/python/tools/src/codeql-pack.yml Updates Python tools src pack version to 2.24.2.
server/ql/python/tools/test/codeql-pack.yml Updates Python tools test pack version to 2.24.2.
server/ql/ruby/tools/src/codeql-pack.yml Updates Ruby tools src pack version to 2.24.2.
server/ql/ruby/tools/test/codeql-pack.yml Updates Ruby tools test pack version to 2.24.2.
server/ql/swift/tools/src/codeql-pack.yml Updates Swift tools src pack version to 2.24.2.
server/ql/swift/tools/test/codeql-pack.yml Updates Swift tools test pack version to 2.24.2.

@data-douser data-douser changed the title Fix release update of version-bearing files from 2.24.2-rc2 to 2.24.2 Fix release update of version-bearing files from 2.24.2-rc3 to 2.24.2 Feb 25, 2026
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Signed-off-by: Nathan Randall <70299490+data-douser@users.noreply.github.com>
Copilot AI review requested due to automatic review settings February 25, 2026 04:54
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 24 out of 27 changed files in this pull request and generated 1 comment.

@@ -1,5 +1,5 @@
name: advanced-security/ql-mcp-swift-tools-src
version: 2.24.2-rc3
version: 2.24.2
Copy link

Copilot AI Feb 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description mentions updating codeql-pack.yml files for "actions, cpp, csharp, go, java, javascript, python, and ruby languages" but does not mention Swift. However, the actual code changes do include Swift pack files (server/ql/swift/tools/src/codeql-pack.yml and server/ql/swift/tools/test/codeql-pack.yml). The PR description should be updated to include Swift in the list of languages.

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bug Something isn't working enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants