Skip to content

Commits

Commits on Aug 18, 2021

  1. Enforce a minimum version of CodeQL CLI

    Edoardo Pirovano committed Aug 18, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    70d2efc View commit details

Commits on Aug 12, 2021

  1. Pass --ram flag to database finalize

    Edoardo Pirovano committed Aug 12, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    0c4306b View commit details

Commits on Jul 27, 2021

  1. Rebuild after TypeScript version bump

    Edoardo Pirovano committed Jul 27, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    d9849b8 View commit details

Commits on Jul 21, 2021

  1. Augment where we insert baseline lines of code

    Edoardo Pirovano committed Jul 21, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    11d5669 View commit details

Commits on Jun 28, 2021

  1. Support splitting of DB creation and query execution

    Edoardo Pirovano committed Jun 28, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    ef852c0 View commit details

Commits on Jun 10, 2021

  1. Remove unnecessary type assertions

    Andrew Eisenberg committed Jun 10, 2021
    Copy the full SHA
    20aafcd View commit details

Commits on Jun 9, 2021

  1. Remove two log entries

    Cleans up the output logs even more. These entries don't add any more
    information since everything is grouped now.
    Andrew Eisenberg committed Jun 9, 2021
    Copy the full SHA
    23cdd6b View commit details
  2. Add pack download to its own log group

    Also, make the baseline count message less awkward sounding.
    Andrew Eisenberg committed Jun 9, 2021
    Copy the full SHA
    a2e96a4 View commit details
  3. Copy the full SHA
    82388fd View commit details
  4. Add new log grouping for DB cleanup

    Edoardo Pirovano authored and Edoardo Pirovano committed Jun 9, 2021
    Copy the full SHA
    06df98a View commit details

Commits on Jun 8, 2021

  1. Replace analyze with run-queries and interpret-results

    Edoardo Pirovano authored and Edoardo Pirovano committed Jun 8, 2021
    Copy the full SHA
    2cc885d View commit details

Commits on Jun 6, 2021

  1. Run the pack download command

    Andrew Eisenberg committed Jun 6, 2021
    Copy the full SHA
    d87945e View commit details

Commits on Jun 4, 2021

  1. Avoid using SemVer instances

    Use strings instead. They are easier to serialize and deserialize.
    Andrew Eisenberg committed Jun 4, 2021
    Copy the full SHA
    06687e9 View commit details
  2. Fix logic for calculating if there are queries to run

    During the analyze phase.
    Andrew Eisenberg committed Jun 4, 2021
    Copy the full SHA
    9b5753a View commit details
  3. Cleanup CodeQL DBs and output their location for later steps

    Edoardo Pirovano authored and Edoardo Pirovano committed Jun 4, 2021
    Copy the full SHA
    ddb83a4 View commit details

Commits on Jun 3, 2021

  1. Allow the codeql-action to run packages

    This commit adds a `packs` option to the codeql-config.yml file. Users
    can specify a list of ql packs to include in the analysis.
    
    For a single language analysis, the packs property looks like this:
    
    ```yaml
    packs:
      - pack-scope/pack-name1@1.2.3
      - pack-scope/pack-name2   # no explicit version means download the latest
    ```
    
    For multi-language analysis, you must key the packs block by lanaguage:
    
    ```yaml
    packs:
      cpp:
        - pack-scope/pack-name1@1.2.3
        - pack-scope/pack-name2
      java:
        - pack-scope/pack-name3@1.2.3
        - pack-scope/pack-name4
    ```
    
    This implementation adds a new analysis run (alongside custom and 
    builtin runs). The unit tests indicate that the correct commands are
    being run, but I have not actually tried this with a real CLI.
    
    Also, convert `instanceof Array` to `Array.isArray` since that is
    sightly better in some situations. See:
    https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray#instanceof_vs_isarray
    Andrew Eisenberg committed Jun 3, 2021
    Copy the full SHA
    86a804f View commit details

Commits on May 28, 2021

  1. Analyze: Log analysis summaries for custom queries

    Henry Mercer committed May 28, 2021
    Copy the full SHA
    2338fe5 View commit details

