From 7714af91c33b4fa056511c9c02c4a78fc51e9968 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Thu, 30 May 2024 19:01:30 +0200 Subject: [PATCH 1/2] C#: Add change-note. --- csharp/ql/src/change-notes/2024-05-30-update-dotnet-models.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 csharp/ql/src/change-notes/2024-05-30-update-dotnet-models.md diff --git a/csharp/ql/src/change-notes/2024-05-30-update-dotnet-models.md b/csharp/ql/src/change-notes/2024-05-30-update-dotnet-models.md new file mode 100644 index 000000000000..8255b2a44600 --- /dev/null +++ b/csharp/ql/src/change-notes/2024-05-30-update-dotnet-models.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* .NET 8 Runtime models have been updated based on the newest version of the model generator. Furthermore, the database sources have been changed slightly to reduce result multiplicity. From 6f1268388ac7f901f40b4e9e0c7aa3200b8dc5ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 May 2024 17:03:21 +0000 Subject: [PATCH 2/2] Bump rayon from 1.9.0 to 1.10.0 in /ql Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.9.0 to 1.10.0. - [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md) - [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.9.0...rayon-core-v1.10.0) --- updated-dependencies: - dependency-name: rayon dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- ql/Cargo.lock | 4 ++-- ql/buramu/Cargo.toml | 2 +- ql/extractor/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ql/Cargo.lock b/ql/Cargo.lock index ed04a4a85533..0c7b7fac6246 100644 --- a/ql/Cargo.lock +++ b/ql/Cargo.lock @@ -680,9 +680,9 @@ dependencies = [ [[package]] name = "rayon" -version = "1.9.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd" +checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" dependencies = [ "either", "rayon-core", diff --git a/ql/buramu/Cargo.toml b/ql/buramu/Cargo.toml index 741a9bc4337c..29cc78fdd455 100644 --- a/ql/buramu/Cargo.toml +++ b/ql/buramu/Cargo.toml @@ -8,5 +8,5 @@ edition = "2018" [dependencies] lazy_static = "1.4.0" chrono = "0.4.37" -rayon = "1.9.0" +rayon = "1.10.0" regex = "1.10.4" diff --git a/ql/extractor/Cargo.toml b/ql/extractor/Cargo.toml index 6f0e6e11f082..f86db120d7e7 100644 --- a/ql/extractor/Cargo.toml +++ b/ql/extractor/Cargo.toml @@ -15,7 +15,7 @@ tree-sitter-json = {git = "https://github.com/tree-sitter/tree-sitter-json.git", clap = { version = "4.2", features = ["derive"] } tracing = "0.1" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } -rayon = "1.9.0" +rayon = "1.10.0" regex = "1.10.4" codeql-extractor = { path = "../../shared/tree-sitter-extractor" }