Release preparation for version 2.22.4#20240
Conversation
There was a problem hiding this comment.
Pull Request Overview
This pull request prepares version 2.22.4 for release by updating version numbers across multiple CodeQL language packs and shared libraries, removing development suffixes, and updating release tracking files.
Key changes include:
- Removing
-devsuffix from version numbers in qlpack.yml files - Updating lastReleaseVersion in codeql-pack.release.yml files
- Creating new release change note files
- Consolidating change notes from unreleased files into CHANGELOG.md files
Reviewed Changes
Copilot reviewed 173 out of 173 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| swift/ql/src/qlpack.yml | Updated version from 1.2.3-dev to 1.2.3 |
| swift/ql/lib/qlpack.yml | Updated version from 5.0.5-dev to 5.0.5 |
| shared/*/qlpack.yml | Updated versions across multiple shared libraries (yaml, xml, util, typos, typetracking, etc.) |
| rust/ql/*/qlpack.yml | Updated Rust query and library versions to 0.1.14 |
| ruby/ql/*/qlpack.yml | Updated Ruby versions to 1.4.3 (queries) and 5.0.2 (lib) |
| python/ql/*/qlpack.yml | Updated Python versions to 1.6.3 (queries) and 4.0.13 (lib) |
| javascript/ql/*/qlpack.yml | Updated JavaScript versions to 2.0.2 (queries) and 2.6.9 (lib) |
| java/ql/*/qlpack.yml | Updated Java versions to 1.6.3 (queries) and 7.6.0 (lib) |
| go/ql/*/qlpack.yml | Updated Go versions and consistency queries |
| csharp/ql/*/qlpack.yml | Updated C# and Solorigate campaign versions |
| cpp/ql/*/qlpack.yml | Updated C++ versions to 1.4.6 (queries) and 5.4.1 (lib) |
| actions/ql/*/qlpack.yml | Updated GitHub Actions versions |
| misc/suite-helpers/qlpack.yml | Updated suite helpers version |
| */codeql-pack.release.yml | Updated lastReleaseVersion for all packages |
| /change-notes/released/.md | Added new release change note files |
| */CHANGELOG.md | Updated with consolidated change notes |
You can also share your feedback on Copilot code review for a chance to win a $100 gift card. Take the survey.
| @@ -1,5 +1,5 @@ | |||
| name: codeql/java-all | |||
| version: 7.5.1-dev | |||
| version: 7.6.0 | |||
There was a problem hiding this comment.
Version number inconsistency: The Java library version is being updated to 7.6.0, but the lastReleaseVersion in the corresponding codeql-pack.release.yml shows 7.5.0 as the previous version. This suggests the version should be 7.5.1 based on the original -dev suffix, not 7.6.0.
| version: 7.6.0 | |
| version: 7.5.1 |
No description provided.