Skip to content

Commit 878bd5b

Browse files
author
Dilan
committed
Merge tag 'codeql-cli/latest'
Compatible with the latest released version of the CodeQL CLI
2 parents 78a1d06 + 569b650 commit 878bd5b

File tree

4,539 files changed

+119413
-64408
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,539 files changed

+119413
-64408
lines changed

.github/workflows/go-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
push:
44
paths:
55
- "go/**"
6+
- "shared/**"
67
- .github/workflows/go-tests.yml
78
- .github/actions/**
89
- codeql-workspace.yml
@@ -12,6 +13,7 @@ on:
1213
pull_request:
1314
paths:
1415
- "go/**"
16+
- "shared/**"
1517
- .github/workflows/go-tests.yml
1618
- .github/actions/**
1719
- codeql-workspace.yml

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ repos:
1515
- id: clang-format
1616

1717
- repo: https://github.com/pre-commit/mirrors-autopep8
18-
rev: v1.6.0
18+
rev: v2.0.4
1919
hooks:
2020
- id: autopep8
2121
files: ^misc/codegen/.*\.py

Cargo.lock

Lines changed: 86 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ members = [
66
"shared/tree-sitter-extractor",
77
"ruby/extractor",
88
"rust/extractor",
9+
"rust/extractor/macros",
10+
"rust/generate-schema",
911
]
1012

1113
[patch.crates-io]

MODULE.bazel

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ r.from_cargo(
6060
"//:Cargo.toml",
6161
"//ruby/extractor:Cargo.toml",
6262
"//rust/extractor:Cargo.toml",
63+
"//rust/extractor/macros:Cargo.toml",
64+
"//rust/generate-schema:Cargo.toml",
6365
"//shared/tree-sitter-extractor:Cargo.toml",
6466
],
6567
)
@@ -126,6 +128,7 @@ use_repo(
126128
"kotlin-compiler-1.9.20-Beta",
127129
"kotlin-compiler-2.0.0-RC1",
128130
"kotlin-compiler-2.0.20-Beta2",
131+
"kotlin-compiler-2.1.0-Beta1",
129132
"kotlin-compiler-embeddable-1.5.0",
130133
"kotlin-compiler-embeddable-1.5.10",
131134
"kotlin-compiler-embeddable-1.5.20",
@@ -139,6 +142,7 @@ use_repo(
139142
"kotlin-compiler-embeddable-1.9.20-Beta",
140143
"kotlin-compiler-embeddable-2.0.0-RC1",
141144
"kotlin-compiler-embeddable-2.0.20-Beta2",
145+
"kotlin-compiler-embeddable-2.1.0-Beta1",
142146
"kotlin-stdlib-1.5.0",
143147
"kotlin-stdlib-1.5.10",
144148
"kotlin-stdlib-1.5.20",
@@ -152,6 +156,7 @@ use_repo(
152156
"kotlin-stdlib-1.9.20-Beta",
153157
"kotlin-stdlib-2.0.0-RC1",
154158
"kotlin-stdlib-2.0.20-Beta2",
159+
"kotlin-stdlib-2.1.0-Beta1",
155160
)
156161

157162
go_sdk = use_extension("@rules_go//go:extensions.bzl", "go_sdk")

config/identical-files.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,6 @@
5757
"java/ql/lib/semmle/code/java/dataflow/internal/rangeanalysis/SsaReadPositionCommon.qll",
5858
"csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaReadPositionCommon.qll"
5959
],
60-
"Model as Data Generation Java/C# - CaptureModels": [
61-
"java/ql/src/utils/modelgenerator/internal/CaptureModels.qll",
62-
"csharp/ql/src/utils/modelgenerator/internal/CaptureModels.qll"
63-
],
6460
"Sign Java/C#": [
6561
"java/ql/lib/semmle/code/java/dataflow/internal/rangeanalysis/Sign.qll",
6662
"csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/Sign.qll"
@@ -355,5 +351,9 @@
355351
"Python model summaries test extension": [
356352
"python/ql/test/library-tests/dataflow/model-summaries/InlineTaintTest.ext.yml",
357353
"python/ql/test/library-tests/dataflow/model-summaries/NormalDataflowTest.ext.yml"
354+
],
355+
"Diagnostics.qll": [
356+
"ruby/ql/lib/codeql/ruby/Diagnostics.qll",
357+
"rust/ql/lib/codeql/rust/Diagnostics.qll"
358358
]
359359
}

cpp/ql/lib/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.1
2+
3+
No user-facing changes.
4+
15
## 2.0.0
26

37
### Breaking Changes
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 2.0.1
2+
3+
No user-facing changes.

cpp/ql/lib/codeql-pack.release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
lastReleaseVersion: 2.0.0
2+
lastReleaseVersion: 2.0.1

cpp/ql/lib/qlpack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: codeql/cpp-all
2-
version: 2.0.0
2+
version: 2.0.1
33
groups: cpp
44
dbscheme: semmlecode.cpp.dbscheme
55
extractor: cpp

0 commit comments

Comments
 (0)