Commits on May 21, 2021

  1. Check queries in initConfig

    Arthur Baars committed May 21, 2021
    Copy the full SHA
    84bec4d View commit details

Commits on May 20, 2021

  1. Analyze: Log the analysis summary in its own group

    Fix grouping of the analysis logs, so that custom query logs also get grouped.
    Capture the stdout of codeql database analyze, which contains the analysis summary
    from summary and diagnostic queries.
    Log this output in its own group, along with the baseline computed in the Action.
    Aditya Sharad committed May 20, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    19fe63f View commit details

Commits on May 17, 2021

  1. Add configuration option to set CodeQL DB location

    Edoardo Pirovano authored and Edoardo Pirovano committed May 17, 2021
    Copy the full SHA
    79c79f1 View commit details

Commits on May 13, 2021

  1. Use the prefix id for keying into metrics rules

    Fixes a bug where we were looking for incorrect keys for metrics rules.
    Previously, we were using full language names in the keys. Now, we use
    the short language names in the metric ids. This is done through a
    simplification of the code.
    
    Also, this change does two smaller things:
    
    1. Prints out the baseline count to the logs
    2. Adds the `assertNever` function to ensure we never miss a case in
       a switch statement. This function is borrowed from vscode-codeql.
    Andrew Eisenberg committed May 13, 2021
    Copy the full SHA
    e8b2a98 View commit details

Commits on May 5, 2021

  1. Merge branch 'main' into daverlo/categoryInput

    David Verdeguer committed May 5, 2021
    Copy the full SHA
    a117668 View commit details

Commits on May 4, 2021

  1. Change from metric to rule

    The SARIF that we are interpreting has moved away from using `metric`
    to the more general term, `rule`. We need to adapt our baseline lines of
    code counting to use `rule` as well.
    Andrew Eisenberg committed May 4, 2021
    Copy the full SHA
    a2312a0 View commit details

Commits on May 3, 2021

  1. Forward category input to codeql cli

    David Verdeguer committed May 3, 2021
    Copy the full SHA
    c93cbc9 View commit details

Commits on Apr 28, 2021

  1. Avoid analyzing excluded language files for line counting

    This change passes in a list of file types to the line counting
    analysis. These are the languages for the databases being analyzed.
    Line count analysis is restricted to these files.
    Andrew Eisenberg committed Apr 28, 2021
    Copy the full SHA
    ee23462 View commit details

Commits on Apr 26, 2021

  1. Add baseline metrics for lines of code

    This commit uses a third party library to estimate the lines of code in
    a database that is to be analyzed by codeql.
    
    The estimate uses the same includes and excludes globs for determining
    which files should be counted.
    
    The lines of code count is returned by language and injected into the
    SARIF as `baseline` property in the `${language}/summary/lines-of-code`
    metric.
    Andrew Eisenberg committed Apr 26, 2021
    Copy the full SHA
    998f472 View commit details

Commits on Apr 22, 2021

  1. Copy the full SHA
    8c91ba8 View commit details

Commits on Apr 21, 2021

  1. Add external git repositories to search path for custom queries

    Edoardo Pirovano authored and Edoardo Pirovano committed Apr 21, 2021
    Copy the full SHA
    578f9fc View commit details

Commits on Nov 27, 2020

  1. Copy the full SHA
    ff28c8d View commit details

Commits on Nov 26, 2020

  1. Use better comparison operator

    Sam Partington committed Nov 26, 2020
    Copy the full SHA
    9532bda View commit details
  2. Split upload method into two mode-specific ones

    Sam Partington committed Nov 26, 2020
    Copy the full SHA
    57514f3 View commit details

Commits on Nov 23, 2020

  1. Copy the full SHA
    20567b5 View commit details

Commits on Nov 20, 2020

  1. Run npm run build

    Eric Cornelissen committed Nov 20, 2020
    Copy the full SHA
    5416d4f View commit details

Commits on Nov 3, 2020

  1. Add the --threads config option to finalize db (#281)

    This flag is already being used for `runQueries`, so let's use it for
    finalize as well.
    Andrew Eisenberg authored and GitHub committed Nov 3, 2020

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    bc1ee16 View commit details

Commits on Oct 22, 2020

  1. Copy the full SHA
    d628762 View commit details
Older