diff --git a/actions/ql/lib/CHANGELOG.md b/actions/ql/lib/CHANGELOG.md index ddc9ef77e02d..c5829269bf4b 100644 --- a/actions/ql/lib/CHANGELOG.md +++ b/actions/ql/lib/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.4.3 + +### New Features + +* The "Unpinned tag for a non-immutable Action in workflow" query (`actions/unpinned-tag`) now supports expanding the trusted action owner list using data extensions (`extensible: trustedActionsOwnerDataModel`). If you trust an Action publisher, you can include the owner name/organization in a model pack to add it to the allow list for this query. This addition will prevent security alerts when using unpinned tags for Actions published by that owner. For more information on creating a model pack, see [Creating a CodeQL Model Pack](https://docs.github.com/en/code-security/codeql-cli/using-the-advanced-functionality-of-the-codeql-cli/creating-and-working-with-codeql-packs#creating-a-codeql-model-pack). + ## 0.4.2 ### Bug Fixes diff --git a/actions/ql/lib/change-notes/2025-01-07-trusted-owner-ext.md b/actions/ql/lib/change-notes/released/0.4.3.md similarity index 95% rename from actions/ql/lib/change-notes/2025-01-07-trusted-owner-ext.md rename to actions/ql/lib/change-notes/released/0.4.3.md index ecffb9cf1315..adfe281e1c33 100644 --- a/actions/ql/lib/change-notes/2025-01-07-trusted-owner-ext.md +++ b/actions/ql/lib/change-notes/released/0.4.3.md @@ -1,4 +1,5 @@ ---- -category: feature ---- -* The "Unpinned tag for a non-immutable Action in workflow" query (`actions/unpinned-tag`) now supports expanding the trusted action owner list using data extensions (`extensible: trustedActionsOwnerDataModel`). If you trust an Action publisher, you can include the owner name/organization in a model pack to add it to the allow list for this query. This addition will prevent security alerts when using unpinned tags for Actions published by that owner. For more information on creating a model pack, see [Creating a CodeQL Model Pack](https://docs.github.com/en/code-security/codeql-cli/using-the-advanced-functionality-of-the-codeql-cli/creating-and-working-with-codeql-packs#creating-a-codeql-model-pack). \ No newline at end of file +## 0.4.3 + +### New Features + +* The "Unpinned tag for a non-immutable Action in workflow" query (`actions/unpinned-tag`) now supports expanding the trusted action owner list using data extensions (`extensible: trustedActionsOwnerDataModel`). If you trust an Action publisher, you can include the owner name/organization in a model pack to add it to the allow list for this query. This addition will prevent security alerts when using unpinned tags for Actions published by that owner. For more information on creating a model pack, see [Creating a CodeQL Model Pack](https://docs.github.com/en/code-security/codeql-cli/using-the-advanced-functionality-of-the-codeql-cli/creating-and-working-with-codeql-packs#creating-a-codeql-model-pack). diff --git a/actions/ql/lib/codeql-pack.release.yml b/actions/ql/lib/codeql-pack.release.yml index 94c5b17423cc..1ec9c4ea5d96 100644 --- a/actions/ql/lib/codeql-pack.release.yml +++ b/actions/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.4.2 +lastReleaseVersion: 0.4.3 diff --git a/actions/ql/lib/qlpack.yml b/actions/ql/lib/qlpack.yml index 2392397c0a34..e2c404acfe63 100644 --- a/actions/ql/lib/qlpack.yml +++ b/actions/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/actions-all -version: 0.4.3-dev +version: 0.4.3 library: true warnOnImplicitThis: true dependencies: diff --git a/actions/ql/src/CHANGELOG.md b/actions/ql/src/CHANGELOG.md index 02c0e793c976..58690da3f48a 100644 --- a/actions/ql/src/CHANGELOG.md +++ b/actions/ql/src/CHANGELOG.md @@ -1,3 +1,29 @@ +## 0.5.0 + +### Breaking Changes + +* The following queries have been removed from the `code-scanning` and `security-extended` suites. + Any existing alerts for these queries will be closed automatically. + * `actions/if-expression-always-true/critical` + * `actions/if-expression-always-true/high` + * `actions/unnecessary-use-of-advanced-config` + +* The following query has been moved from the `code-scanning` suite to the `security-extended` + suite. Any existing alerts for this query will be closed automatically unless the analysis is + configured to use the `security-extended` suite. + * `actions/unpinned-tag` +* The following queries have been added to the `security-extended` suite. + * `actions/unversioned-immutable-action` + * `actions/envpath-injection/medium` + * `actions/envvar-injection/medium` + * `actions/code-injection/medium` + * `actions/artifact-poisoning/medium` + * `actions/untrusted-checkout/medium` + +### Minor Analysis Improvements + +* Fixed false positives in the query `actions/unpinned-tag` (CWE-829), which will no longer flag uses of Docker-based GitHub actions pinned by the container's SHA256 digest. + ## 0.4.2 No user-facing changes. diff --git a/actions/ql/src/change-notes/2025-02-14-docker-false-positives.md b/actions/ql/src/change-notes/2025-02-14-docker-false-positives.md deleted file mode 100644 index 387472462205..000000000000 --- a/actions/ql/src/change-notes/2025-02-14-docker-false-positives.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -category: minorAnalysis ---- - -* Fixed false positives in the query `actions/unpinned-tag` (CWE-829), which will no longer flag uses of Docker-based GitHub actions pinned by the container's SHA256 digest. diff --git a/actions/ql/src/change-notes/2025-02-06-curate-suites.md b/actions/ql/src/change-notes/released/0.5.0.md similarity index 78% rename from actions/ql/src/change-notes/2025-02-06-curate-suites.md rename to actions/ql/src/change-notes/released/0.5.0.md index 8845e52f8f5a..a508c8c09b3a 100644 --- a/actions/ql/src/change-notes/2025-02-06-curate-suites.md +++ b/actions/ql/src/change-notes/released/0.5.0.md @@ -1,6 +1,7 @@ ---- -category: breaking ---- +## 0.5.0 + +### Breaking Changes + * The following queries have been removed from the `code-scanning` and `security-extended` suites. Any existing alerts for these queries will be closed automatically. * `actions/if-expression-always-true/critical` @@ -18,3 +19,7 @@ category: breaking * `actions/code-injection/medium` * `actions/artifact-poisoning/medium` * `actions/untrusted-checkout/medium` + +### Minor Analysis Improvements + +* Fixed false positives in the query `actions/unpinned-tag` (CWE-829), which will no longer flag uses of Docker-based GitHub actions pinned by the container's SHA256 digest. diff --git a/actions/ql/src/codeql-pack.release.yml b/actions/ql/src/codeql-pack.release.yml index 94c5b17423cc..30e271c5361c 100644 --- a/actions/ql/src/codeql-pack.release.yml +++ b/actions/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.4.2 +lastReleaseVersion: 0.5.0 diff --git a/actions/ql/src/qlpack.yml b/actions/ql/src/qlpack.yml index d7575be7f77e..8653e20a5f0b 100644 --- a/actions/ql/src/qlpack.yml +++ b/actions/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/actions-queries -version: 0.4.3-dev +version: 0.5.0 library: false warnOnImplicitThis: true groups: [actions, queries] diff --git a/cpp/ql/lib/CHANGELOG.md b/cpp/ql/lib/CHANGELOG.md index 0d2244838256..ad8002921958 100644 --- a/cpp/ql/lib/CHANGELOG.md +++ b/cpp/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 4.0.1 + +No user-facing changes. + ## 4.0.0 ### Breaking Changes diff --git a/cpp/ql/lib/change-notes/released/4.0.1.md b/cpp/ql/lib/change-notes/released/4.0.1.md new file mode 100644 index 000000000000..e04e687f6e48 --- /dev/null +++ b/cpp/ql/lib/change-notes/released/4.0.1.md @@ -0,0 +1,3 @@ +## 4.0.1 + +No user-facing changes. diff --git a/cpp/ql/lib/codeql-pack.release.yml b/cpp/ql/lib/codeql-pack.release.yml index 49fe3eef6973..c0db4dcc0b33 100644 --- a/cpp/ql/lib/codeql-pack.release.yml +++ b/cpp/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 4.0.0 +lastReleaseVersion: 4.0.1 diff --git a/cpp/ql/lib/qlpack.yml b/cpp/ql/lib/qlpack.yml index f9b07e13a995..39f6675b9361 100644 --- a/cpp/ql/lib/qlpack.yml +++ b/cpp/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/cpp-all -version: 4.0.1-dev +version: 4.0.1 groups: cpp dbscheme: semmlecode.cpp.dbscheme extractor: cpp diff --git a/cpp/ql/src/CHANGELOG.md b/cpp/ql/src/CHANGELOG.md index 1a4c8b061806..21e9b2b61195 100644 --- a/cpp/ql/src/CHANGELOG.md +++ b/cpp/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.3.4 + +No user-facing changes. + ## 1.3.3 ### Minor Analysis Improvements diff --git a/cpp/ql/src/change-notes/released/1.3.4.md b/cpp/ql/src/change-notes/released/1.3.4.md new file mode 100644 index 000000000000..5073aca7222c --- /dev/null +++ b/cpp/ql/src/change-notes/released/1.3.4.md @@ -0,0 +1,3 @@ +## 1.3.4 + +No user-facing changes. diff --git a/cpp/ql/src/codeql-pack.release.yml b/cpp/ql/src/codeql-pack.release.yml index eb1f7dabc842..8263ddf2c8b8 100644 --- a/cpp/ql/src/codeql-pack.release.yml +++ b/cpp/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.3.3 +lastReleaseVersion: 1.3.4 diff --git a/cpp/ql/src/qlpack.yml b/cpp/ql/src/qlpack.yml index f47caeb6b71b..5d694ab8cc8d 100644 --- a/cpp/ql/src/qlpack.yml +++ b/cpp/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/cpp-queries -version: 1.3.4-dev +version: 1.3.4 groups: - cpp - queries diff --git a/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md b/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md index 288181c929f1..938e64917e44 100644 --- a/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md +++ b/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.7.34 + +No user-facing changes. + ## 1.7.33 No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/lib/change-notes/released/1.7.34.md b/csharp/ql/campaigns/Solorigate/lib/change-notes/released/1.7.34.md new file mode 100644 index 000000000000..c24a10514ad9 --- /dev/null +++ b/csharp/ql/campaigns/Solorigate/lib/change-notes/released/1.7.34.md @@ -0,0 +1,3 @@ +## 1.7.34 + +No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml b/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml index 80f613ab828e..8b738878b2f9 100644 --- a/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml +++ b/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.7.33 +lastReleaseVersion: 1.7.34 diff --git a/csharp/ql/campaigns/Solorigate/lib/qlpack.yml b/csharp/ql/campaigns/Solorigate/lib/qlpack.yml index 2a2b7f233978..604e5c8ce85b 100644 --- a/csharp/ql/campaigns/Solorigate/lib/qlpack.yml +++ b/csharp/ql/campaigns/Solorigate/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-solorigate-all -version: 1.7.34-dev +version: 1.7.34 groups: - csharp - solorigate diff --git a/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md b/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md index 288181c929f1..938e64917e44 100644 --- a/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md +++ b/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.7.34 + +No user-facing changes. + ## 1.7.33 No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/src/change-notes/released/1.7.34.md b/csharp/ql/campaigns/Solorigate/src/change-notes/released/1.7.34.md new file mode 100644 index 000000000000..c24a10514ad9 --- /dev/null +++ b/csharp/ql/campaigns/Solorigate/src/change-notes/released/1.7.34.md @@ -0,0 +1,3 @@ +## 1.7.34 + +No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml b/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml index 80f613ab828e..8b738878b2f9 100644 --- a/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml +++ b/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.7.33 +lastReleaseVersion: 1.7.34 diff --git a/csharp/ql/campaigns/Solorigate/src/qlpack.yml b/csharp/ql/campaigns/Solorigate/src/qlpack.yml index fae71e157996..ea626edf16fa 100644 --- a/csharp/ql/campaigns/Solorigate/src/qlpack.yml +++ b/csharp/ql/campaigns/Solorigate/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-solorigate-queries -version: 1.7.34-dev +version: 1.7.34 groups: - csharp - solorigate diff --git a/csharp/ql/lib/CHANGELOG.md b/csharp/ql/lib/CHANGELOG.md index 211ce45f0cac..d85fe1d07ef8 100644 --- a/csharp/ql/lib/CHANGELOG.md +++ b/csharp/ql/lib/CHANGELOG.md @@ -1,3 +1,18 @@ +## 5.1.0 + +### Deprecated APIs + +* The predicates `immediatelyControls` and `controls` on the `ConditionBlock` + class have been deprecated in favor of the newly added `dominatingEdge` + predicate. + +### Minor Analysis Improvements + +* Full support for C# 13 / .NET 9. All new language features are now supported by the extractor. QL library and data flow support for the new C# 13 language constructs and generated MaD models for the .NET 9 runtime. +* C# 13: Add generated models for .NET 9. +* The models for `System.Net.Http.HttpRequestMessage` and `System.UriBuilder` have been modified to better model the flow of tainted URIs. +* Blazor `[Parameter]` fields bound to a variable from the route specified in the `@page` directive are now modeled as remote flow sources. + ## 5.0.0 ### Breaking Changes diff --git a/csharp/ql/lib/change-notes/2025-02-03-blazor-routing-parameters.md b/csharp/ql/lib/change-notes/2025-02-03-blazor-routing-parameters.md deleted file mode 100644 index 00afc5867c62..000000000000 --- a/csharp/ql/lib/change-notes/2025-02-03-blazor-routing-parameters.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: minorAnalysis ---- -* Blazor `[Parameter]` fields bound to a variable from the route specified in the `@page` directive are now modeled as remote flow sources. diff --git a/csharp/ql/lib/change-notes/2025-02-05-update-system.net.http.httprequestmessage-and-system.uribuilder-models.md b/csharp/ql/lib/change-notes/2025-02-05-update-system.net.http.httprequestmessage-and-system.uribuilder-models.md deleted file mode 100644 index df0c3f15af4d..000000000000 --- a/csharp/ql/lib/change-notes/2025-02-05-update-system.net.http.httprequestmessage-and-system.uribuilder-models.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: minorAnalysis ---- -* The models for `System.Net.Http.HttpRequestMessage` and `System.UriBuilder` have been modified to better model the flow of tainted URIs. \ No newline at end of file diff --git a/csharp/ql/lib/change-notes/2025-02-07-dotnet-models.md b/csharp/ql/lib/change-notes/2025-02-07-dotnet-models.md deleted file mode 100644 index ddb1d0767f5b..000000000000 --- a/csharp/ql/lib/change-notes/2025-02-07-dotnet-models.md +++ /dev/null @@ -1,5 +0,0 @@ - ---- -category: minorAnalysis ---- -* C# 13: Add generated models for .NET 9. diff --git a/csharp/ql/lib/change-notes/2025-02-13-csharp13-dotnet9.md b/csharp/ql/lib/change-notes/2025-02-13-csharp13-dotnet9.md deleted file mode 100644 index ec8c6c565adb..000000000000 --- a/csharp/ql/lib/change-notes/2025-02-13-csharp13-dotnet9.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: minorAnalysis ---- -* Full support for C# 13 / .NET 9. All new language features are now supported by the extractor. QL library and data flow support for the new C# 13 language constructs and generated MaD models for the .NET 9 runtime. diff --git a/csharp/ql/lib/change-notes/released/5.1.0.md b/csharp/ql/lib/change-notes/released/5.1.0.md new file mode 100644 index 000000000000..3bcb077946ca --- /dev/null +++ b/csharp/ql/lib/change-notes/released/5.1.0.md @@ -0,0 +1,14 @@ +## 5.1.0 + +### Deprecated APIs + +* The predicates `immediatelyControls` and `controls` on the `ConditionBlock` + class have been deprecated in favor of the newly added `dominatingEdge` + predicate. + +### Minor Analysis Improvements + +* Full support for C# 13 / .NET 9. All new language features are now supported by the extractor. QL library and data flow support for the new C# 13 language constructs and generated MaD models for the .NET 9 runtime. +* C# 13: Add generated models for .NET 9. +* The models for `System.Net.Http.HttpRequestMessage` and `System.UriBuilder` have been modified to better model the flow of tainted URIs. +* Blazor `[Parameter]` fields bound to a variable from the route specified in the `@page` directive are now modeled as remote flow sources. diff --git a/csharp/ql/lib/codeql-pack.release.yml b/csharp/ql/lib/codeql-pack.release.yml index c9e54136ca5c..dd8d287d0103 100644 --- a/csharp/ql/lib/codeql-pack.release.yml +++ b/csharp/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 5.0.0 +lastReleaseVersion: 5.1.0 diff --git a/csharp/ql/lib/qlpack.yml b/csharp/ql/lib/qlpack.yml index 2f8a154c73f1..dc9235bcae36 100644 --- a/csharp/ql/lib/qlpack.yml +++ b/csharp/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-all -version: 5.0.1-dev +version: 5.1.0 groups: csharp dbscheme: semmlecode.csharp.dbscheme extractor: csharp diff --git a/csharp/ql/src/CHANGELOG.md b/csharp/ql/src/CHANGELOG.md index 90e6d1c825d8..3818028925a3 100644 --- a/csharp/ql/src/CHANGELOG.md +++ b/csharp/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 ### Minor Analysis Improvements diff --git a/csharp/ql/src/change-notes/released/1.0.17.md b/csharp/ql/src/change-notes/released/1.0.17.md new file mode 100644 index 000000000000..4180b2c20f23 --- /dev/null +++ b/csharp/ql/src/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/csharp/ql/src/codeql-pack.release.yml b/csharp/ql/src/codeql-pack.release.yml index 25c58f4113f0..a88f1245e146 100644 --- a/csharp/ql/src/codeql-pack.release.yml +++ b/csharp/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/csharp/ql/src/qlpack.yml b/csharp/ql/src/qlpack.yml index ac10cfe753a4..ac1433ae655a 100644 --- a/csharp/ql/src/qlpack.yml +++ b/csharp/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-queries -version: 1.0.17-dev +version: 1.0.17 groups: - csharp - queries diff --git a/go/ql/consistency-queries/CHANGELOG.md b/go/ql/consistency-queries/CHANGELOG.md index 6bc6aae0b4e3..99c47f43d529 100644 --- a/go/ql/consistency-queries/CHANGELOG.md +++ b/go/ql/consistency-queries/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 No user-facing changes. diff --git a/go/ql/consistency-queries/change-notes/released/1.0.17.md b/go/ql/consistency-queries/change-notes/released/1.0.17.md new file mode 100644 index 000000000000..4180b2c20f23 --- /dev/null +++ b/go/ql/consistency-queries/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/go/ql/consistency-queries/codeql-pack.release.yml b/go/ql/consistency-queries/codeql-pack.release.yml index 25c58f4113f0..a88f1245e146 100644 --- a/go/ql/consistency-queries/codeql-pack.release.yml +++ b/go/ql/consistency-queries/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/go/ql/consistency-queries/qlpack.yml b/go/ql/consistency-queries/qlpack.yml index aec2e2037ad9..d935becec350 100644 --- a/go/ql/consistency-queries/qlpack.yml +++ b/go/ql/consistency-queries/qlpack.yml @@ -1,5 +1,5 @@ name: codeql-go-consistency-queries -version: 1.0.17-dev +version: 1.0.17 groups: - go - queries diff --git a/go/ql/lib/CHANGELOG.md b/go/ql/lib/CHANGELOG.md index 1e151003ad9c..eef7a13d9a90 100644 --- a/go/ql/lib/CHANGELOG.md +++ b/go/ql/lib/CHANGELOG.md @@ -1,3 +1,16 @@ +## 4.1.0 + +### Deprecated APIs + +* The class `NamedType` has been deprecated. Use the new class `DefinedType` instead. This better matches the terminology used in the Go language specification, which was changed in Go 1.9. +* The member predicate `getNamedType` on `GoMicro::ServiceInterfaceType` has been deprecated. Use the new member predicate `getDefinedType` instead. +* The member predicate `getNamedType` on `Twirp::ServiceInterfaceType` has been deprecated. Use the new member predicate `getDefinedType` instead. + +### Minor Analysis Improvements + +* Taint models have been added for the `weak` package, which was added in Go 1.24. +* Taint models have been added for the interfaces `TextAppender` and `BinaryAppender` in the `encoding` package, which were added in Go 1.24. + ## 4.0.0 ### Breaking Changes diff --git a/go/ql/lib/change-notes/2025-01-09-model-stdlib-1.24.md b/go/ql/lib/change-notes/2025-01-09-model-stdlib-1.24.md deleted file mode 100644 index 3bb5009cffde..000000000000 --- a/go/ql/lib/change-notes/2025-01-09-model-stdlib-1.24.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -category: minorAnalysis ---- -* Taint models have been added for the `weak` package, which was added in Go 1.24. -* Taint models have been added for the interfaces `TextAppender` and `BinaryAppender` in the `encoding` package, which were added in Go 1.24. diff --git a/go/ql/lib/change-notes/2025-02-12-deprecate-namedtype.md b/go/ql/lib/change-notes/released/4.1.0.md similarity index 62% rename from go/ql/lib/change-notes/2025-02-12-deprecate-namedtype.md rename to go/ql/lib/change-notes/released/4.1.0.md index ded0fa491ab1..3061e491f48b 100644 --- a/go/ql/lib/change-notes/2025-02-12-deprecate-namedtype.md +++ b/go/ql/lib/change-notes/released/4.1.0.md @@ -1,6 +1,12 @@ ---- -category: deprecated ---- +## 4.1.0 + +### Deprecated APIs + * The class `NamedType` has been deprecated. Use the new class `DefinedType` instead. This better matches the terminology used in the Go language specification, which was changed in Go 1.9. * The member predicate `getNamedType` on `GoMicro::ServiceInterfaceType` has been deprecated. Use the new member predicate `getDefinedType` instead. * The member predicate `getNamedType` on `Twirp::ServiceInterfaceType` has been deprecated. Use the new member predicate `getDefinedType` instead. + +### Minor Analysis Improvements + +* Taint models have been added for the `weak` package, which was added in Go 1.24. +* Taint models have been added for the interfaces `TextAppender` and `BinaryAppender` in the `encoding` package, which were added in Go 1.24. diff --git a/go/ql/lib/codeql-pack.release.yml b/go/ql/lib/codeql-pack.release.yml index 49fe3eef6973..d5b1bf88d10e 100644 --- a/go/ql/lib/codeql-pack.release.yml +++ b/go/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 4.0.0 +lastReleaseVersion: 4.1.0 diff --git a/go/ql/lib/qlpack.yml b/go/ql/lib/qlpack.yml index 0ef261c505e5..7ad4701e1b09 100644 --- a/go/ql/lib/qlpack.yml +++ b/go/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/go-all -version: 4.0.1-dev +version: 4.1.0 groups: go dbscheme: go.dbscheme extractor: go diff --git a/go/ql/src/CHANGELOG.md b/go/ql/src/CHANGELOG.md index 809116d3d329..acb065e05a3e 100644 --- a/go/ql/src/CHANGELOG.md +++ b/go/ql/src/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.1.8 + +### Minor Analysis Improvements + +* Added [github.com/gorilla/mux.Vars](https://pkg.go.dev/github.com/gorilla/mux#Vars) to path sanitizers (disabled if [github.com/gorilla/mix.Router.SkipClean](https://pkg.go.dev/github.com/gorilla/mux#Router.SkipClean) has been called). + ## 1.1.7 No user-facing changes. diff --git a/go/ql/src/change-notes/2024-10-14-gopathsanitizer.md b/go/ql/src/change-notes/released/1.1.8.md similarity index 68% rename from go/ql/src/change-notes/2024-10-14-gopathsanitizer.md rename to go/ql/src/change-notes/released/1.1.8.md index e1577bf3a90f..44d87ecdfd8a 100644 --- a/go/ql/src/change-notes/2024-10-14-gopathsanitizer.md +++ b/go/ql/src/change-notes/released/1.1.8.md @@ -1,4 +1,5 @@ ---- -category: minorAnalysis ---- -* Added [github.com/gorilla/mux.Vars](https://pkg.go.dev/github.com/gorilla/mux#Vars) to path sanitizers (disabled if [github.com/gorilla/mix.Router.SkipClean](https://pkg.go.dev/github.com/gorilla/mux#Router.SkipClean) has been called). \ No newline at end of file +## 1.1.8 + +### Minor Analysis Improvements + +* Added [github.com/gorilla/mux.Vars](https://pkg.go.dev/github.com/gorilla/mux#Vars) to path sanitizers (disabled if [github.com/gorilla/mix.Router.SkipClean](https://pkg.go.dev/github.com/gorilla/mux#Router.SkipClean) has been called). diff --git a/go/ql/src/codeql-pack.release.yml b/go/ql/src/codeql-pack.release.yml index 759105565166..64972659c426 100644 --- a/go/ql/src/codeql-pack.release.yml +++ b/go/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.1.7 +lastReleaseVersion: 1.1.8 diff --git a/go/ql/src/qlpack.yml b/go/ql/src/qlpack.yml index e4ddb827af22..2ad511b8af50 100644 --- a/go/ql/src/qlpack.yml +++ b/go/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/go-queries -version: 1.1.8-dev +version: 1.1.8 groups: - go - queries diff --git a/java/ql/lib/CHANGELOG.md b/java/ql/lib/CHANGELOG.md index 5bc77cfcdf54..b7ef02c4149d 100644 --- a/java/ql/lib/CHANGELOG.md +++ b/java/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 7.0.1 + +No user-facing changes. + ## 7.0.0 ### Breaking Changes diff --git a/java/ql/lib/change-notes/released/7.0.1.md b/java/ql/lib/change-notes/released/7.0.1.md new file mode 100644 index 000000000000..b5ef70820b26 --- /dev/null +++ b/java/ql/lib/change-notes/released/7.0.1.md @@ -0,0 +1,3 @@ +## 7.0.1 + +No user-facing changes. diff --git a/java/ql/lib/codeql-pack.release.yml b/java/ql/lib/codeql-pack.release.yml index e0db21c78694..a18747dd3a7a 100644 --- a/java/ql/lib/codeql-pack.release.yml +++ b/java/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 7.0.0 +lastReleaseVersion: 7.0.1 diff --git a/java/ql/lib/qlpack.yml b/java/ql/lib/qlpack.yml index 7f5ba7b3c1d0..8c9860000780 100644 --- a/java/ql/lib/qlpack.yml +++ b/java/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/java-all -version: 7.0.1-dev +version: 7.0.1 groups: java dbscheme: config/semmlecode.dbscheme extractor: java diff --git a/java/ql/src/CHANGELOG.md b/java/ql/src/CHANGELOG.md index 1630463509ed..b687bb0f6d94 100644 --- a/java/ql/src/CHANGELOG.md +++ b/java/ql/src/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.2.0 + +### New Queries + +* Added a new query, `java/csrf-unprotected-request-type`, to detect Cross-Site Request Forgery (CSRF) vulnerabilities due to using HTTP request types that are not default-protected from CSRF. + ## 1.1.13 ### Minor Analysis Improvements diff --git a/java/ql/src/change-notes/2024-12-16-csrf-unprotected-request-type.md b/java/ql/src/change-notes/released/1.2.0.md similarity index 87% rename from java/ql/src/change-notes/2024-12-16-csrf-unprotected-request-type.md rename to java/ql/src/change-notes/released/1.2.0.md index 13dea758e8b4..4907c7cdbaa1 100644 --- a/java/ql/src/change-notes/2024-12-16-csrf-unprotected-request-type.md +++ b/java/ql/src/change-notes/released/1.2.0.md @@ -1,4 +1,5 @@ ---- -category: newQuery ---- +## 1.2.0 + +### New Queries + * Added a new query, `java/csrf-unprotected-request-type`, to detect Cross-Site Request Forgery (CSRF) vulnerabilities due to using HTTP request types that are not default-protected from CSRF. diff --git a/java/ql/src/codeql-pack.release.yml b/java/ql/src/codeql-pack.release.yml index 09a80be68d17..75430e73d1c4 100644 --- a/java/ql/src/codeql-pack.release.yml +++ b/java/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.1.13 +lastReleaseVersion: 1.2.0 diff --git a/java/ql/src/qlpack.yml b/java/ql/src/qlpack.yml index 38d900312179..00d0e5c0aa87 100644 --- a/java/ql/src/qlpack.yml +++ b/java/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/java-queries -version: 1.1.14-dev +version: 1.2.0 groups: - java - queries diff --git a/javascript/ql/lib/CHANGELOG.md b/javascript/ql/lib/CHANGELOG.md index e79db6c81b33..75fc3bec6dc9 100644 --- a/javascript/ql/lib/CHANGELOG.md +++ b/javascript/ql/lib/CHANGELOG.md @@ -1,3 +1,9 @@ +## 2.4.1 + +### Minor Analysis Improvements + +* Added support for regular expressions using the `v` flag. + ## 2.4.0 ### Major Analysis Improvements diff --git a/javascript/ql/lib/change-notes/2025-02-16-v-flag.md b/javascript/ql/lib/change-notes/released/2.4.1.md similarity index 58% rename from javascript/ql/lib/change-notes/2025-02-16-v-flag.md rename to javascript/ql/lib/change-notes/released/2.4.1.md index 9fe3c681028b..8c63327c74d6 100644 --- a/javascript/ql/lib/change-notes/2025-02-16-v-flag.md +++ b/javascript/ql/lib/change-notes/released/2.4.1.md @@ -1,4 +1,5 @@ ---- -category: minorAnalysis ---- +## 2.4.1 + +### Minor Analysis Improvements + * Added support for regular expressions using the `v` flag. diff --git a/javascript/ql/lib/codeql-pack.release.yml b/javascript/ql/lib/codeql-pack.release.yml index cb0ea3a249a6..eead7b212dae 100644 --- a/javascript/ql/lib/codeql-pack.release.yml +++ b/javascript/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.4.0 +lastReleaseVersion: 2.4.1 diff --git a/javascript/ql/lib/qlpack.yml b/javascript/ql/lib/qlpack.yml index 781d1ee1b1e5..27247958dc95 100644 --- a/javascript/ql/lib/qlpack.yml +++ b/javascript/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/javascript-all -version: 2.4.1-dev +version: 2.4.1 groups: javascript dbscheme: semmlecode.javascript.dbscheme extractor: javascript diff --git a/javascript/ql/src/CHANGELOG.md b/javascript/ql/src/CHANGELOG.md index 2f8c0a183923..49d57f50ba9c 100644 --- a/javascript/ql/src/CHANGELOG.md +++ b/javascript/ql/src/CHANGELOG.md @@ -1,3 +1,15 @@ +## 1.4.1 + +### Bug Fixes + +* Fixed a recently-introduced bug that prevented taint tracking through `URLSearchParams` objects. + The original behaviour has been restored and taint should once again be tracked through such objects. +* Fixed a rare issue that would occur when a function declaration inside a block statement was referenced before it was declared. + Such code is reliant on legacy web semantics, which is non-standard but nevertheless implemented by most engines. + CodeQL now takes legacy web semantics into account and resolves references to these functions correctly. +* Fixed a bug that would cause parse errors in `.jsx` files in rare cases where the file + contained syntax that was misinterpreted as Flow syntax. + ## 1.4.0 ### Major Analysis Improvements diff --git a/javascript/ql/src/change-notes/2025-02-04-jsx-parser-first-attempt.md b/javascript/ql/src/change-notes/2025-02-04-jsx-parser-first-attempt.md deleted file mode 100644 index 5a5f7acc0baf..000000000000 --- a/javascript/ql/src/change-notes/2025-02-04-jsx-parser-first-attempt.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -category: fix ---- -* Fixed a bug that would cause parse errors in `.jsx` files in rare cases where the file - contained syntax that was misinterpreted as Flow syntax. diff --git a/javascript/ql/src/change-notes/2025-02-06-hoist-in-block.md b/javascript/ql/src/change-notes/2025-02-06-hoist-in-block.md deleted file mode 100644 index 9fa966e23ce3..000000000000 --- a/javascript/ql/src/change-notes/2025-02-06-hoist-in-block.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -category: fix ---- -* Fixed a rare issue that would occur when a function declaration inside a block statement was referenced before it was declared. - Such code is reliant on legacy web semantics, which is non-standard but nevertheless implemented by most engines. - CodeQL now takes legacy web semantics into account and resolves references to these functions correctly. diff --git a/javascript/ql/src/change-notes/2025-02-13-url-search-params.md b/javascript/ql/src/change-notes/2025-02-13-url-search-params.md deleted file mode 100644 index facac3d4fc94..000000000000 --- a/javascript/ql/src/change-notes/2025-02-13-url-search-params.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -category: fix ---- -* Fixed a recently-introduced bug that prevented taint tracking through `URLSearchParams` objects. - The original behaviour has been restored and taint should once again be tracked through such objects. diff --git a/javascript/ql/src/change-notes/released/1.4.1.md b/javascript/ql/src/change-notes/released/1.4.1.md new file mode 100644 index 000000000000..ffd0d8a0bedb --- /dev/null +++ b/javascript/ql/src/change-notes/released/1.4.1.md @@ -0,0 +1,11 @@ +## 1.4.1 + +### Bug Fixes + +* Fixed a recently-introduced bug that prevented taint tracking through `URLSearchParams` objects. + The original behaviour has been restored and taint should once again be tracked through such objects. +* Fixed a rare issue that would occur when a function declaration inside a block statement was referenced before it was declared. + Such code is reliant on legacy web semantics, which is non-standard but nevertheless implemented by most engines. + CodeQL now takes legacy web semantics into account and resolves references to these functions correctly. +* Fixed a bug that would cause parse errors in `.jsx` files in rare cases where the file + contained syntax that was misinterpreted as Flow syntax. diff --git a/javascript/ql/src/codeql-pack.release.yml b/javascript/ql/src/codeql-pack.release.yml index b8b2e97d5086..43ccf4467bed 100644 --- a/javascript/ql/src/codeql-pack.release.yml +++ b/javascript/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.4.0 +lastReleaseVersion: 1.4.1 diff --git a/javascript/ql/src/qlpack.yml b/javascript/ql/src/qlpack.yml index 4996899a411a..fe3995f6af78 100644 --- a/javascript/ql/src/qlpack.yml +++ b/javascript/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/javascript-queries -version: 1.4.1-dev +version: 1.4.1 groups: - javascript - queries diff --git a/misc/suite-helpers/CHANGELOG.md b/misc/suite-helpers/CHANGELOG.md index 0227fc12fbef..9bc6498316c4 100644 --- a/misc/suite-helpers/CHANGELOG.md +++ b/misc/suite-helpers/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 No user-facing changes. diff --git a/misc/suite-helpers/change-notes/released/1.0.17.md b/misc/suite-helpers/change-notes/released/1.0.17.md new file mode 100644 index 000000000000..4180b2c20f23 --- /dev/null +++ b/misc/suite-helpers/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/misc/suite-helpers/codeql-pack.release.yml b/misc/suite-helpers/codeql-pack.release.yml index 25c58f4113f0..a88f1245e146 100644 --- a/misc/suite-helpers/codeql-pack.release.yml +++ b/misc/suite-helpers/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/misc/suite-helpers/qlpack.yml b/misc/suite-helpers/qlpack.yml index 53321132e5b3..edf09f792c85 100644 --- a/misc/suite-helpers/qlpack.yml +++ b/misc/suite-helpers/qlpack.yml @@ -1,4 +1,4 @@ name: codeql/suite-helpers -version: 1.0.17-dev +version: 1.0.17 groups: shared warnOnImplicitThis: true diff --git a/python/ql/lib/CHANGELOG.md b/python/ql/lib/CHANGELOG.md index a0b21e902656..17c118e70399 100644 --- a/python/ql/lib/CHANGELOG.md +++ b/python/ql/lib/CHANGELOG.md @@ -1,3 +1,10 @@ +## 4.0.1 + +### Bug Fixes + +- Fixed a bug in the extractor where a comment inside a subscript could sometimes cause the AST to be missing nodes. +- Using the `break` and `continue` keywords outside of a loop, which is a syntax error but is accepted by our parser, would cause the control-flow construction to fail. This is now no longer the case. + ## 4.0.0 ### Breaking Changes diff --git a/python/ql/lib/change-notes/2025-02-06-allow-comments-in-subscripts.md b/python/ql/lib/change-notes/2025-02-06-allow-comments-in-subscripts.md deleted file mode 100644 index f962b27ca316..000000000000 --- a/python/ql/lib/change-notes/2025-02-06-allow-comments-in-subscripts.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -category: fix ---- - -- Fixed a bug in the extractor where a comment inside a subscript could sometimes cause the AST to be missing nodes. diff --git a/python/ql/lib/change-notes/2025-02-06-robustly-handle-loop-constructs.md b/python/ql/lib/change-notes/released/4.0.1.md similarity index 58% rename from python/ql/lib/change-notes/2025-02-06-robustly-handle-loop-constructs.md rename to python/ql/lib/change-notes/released/4.0.1.md index 45bbb2e7cc4f..39ee0936258e 100644 --- a/python/ql/lib/change-notes/2025-02-06-robustly-handle-loop-constructs.md +++ b/python/ql/lib/change-notes/released/4.0.1.md @@ -1,5 +1,6 @@ ---- -category: fix ---- +## 4.0.1 +### Bug Fixes + +- Fixed a bug in the extractor where a comment inside a subscript could sometimes cause the AST to be missing nodes. - Using the `break` and `continue` keywords outside of a loop, which is a syntax error but is accepted by our parser, would cause the control-flow construction to fail. This is now no longer the case. diff --git a/python/ql/lib/codeql-pack.release.yml b/python/ql/lib/codeql-pack.release.yml index 49fe3eef6973..c0db4dcc0b33 100644 --- a/python/ql/lib/codeql-pack.release.yml +++ b/python/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 4.0.0 +lastReleaseVersion: 4.0.1 diff --git a/python/ql/lib/qlpack.yml b/python/ql/lib/qlpack.yml index 6fa3880f8624..149b2b111cb4 100644 --- a/python/ql/lib/qlpack.yml +++ b/python/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/python-all -version: 4.0.1-dev +version: 4.0.1 groups: python dbscheme: semmlecode.python.dbscheme extractor: python diff --git a/python/ql/src/CHANGELOG.md b/python/ql/src/CHANGELOG.md index f336f27befe5..51366c4c90ee 100644 --- a/python/ql/src/CHANGELOG.md +++ b/python/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.4.3 + +No user-facing changes. + ## 1.4.2 No user-facing changes. diff --git a/python/ql/src/change-notes/released/1.4.3.md b/python/ql/src/change-notes/released/1.4.3.md new file mode 100644 index 000000000000..abf2a0d4dcce --- /dev/null +++ b/python/ql/src/change-notes/released/1.4.3.md @@ -0,0 +1,3 @@ +## 1.4.3 + +No user-facing changes. diff --git a/python/ql/src/codeql-pack.release.yml b/python/ql/src/codeql-pack.release.yml index a76cacdf7997..08f88b689fb6 100644 --- a/python/ql/src/codeql-pack.release.yml +++ b/python/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.4.2 +lastReleaseVersion: 1.4.3 diff --git a/python/ql/src/qlpack.yml b/python/ql/src/qlpack.yml index 98dbf9bb34ca..91b149f88c20 100644 --- a/python/ql/src/qlpack.yml +++ b/python/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/python-queries -version: 1.4.3-dev +version: 1.4.3 groups: - python - queries diff --git a/ruby/ql/lib/CHANGELOG.md b/ruby/ql/lib/CHANGELOG.md index 0acb1e8a240d..d7818abe71ef 100644 --- a/ruby/ql/lib/CHANGELOG.md +++ b/ruby/ql/lib/CHANGELOG.md @@ -1,3 +1,11 @@ +## 4.1.0 + +### Deprecated APIs + +* The predicates `immediatelyControls` and `controls` on the `ConditionBlock` + class have been deprecated in favor of the newly added `dominatingEdge` + predicate. + ## 4.0.0 ### Breaking Changes diff --git a/csharp/ql/lib/change-notes/2025-02-11-basic-block-rename.md b/ruby/ql/lib/change-notes/released/4.1.0.md similarity index 84% rename from csharp/ql/lib/change-notes/2025-02-11-basic-block-rename.md rename to ruby/ql/lib/change-notes/released/4.1.0.md index 9000dc09a24a..1f497d8e4652 100644 --- a/csharp/ql/lib/change-notes/2025-02-11-basic-block-rename.md +++ b/ruby/ql/lib/change-notes/released/4.1.0.md @@ -1,6 +1,7 @@ ---- -category: deprecated ---- +## 4.1.0 + +### Deprecated APIs + * The predicates `immediatelyControls` and `controls` on the `ConditionBlock` class have been deprecated in favor of the newly added `dominatingEdge` predicate. diff --git a/ruby/ql/lib/codeql-pack.release.yml b/ruby/ql/lib/codeql-pack.release.yml index 49fe3eef6973..d5b1bf88d10e 100644 --- a/ruby/ql/lib/codeql-pack.release.yml +++ b/ruby/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 4.0.0 +lastReleaseVersion: 4.1.0 diff --git a/ruby/ql/lib/qlpack.yml b/ruby/ql/lib/qlpack.yml index 9c3b066dccbc..42722632c096 100644 --- a/ruby/ql/lib/qlpack.yml +++ b/ruby/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/ruby-all -version: 4.0.1-dev +version: 4.1.0 groups: ruby extractor: ruby dbscheme: ruby.dbscheme diff --git a/ruby/ql/src/CHANGELOG.md b/ruby/ql/src/CHANGELOG.md index e22d95bc63f1..2c7cdc596b22 100644 --- a/ruby/ql/src/CHANGELOG.md +++ b/ruby/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.1.12 + +No user-facing changes. + ## 1.1.11 No user-facing changes. diff --git a/ruby/ql/src/change-notes/released/1.1.12.md b/ruby/ql/src/change-notes/released/1.1.12.md new file mode 100644 index 000000000000..2d7f915e29b4 --- /dev/null +++ b/ruby/ql/src/change-notes/released/1.1.12.md @@ -0,0 +1,3 @@ +## 1.1.12 + +No user-facing changes. diff --git a/ruby/ql/src/codeql-pack.release.yml b/ruby/ql/src/codeql-pack.release.yml index 121f8cf035d3..f5b135d01938 100644 --- a/ruby/ql/src/codeql-pack.release.yml +++ b/ruby/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.1.11 +lastReleaseVersion: 1.1.12 diff --git a/ruby/ql/src/qlpack.yml b/ruby/ql/src/qlpack.yml index 5023e3174d6f..5e709b1d7a8f 100644 --- a/ruby/ql/src/qlpack.yml +++ b/ruby/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/ruby-queries -version: 1.1.12-dev +version: 1.1.12 groups: - ruby - queries diff --git a/rust/ql/lib/CHANGELOG.md b/rust/ql/lib/CHANGELOG.md index 5712c750565f..ea8b30ac3fe8 100644 --- a/rust/ql/lib/CHANGELOG.md +++ b/rust/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.2 + +No user-facing changes. + ## 0.1.1 No user-facing changes. diff --git a/rust/ql/lib/change-notes/released/0.1.2.md b/rust/ql/lib/change-notes/released/0.1.2.md new file mode 100644 index 000000000000..9b0e2e7d7173 --- /dev/null +++ b/rust/ql/lib/change-notes/released/0.1.2.md @@ -0,0 +1,3 @@ +## 0.1.2 + +No user-facing changes. diff --git a/rust/ql/lib/codeql-pack.release.yml b/rust/ql/lib/codeql-pack.release.yml index 92d1505475f3..6abd14b1ef83 100644 --- a/rust/ql/lib/codeql-pack.release.yml +++ b/rust/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.1.1 +lastReleaseVersion: 0.1.2 diff --git a/rust/ql/lib/qlpack.yml b/rust/ql/lib/qlpack.yml index 5bffcf30d3e8..987173d92249 100644 --- a/rust/ql/lib/qlpack.yml +++ b/rust/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/rust-all -version: 0.1.2-dev +version: 0.1.2 groups: rust extractor: rust dbscheme: rust.dbscheme diff --git a/rust/ql/src/CHANGELOG.md b/rust/ql/src/CHANGELOG.md index 5712c750565f..ea8b30ac3fe8 100644 --- a/rust/ql/src/CHANGELOG.md +++ b/rust/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.2 + +No user-facing changes. + ## 0.1.1 No user-facing changes. diff --git a/rust/ql/src/change-notes/released/0.1.2.md b/rust/ql/src/change-notes/released/0.1.2.md new file mode 100644 index 000000000000..9b0e2e7d7173 --- /dev/null +++ b/rust/ql/src/change-notes/released/0.1.2.md @@ -0,0 +1,3 @@ +## 0.1.2 + +No user-facing changes. diff --git a/rust/ql/src/codeql-pack.release.yml b/rust/ql/src/codeql-pack.release.yml index 92d1505475f3..6abd14b1ef83 100644 --- a/rust/ql/src/codeql-pack.release.yml +++ b/rust/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.1.1 +lastReleaseVersion: 0.1.2 diff --git a/rust/ql/src/qlpack.yml b/rust/ql/src/qlpack.yml index dd6662925243..a512c15f0ffe 100644 --- a/rust/ql/src/qlpack.yml +++ b/rust/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/rust-queries -version: 0.1.2-dev +version: 0.1.2 groups: - rust - queries diff --git a/shared/controlflow/CHANGELOG.md b/shared/controlflow/CHANGELOG.md index 65f4b5407630..60a09e6e04dd 100644 --- a/shared/controlflow/CHANGELOG.md +++ b/shared/controlflow/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.1 + +No user-facing changes. + ## 2.0.0 ### Breaking Changes diff --git a/shared/controlflow/change-notes/released/2.0.1.md b/shared/controlflow/change-notes/released/2.0.1.md new file mode 100644 index 000000000000..b5b6d0dee915 --- /dev/null +++ b/shared/controlflow/change-notes/released/2.0.1.md @@ -0,0 +1,3 @@ +## 2.0.1 + +No user-facing changes. diff --git a/shared/controlflow/codeql-pack.release.yml b/shared/controlflow/codeql-pack.release.yml index 0abe6ccede0f..fe974a4dbf37 100644 --- a/shared/controlflow/codeql-pack.release.yml +++ b/shared/controlflow/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.0.0 +lastReleaseVersion: 2.0.1 diff --git a/shared/controlflow/qlpack.yml b/shared/controlflow/qlpack.yml index 1b9230756303..6c81656f4522 100644 --- a/shared/controlflow/qlpack.yml +++ b/shared/controlflow/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/controlflow -version: 2.0.1-dev +version: 2.0.1 groups: shared library: true dependencies: diff --git a/shared/dataflow/CHANGELOG.md b/shared/dataflow/CHANGELOG.md index b1730ac585e1..6a65f730aca6 100644 --- a/shared/dataflow/CHANGELOG.md +++ b/shared/dataflow/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.1 + +No user-facing changes. + ## 2.0.0 ### Breaking Changes diff --git a/shared/dataflow/change-notes/released/2.0.1.md b/shared/dataflow/change-notes/released/2.0.1.md new file mode 100644 index 000000000000..b5b6d0dee915 --- /dev/null +++ b/shared/dataflow/change-notes/released/2.0.1.md @@ -0,0 +1,3 @@ +## 2.0.1 + +No user-facing changes. diff --git a/shared/dataflow/codeql-pack.release.yml b/shared/dataflow/codeql-pack.release.yml index 0abe6ccede0f..fe974a4dbf37 100644 --- a/shared/dataflow/codeql-pack.release.yml +++ b/shared/dataflow/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.0.0 +lastReleaseVersion: 2.0.1 diff --git a/shared/dataflow/qlpack.yml b/shared/dataflow/qlpack.yml index eb41d1079e1e..8b07b3ed20f1 100644 --- a/shared/dataflow/qlpack.yml +++ b/shared/dataflow/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/dataflow -version: 2.0.1-dev +version: 2.0.1 groups: shared library: true dependencies: diff --git a/shared/mad/CHANGELOG.md b/shared/mad/CHANGELOG.md index c9bc4beddf13..d4d7ae992e3a 100644 --- a/shared/mad/CHANGELOG.md +++ b/shared/mad/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 No user-facing changes. diff --git a/shared/mad/change-notes/released/1.0.17.md b/shared/mad/change-notes/released/1.0.17.md new file mode 100644 index 000000000000..4180b2c20f23 --- /dev/null +++ b/shared/mad/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/shared/mad/codeql-pack.release.yml b/shared/mad/codeql-pack.release.yml index 25c58f4113f0..a88f1245e146 100644 --- a/shared/mad/codeql-pack.release.yml +++ b/shared/mad/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/shared/mad/qlpack.yml b/shared/mad/qlpack.yml index ebc658ad1915..f5ddb46862eb 100644 --- a/shared/mad/qlpack.yml +++ b/shared/mad/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/mad -version: 1.0.17-dev +version: 1.0.17 groups: shared library: true dependencies: diff --git a/shared/rangeanalysis/CHANGELOG.md b/shared/rangeanalysis/CHANGELOG.md index bc77ab8acc9a..eb259ae5af15 100644 --- a/shared/rangeanalysis/CHANGELOG.md +++ b/shared/rangeanalysis/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 No user-facing changes. diff --git a/shared/rangeanalysis/change-notes/released/1.0.17.md b/shared/rangeanalysis/change-notes/released/1.0.17.md new file mode 100644 index 000000000000..4180b2c20f23 --- /dev/null +++ b/shared/rangeanalysis/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/shared/rangeanalysis/codeql-pack.release.yml b/shared/rangeanalysis/codeql-pack.release.yml index 25c58f4113f0..a88f1245e146 100644 --- a/shared/rangeanalysis/codeql-pack.release.yml +++ b/shared/rangeanalysis/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/shared/rangeanalysis/qlpack.yml b/shared/rangeanalysis/qlpack.yml index 520211929639..71aee294c790 100644 --- a/shared/rangeanalysis/qlpack.yml +++ b/shared/rangeanalysis/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/rangeanalysis -version: 1.0.17-dev +version: 1.0.17 groups: shared library: true dependencies: diff --git a/shared/regex/CHANGELOG.md b/shared/regex/CHANGELOG.md index ee6c1e706483..597cda59bb33 100644 --- a/shared/regex/CHANGELOG.md +++ b/shared/regex/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 No user-facing changes. diff --git a/shared/regex/change-notes/released/1.0.17.md b/shared/regex/change-notes/released/1.0.17.md new file mode 100644 index 000000000000..4180b2c20f23 --- /dev/null +++ b/shared/regex/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/shared/regex/codeql-pack.release.yml b/shared/regex/codeql-pack.release.yml index 25c58f4113f0..a88f1245e146 100644 --- a/shared/regex/codeql-pack.release.yml +++ b/shared/regex/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/shared/regex/qlpack.yml b/shared/regex/qlpack.yml index 30451f6dc3f4..993dffe62182 100644 --- a/shared/regex/qlpack.yml +++ b/shared/regex/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/regex -version: 1.0.17-dev +version: 1.0.17 groups: shared library: true dependencies: diff --git a/shared/ssa/CHANGELOG.md b/shared/ssa/CHANGELOG.md index c1e8ee9e42f3..6000f6d85a90 100644 --- a/shared/ssa/CHANGELOG.md +++ b/shared/ssa/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 No user-facing changes. diff --git a/shared/ssa/change-notes/released/1.0.17.md b/shared/ssa/change-notes/released/1.0.17.md new file mode 100644 index 000000000000..4180b2c20f23 --- /dev/null +++ b/shared/ssa/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/shared/ssa/codeql-pack.release.yml b/shared/ssa/codeql-pack.release.yml index 25c58f4113f0..a88f1245e146 100644 --- a/shared/ssa/codeql-pack.release.yml +++ b/shared/ssa/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/shared/ssa/qlpack.yml b/shared/ssa/qlpack.yml index ebc832179b9b..b04c422d2911 100644 --- a/shared/ssa/qlpack.yml +++ b/shared/ssa/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/ssa -version: 1.0.17-dev +version: 1.0.17 groups: shared library: true dependencies: diff --git a/shared/threat-models/CHANGELOG.md b/shared/threat-models/CHANGELOG.md index 6bc6aae0b4e3..99c47f43d529 100644 --- a/shared/threat-models/CHANGELOG.md +++ b/shared/threat-models/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 No user-facing changes. diff --git a/shared/threat-models/change-notes/released/1.0.17.md b/shared/threat-models/change-notes/released/1.0.17.md new file mode 100644 index 000000000000..4180b2c20f23 --- /dev/null +++ b/shared/threat-models/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/shared/threat-models/codeql-pack.release.yml b/shared/threat-models/codeql-pack.release.yml index 25c58f4113f0..a88f1245e146 100644 --- a/shared/threat-models/codeql-pack.release.yml +++ b/shared/threat-models/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/shared/threat-models/qlpack.yml b/shared/threat-models/qlpack.yml index b6ecead9dadc..dec6e811b9c3 100644 --- a/shared/threat-models/qlpack.yml +++ b/shared/threat-models/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/threat-models -version: 1.0.17-dev +version: 1.0.17 library: true groups: shared dataExtensions: diff --git a/shared/tutorial/CHANGELOG.md b/shared/tutorial/CHANGELOG.md index 0d1c113cc292..616521bdcfa2 100644 --- a/shared/tutorial/CHANGELOG.md +++ b/shared/tutorial/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 No user-facing changes. diff --git a/shared/tutorial/change-notes/released/1.0.17.md b/shared/tutorial/change-notes/released/1.0.17.md new file mode 100644 index 000000000000..4180b2c20f23 --- /dev/null +++ b/shared/tutorial/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/shared/tutorial/codeql-pack.release.yml b/shared/tutorial/codeql-pack.release.yml index 25c58f4113f0..a88f1245e146 100644 --- a/shared/tutorial/codeql-pack.release.yml +++ b/shared/tutorial/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/shared/tutorial/qlpack.yml b/shared/tutorial/qlpack.yml index 1d4748c4b358..66a32648e252 100644 --- a/shared/tutorial/qlpack.yml +++ b/shared/tutorial/qlpack.yml @@ -1,7 +1,7 @@ name: codeql/tutorial description: Library for the CodeQL detective tutorials, helping new users learn to write CodeQL queries. -version: 1.0.17-dev +version: 1.0.17 groups: shared library: true warnOnImplicitThis: true diff --git a/shared/typeflow/CHANGELOG.md b/shared/typeflow/CHANGELOG.md index 22eea9d7c8b5..1edea337a836 100644 --- a/shared/typeflow/CHANGELOG.md +++ b/shared/typeflow/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 No user-facing changes. diff --git a/shared/typeflow/change-notes/released/1.0.17.md b/shared/typeflow/change-notes/released/1.0.17.md new file mode 100644 index 000000000000..4180b2c20f23 --- /dev/null +++ b/shared/typeflow/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/shared/typeflow/codeql-pack.release.yml b/shared/typeflow/codeql-pack.release.yml index 25c58f4113f0..a88f1245e146 100644 --- a/shared/typeflow/codeql-pack.release.yml +++ b/shared/typeflow/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/shared/typeflow/qlpack.yml b/shared/typeflow/qlpack.yml index 856cceea3121..52170c28a8e3 100644 --- a/shared/typeflow/qlpack.yml +++ b/shared/typeflow/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typeflow -version: 1.0.17-dev +version: 1.0.17 groups: shared library: true dependencies: diff --git a/shared/typetracking/CHANGELOG.md b/shared/typetracking/CHANGELOG.md index 5ac7f2636b68..496612be9524 100644 --- a/shared/typetracking/CHANGELOG.md +++ b/shared/typetracking/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.1 + +No user-facing changes. + ## 2.0.0 ### Breaking Changes diff --git a/shared/typetracking/change-notes/released/2.0.1.md b/shared/typetracking/change-notes/released/2.0.1.md new file mode 100644 index 000000000000..b5b6d0dee915 --- /dev/null +++ b/shared/typetracking/change-notes/released/2.0.1.md @@ -0,0 +1,3 @@ +## 2.0.1 + +No user-facing changes. diff --git a/shared/typetracking/codeql-pack.release.yml b/shared/typetracking/codeql-pack.release.yml index 0abe6ccede0f..fe974a4dbf37 100644 --- a/shared/typetracking/codeql-pack.release.yml +++ b/shared/typetracking/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.0.0 +lastReleaseVersion: 2.0.1 diff --git a/shared/typetracking/qlpack.yml b/shared/typetracking/qlpack.yml index 805ed9bdaedf..9af434a87033 100644 --- a/shared/typetracking/qlpack.yml +++ b/shared/typetracking/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typetracking -version: 2.0.1-dev +version: 2.0.1 groups: shared library: true dependencies: diff --git a/shared/typos/CHANGELOG.md b/shared/typos/CHANGELOG.md index 85078c7993ce..16433eff6d63 100644 --- a/shared/typos/CHANGELOG.md +++ b/shared/typos/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 No user-facing changes. diff --git a/shared/typos/change-notes/released/1.0.17.md b/shared/typos/change-notes/released/1.0.17.md new file mode 100644 index 000000000000..4180b2c20f23 --- /dev/null +++ b/shared/typos/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/shared/typos/codeql-pack.release.yml b/shared/typos/codeql-pack.release.yml index 25c58f4113f0..a88f1245e146 100644 --- a/shared/typos/codeql-pack.release.yml +++ b/shared/typos/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/shared/typos/qlpack.yml b/shared/typos/qlpack.yml index 8e2b68b63927..cf94a2afe2c8 100644 --- a/shared/typos/qlpack.yml +++ b/shared/typos/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typos -version: 1.0.17-dev +version: 1.0.17 groups: shared library: true warnOnImplicitThis: true diff --git a/shared/util/CHANGELOG.md b/shared/util/CHANGELOG.md index f6eb77814864..5d0c95a3d9ea 100644 --- a/shared/util/CHANGELOG.md +++ b/shared/util/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.4 + +No user-facing changes. + ## 2.0.3 No user-facing changes. diff --git a/shared/util/change-notes/released/2.0.4.md b/shared/util/change-notes/released/2.0.4.md new file mode 100644 index 000000000000..8e002b6db642 --- /dev/null +++ b/shared/util/change-notes/released/2.0.4.md @@ -0,0 +1,3 @@ +## 2.0.4 + +No user-facing changes. diff --git a/shared/util/codeql-pack.release.yml b/shared/util/codeql-pack.release.yml index fabf1e865966..0f306f8bd3bd 100644 --- a/shared/util/codeql-pack.release.yml +++ b/shared/util/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.0.3 +lastReleaseVersion: 2.0.4 diff --git a/shared/util/qlpack.yml b/shared/util/qlpack.yml index e2ddbb7374db..62068d204a87 100644 --- a/shared/util/qlpack.yml +++ b/shared/util/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/util -version: 2.0.4-dev +version: 2.0.4 groups: shared library: true dependencies: null diff --git a/shared/xml/CHANGELOG.md b/shared/xml/CHANGELOG.md index d6297fd0036c..77359b40c67d 100644 --- a/shared/xml/CHANGELOG.md +++ b/shared/xml/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 No user-facing changes. diff --git a/shared/xml/change-notes/released/1.0.17.md b/shared/xml/change-notes/released/1.0.17.md new file mode 100644 index 000000000000..4180b2c20f23 --- /dev/null +++ b/shared/xml/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/shared/xml/codeql-pack.release.yml b/shared/xml/codeql-pack.release.yml index 25c58f4113f0..a88f1245e146 100644 --- a/shared/xml/codeql-pack.release.yml +++ b/shared/xml/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/shared/xml/qlpack.yml b/shared/xml/qlpack.yml index 552e89e1a6f0..fd461dc9bb75 100644 --- a/shared/xml/qlpack.yml +++ b/shared/xml/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/xml -version: 1.0.17-dev +version: 1.0.17 groups: shared library: true dependencies: diff --git a/shared/yaml/CHANGELOG.md b/shared/yaml/CHANGELOG.md index 2aff18b9a3c9..b20aa95a794f 100644 --- a/shared/yaml/CHANGELOG.md +++ b/shared/yaml/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 No user-facing changes. diff --git a/shared/yaml/change-notes/released/1.0.17.md b/shared/yaml/change-notes/released/1.0.17.md new file mode 100644 index 000000000000..4180b2c20f23 --- /dev/null +++ b/shared/yaml/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/shared/yaml/codeql-pack.release.yml b/shared/yaml/codeql-pack.release.yml index 25c58f4113f0..a88f1245e146 100644 --- a/shared/yaml/codeql-pack.release.yml +++ b/shared/yaml/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/shared/yaml/qlpack.yml b/shared/yaml/qlpack.yml index 5701451a376d..a134e60f4756 100644 --- a/shared/yaml/qlpack.yml +++ b/shared/yaml/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/yaml -version: 1.0.17-dev +version: 1.0.17 groups: shared library: true warnOnImplicitThis: true diff --git a/swift/ql/lib/CHANGELOG.md b/swift/ql/lib/CHANGELOG.md index d9a18cfabbf6..c74bc7c586ab 100644 --- a/swift/ql/lib/CHANGELOG.md +++ b/swift/ql/lib/CHANGELOG.md @@ -1,3 +1,11 @@ +## 4.1.0 + +### Deprecated APIs + +* The predicates `immediatelyControls` and `controls` on the `ConditionBlock` + class have been deprecated in favor of the newly added `dominatingEdge` + predicate. + ## 4.0.0 ### Breaking Changes diff --git a/swift/ql/lib/change-notes/2025-02-11-basic-block-rename.md b/swift/ql/lib/change-notes/2025-02-11-basic-block-rename.md deleted file mode 100644 index 9000dc09a24a..000000000000 --- a/swift/ql/lib/change-notes/2025-02-11-basic-block-rename.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -category: deprecated ---- -* The predicates `immediatelyControls` and `controls` on the `ConditionBlock` - class have been deprecated in favor of the newly added `dominatingEdge` - predicate. diff --git a/ruby/ql/lib/change-notes/2025-02-11-basic-block-rename.md b/swift/ql/lib/change-notes/released/4.1.0.md similarity index 84% rename from ruby/ql/lib/change-notes/2025-02-11-basic-block-rename.md rename to swift/ql/lib/change-notes/released/4.1.0.md index 9000dc09a24a..1f497d8e4652 100644 --- a/ruby/ql/lib/change-notes/2025-02-11-basic-block-rename.md +++ b/swift/ql/lib/change-notes/released/4.1.0.md @@ -1,6 +1,7 @@ ---- -category: deprecated ---- +## 4.1.0 + +### Deprecated APIs + * The predicates `immediatelyControls` and `controls` on the `ConditionBlock` class have been deprecated in favor of the newly added `dominatingEdge` predicate. diff --git a/swift/ql/lib/codeql-pack.release.yml b/swift/ql/lib/codeql-pack.release.yml index 49fe3eef6973..d5b1bf88d10e 100644 --- a/swift/ql/lib/codeql-pack.release.yml +++ b/swift/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 4.0.0 +lastReleaseVersion: 4.1.0 diff --git a/swift/ql/lib/qlpack.yml b/swift/ql/lib/qlpack.yml index 50c6a60e39e4..364e4012082d 100644 --- a/swift/ql/lib/qlpack.yml +++ b/swift/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/swift-all -version: 4.0.1-dev +version: 4.1.0 groups: swift extractor: swift dbscheme: swift.dbscheme diff --git a/swift/ql/src/CHANGELOG.md b/swift/ql/src/CHANGELOG.md index 729baa54c4ad..1c2d813af92a 100644 --- a/swift/ql/src/CHANGELOG.md +++ b/swift/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 No user-facing changes. diff --git a/swift/ql/src/change-notes/released/1.0.17.md b/swift/ql/src/change-notes/released/1.0.17.md new file mode 100644 index 000000000000..4180b2c20f23 --- /dev/null +++ b/swift/ql/src/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/swift/ql/src/codeql-pack.release.yml b/swift/ql/src/codeql-pack.release.yml index 25c58f4113f0..a88f1245e146 100644 --- a/swift/ql/src/codeql-pack.release.yml +++ b/swift/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/swift/ql/src/qlpack.yml b/swift/ql/src/qlpack.yml index 58a558cd2b9a..28ac1ec51814 100644 --- a/swift/ql/src/qlpack.yml +++ b/swift/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/swift-queries -version: 1.0.17-dev +version: 1.0.17 groups: - swift - queries