Philip Ginsbach
|
d1df2aa457
|
remove upper-case variable names
|
2022-09-15 18:08:50 +01:00 |
|
Philip Ginsbach
|
0a2d0f7f68
|
Merge pull request #10440 from github/ginsbach/JavaUpperCaseVariables
Java: remove upper-case variable name
|
2022-09-15 18:07:51 +01:00 |
|
Philip Ginsbach
|
c2bdb69476
|
remove upper-case variable name
|
2022-09-15 16:32:16 +01:00 |
|
Jeroen Ketema
|
8b292351b7
|
Merge pull request #10435 from github/ginsbach/RemoveEvenMoreUpperCaseVariables
C++: remove more upper-case variable names
|
2022-09-15 16:43:50 +02:00 |
|
Philip Ginsbach
|
26099d6ab7
|
remove more upper-case variable names
|
2022-09-15 14:36:02 +01:00 |
|
Tony Torralba
|
df5178d7ee
|
Merge pull request #10330 from atorralba/atorralba/implicit-pendingintents-compat-sinks
Java: Add Implicit PendingIntents sinks for Compat classes
|
2022-09-15 14:39:19 +02:00 |
|
Tony Torralba
|
714b37e77b
|
Merge pull request #10318 from atorralba/atorralba/notificationcompat-steps
Java: Add summaries for NotificationCompat and its inner classes
|
2022-09-15 14:38:39 +02:00 |
|
AlexDenisov
|
b8bc7fb926
|
Merge pull request #10434 from github/redsun82/fix-c-compilation
Bazel: only pass `-std=c++17` for C++ compilation
|
2022-09-15 13:00:07 +02:00 |
|
Paolo Tranquilli
|
ce6109547b
|
Bazel: only pass -std=c++17 for C++ compilation
|
2022-09-15 12:30:30 +02:00 |
|
Tom Hvitved
|
40241acbfc
|
Merge pull request #10425 from hvitved/ruby/bad-join-fix
Ruby: Fix bad join-order in DB upgrade script
|
2022-09-15 12:09:14 +02:00 |
|
Ian Lynagh
|
a939156ade
|
Merge pull request #10419 from igfoo/igfoo/unused
Kotlin: Remove an unused method
|
2022-09-15 10:57:58 +01:00 |
|
Ian Lynagh
|
618a5b9b8c
|
Merge pull request #10427 from igfoo/igfoo/werror
Kotlin: Compile with -Werror, and fix warnings
|
2022-09-15 10:57:45 +01:00 |
|
Jeroen Ketema
|
a20b41685e
|
Merge pull request #10420 from github/ginsbach/RemoveMoreUpperCaseVariables
remove several upper-case `NamedExpression` variable names
|
2022-09-15 11:50:02 +02:00 |
|
James Fletcher
|
8e0a006665
|
Merge pull request #10270 from jf205/download-db-vs-code
Update documentation about downloading CodeQL databases using the VS Code extension
|
2022-09-14 20:35:18 +01:00 |
|
James Fletcher
|
b427e8aba6
|
Merge branch 'main' into download-db-vs-code
|
2022-09-14 20:22:03 +01:00 |
|
Tom Hvitved
|
5cfed75e4c
|
Ruby: Fix bad join-order in DB upgrade script
Before
```
Evaluated relational algebra for predicate #select#query#ffffff@3e1dedi5 with tuple counts:
30411461 ~0% {6} r1 = locations_default AND NOT #select#query#ffffff#antijoin_rhs(Lhs.0, Lhs.1, Lhs.2, Lhs.3, Lhs.4, Lhs.5)
30840645 ~4% {2} r2 = SCAN #select#query#ffff OUTPUT In.0, In.3
515559 ~1% {3} r3 = JOIN r2 WITH #select#query#ffffff#join_rhs ON FIRST 1 OUTPUT Rhs.1, Lhs.0, Lhs.1
515559 ~0% {5} r4 = JOIN r3 WITH locations_default ON FIRST 1 OUTPUT Rhs.1, Lhs.1, Lhs.2, Rhs.4, Rhs.5
2397708060 ~0% {9} r5 = JOIN r4 WITH locations_default_1023#join_rhs ON FIRST 1 OUTPUT Lhs.1, 0, Rhs.1, Lhs.2, Lhs.0, Lhs.3, Lhs.4, Rhs.2, Rhs.3
515559 ~4% {6} r6 = JOIN r5 WITH query#f0820431::body_statement#3#bff ON FIRST 3 OUTPUT Lhs.3, Lhs.4, Lhs.7, Lhs.8, Lhs.5, Lhs.6
30927020 ~0% {6} r7 = r1 UNION r6
return
```
After
```
Evaluated relational algebra for predicate #select#query#ffffff@8810e071 with tuple counts:
30411461 ~0% {6} r1 = #select#query#ffffff#shared AND NOT #select#query#ffffff#antijoin_rhs(Lhs.0, Lhs.1, Lhs.2, Lhs.3, Lhs.4, Lhs.5)
30840645 ~4% {2} r2 = SCAN #select#query#ffff OUTPUT In.0, In.3
515559 ~1% {3} r3 = JOIN r2 WITH #select#query#ffffff#join_rhs ON FIRST 1 OUTPUT Rhs.1, Lhs.0, Lhs.1
515559 ~0% {6} r4 = JOIN r3 WITH locations_default ON FIRST 1 OUTPUT Lhs.1, 0, Lhs.2, Rhs.1, Rhs.4, Rhs.5
515559 ~0% {5} r5 = JOIN r4 WITH query#f0820431::body_statement#3#bff ON FIRST 2 OUTPUT Rhs.2, Lhs.3, Lhs.2, Lhs.4, Lhs.5
515559 ~0% {6} r6 = JOIN r5 WITH locations_default ON FIRST 2 OUTPUT Lhs.1, Lhs.2, Lhs.3, Lhs.4, Rhs.2, Rhs.3
515559 ~4% {6} r7 = JOIN r6 WITH files ON FIRST 1 OUTPUT Lhs.1, Lhs.0, Lhs.4, Lhs.5, Lhs.2, Lhs.3
30927020 ~0% {6} r8 = r1 UNION r7
return r8
```
|
2022-09-14 19:27:49 +02:00 |
|
Ian Lynagh
|
8a5bc3b635
|
Kotlin: Don't use hasQuestionMark
1.7.0 warns:
'hasQuestionMark: Boolean' is deprecated. hasQuestionMark has
ambiguous meaning. Use isNullable() or isMarkedNullable() instead
|
2022-09-14 17:56:27 +01:00 |
|
Dave Bartolomeo
|
6a0e4805dc
|
Merge pull request #10418 from dbartol/dbartol/swift-fail/work
Add lock files for Swift packs
|
2022-09-14 12:01:05 -04:00 |
|
Ian Lynagh
|
fce111bebe
|
Kotlin: Compile with -Werror, and fix warnings
|
2022-09-14 16:42:57 +01:00 |
|
Philip Ginsbach
|
c5703898b0
|
remove upper-case NamedExpression variable names
|
2022-09-14 16:35:24 +01:00 |
|
Ian Lynagh
|
8f2a718787
|
Kotlin: Remove an unused method
|
2022-09-14 16:31:11 +01:00 |
|
James Fletcher
|
f3a4ba39a8
|
Update docs/codeql/codeql-cli/getting-started-with-the-codeql-cli.rst
Co-authored-by: Andrew Eisenberg <aeisenberg@github.com>
|
2022-09-14 16:20:07 +01:00 |
|
Jeroen Ketema
|
6e74c32dc6
|
Merge pull request #10417 from github/ginsbach/RemoveUpperCaseVariable
remove upper-case variable name from `HubClasses`
|
2022-09-14 16:50:43 +02:00 |
|
Dave Bartolomeo
|
c5622135a6
|
Add lock files for Swift packs
|
2022-09-14 10:21:40 -04:00 |
|
Chris Smowton
|
1478f61897
|
Merge pull request #10407 from RasmusWL/go-instanceof
Go: Rewrite `::Range` patterns to use `instanceof`
|
2022-09-14 15:06:30 +01:00 |
|
Philip Ginsbach
|
8f7f631211
|
upper-case variable names are deprecated
|
2022-09-14 14:50:26 +01:00 |
|
Tamás Vajk
|
e4a712c9d6
|
Merge pull request #10402 from tamasvajk/kotlin-comp-args
Kotlin: Add integration test for compiler argument extraction
|
2022-09-14 15:27:18 +02:00 |
|
Tamas Vajk
|
16836de02b
|
Code quality improvment to simplify test QL
|
2022-09-14 15:15:06 +02:00 |
|
Tom Hvitved
|
40e77a0c67
|
Merge pull request #10415 from hvitved/code-block-fix
Change two ```codeql to ```ql
|
2022-09-14 15:07:55 +02:00 |
|
Ian Lynagh
|
b3b1efb1a1
|
Merge pull request #10414 from igfoo/igfoo/getQualifiedName
Java: Tweak Member.getQualifiedName()
|
2022-09-14 13:30:22 +01:00 |
|
Tom Hvitved
|
4ea1c0050b
|
Change two ``codeql to ``ql
|
2022-09-14 13:53:34 +02:00 |
|
Anders Schack-Mulligen
|
d713910714
|
Merge pull request #10334 from aschackmull/java/uniontypeflow
Java: Implement union type flow and replace ad-hoc variable tracking in dispatch
|
2022-09-14 13:34:28 +02:00 |
|
Tamas Vajk
|
a68b61f50a
|
Kotlin: adjust expected test results after fixing compiler argument interception
|
2022-09-14 13:15:29 +02:00 |
|
Tamas Vajk
|
6eccb5e99c
|
Kotlin: Add integration test to show missing compiler arguments
|
2022-09-14 13:15:29 +02:00 |
|
Ian Lynagh
|
4ac0ecbc61
|
Java: Mark the getQualifiedName change as breaking
|
2022-09-14 12:10:50 +01:00 |
|
Ian Lynagh
|
d735b9e6f2
|
Java: Format QL
|
2022-09-14 11:56:13 +01:00 |
|
Ian Lynagh
|
fec6c35f21
|
Java: Accept test output for getQualifiedName change
|
2022-09-14 10:52:43 +01:00 |
|
Erik Krogh Kristensen
|
2ece9773be
|
Merge pull request #10410 from erik-krogh/nonAsciiRange
JS: don't report every non-ascii range in js/overly-large-range
|
2022-09-14 11:51:22 +02:00 |
|
Paolo Tranquilli
|
d7cdeb8ac0
|
Merge pull request #10412 from github/revert-10399-redsun82/swift-macos-arm
Revert "Swift: print a helpful message on macOS ARM"
|
2022-09-14 11:08:24 +02:00 |
|
Anders Schack-Mulligen
|
64e2f4164d
|
Java: Add test for disjunctive type in call context.
|
2022-09-14 10:38:10 +02:00 |
|
Paolo Tranquilli
|
dad0e4decc
|
Revert "Swift: print a helpful message on macOS ARM"
|
2022-09-14 10:34:46 +02:00 |
|
Anders Schack-Mulligen
|
9f200633ca
|
Java: convert test to inline expectation
|
2022-09-14 10:17:31 +02:00 |
|
Anders Schack-Mulligen
|
83e7bf71d7
|
Java: Adjust qldoc.
|
2022-09-14 10:16:09 +02:00 |
|
James Fletcher
|
572ecf0944
|
Merge branch 'main' into download-db-vs-code
|
2022-09-14 08:58:35 +01:00 |
|
james
|
22eb23e95a
|
add link and remove todo
|
2022-09-14 08:48:20 +01:00 |
|
Mathias Vorreiter Pedersen
|
6074f22d3f
|
Merge pull request #10335 from github/redsun82/swift-weak-hashing-phase-1
Swift: first version of query targeting weak hashing
|
2022-09-14 08:29:47 +01:00 |
|
Paolo Tranquilli
|
c3320a3afe
|
Apply suggestions from code review
Co-authored-by: hubwriter <hubwriter@github.com>
|
2022-09-14 08:21:58 +02:00 |
|
erik-krogh
|
252394666c
|
sync files
|
2022-09-13 20:44:05 +02:00 |
|
erik-krogh
|
e7aef17d30
|
don't report every non-ascii range in js/overly-large-range
|
2022-09-13 20:43:52 +02:00 |
|
James Fletcher
|
6debbc0d3e
|
Apply suggestions from code review
Co-authored-by: Felicity Chapman <felicitymay@github.com>
|
2022-09-13 19:22:15 +01:00 |
|