melg8 / cit

Control your c++ code using this ci template and development environment powered by nix and docker.
Other
14 stars 3 forks source link

chore(deps): Bump codechecker from 6.19.1 to 6.23.0 in /ci/nix/code_checker #31

Open dependabot[bot] opened 3 weeks ago

dependabot[bot] commented 3 weeks ago

Bumps codechecker from 6.19.1 to 6.23.0.

Release notes

Sourced from codechecker's releases.

v6.23.0

:star2: Highlights

GCC Static Analyzer support

We are happy to announce that CodeChecker added native support for the GCC Static Analyzer! This analyzer checks code in the C family of languages, but its latest release at the time of writing is still best used only on C code. Despite it being a bit immature for C++, we did some internal surveys where the GCC Static Analyzer seemed to be promising.

We expect this analyzer to be slower than clang-tidy, but faster than the Clang Static Analyzer. You can enable it by adding --analyzers gcc to your CodeChecker check or CodeChecker analyze commands. For further configuration, check out the GCC Static Analyzer configuration page.

GNU GCC 13.0.0. (the minimum version we support) can be tricky to obtain and to make CodeChecker use it, as CodeChecker looks for the g++ binary, not g++-13. As a workaround, you can set the environmental variable CC_ANALYZER_BIN which will make CodeChecker use the given analyzer path (e.g. CC_ANALYZER_BIN="gcc:/usr/bin/g++-13"). You can use CodeChecker analyzers to check whether you have the correct binary configured.

You can enable gcc checkers by explicitly mentioning them at the analyze command e.g.

CodeChecker analyze -e gcc

gcc checkers are only added to the exterme profile. After evaluation, some checkers may be added to other profiles too.

Under the same breath, we added partial support for the SARIF file format (as opposed to using plists) to report-converter, with greater support planned for future releases.

Review status config file

In previous CodeChecker versions, you could set the review status of a report using two methods: using in-source comments, or setting a review status rule in the GUI. The former sets the specific report's review status, the latter sets all matching reports' review status.

This release introduces a third way, a review status config file! One of the motivations behind this is that we wanted to have a way to set review statuses on reports in specific directories (which was not possible on the GUI). CodeChecker uses a YAML config file that can be set during analysis:

$version: 1
rules:
  - filters:
      filepath: /path/to/project/test/*
      checker_name: core.DivideZero
    actions:
      review_status: intentional
      reason: Division by zero in test files is automatically intentional.
  • filters: filepath: /path/to/project/important/module/* actions: review_status: confirmed reason: All reports in this module should be investigated.

  • filters: filepath: "/project/test/" actions: review_status: suppress reason: If a filter starts with asterix, then it should be quoted due to YAML format.

  • filters: report_hash: b85851b34789e35c6acfa1a4aaf65382 actions: review_status: false_positive </tr></table>

... (truncated)

Commits
  • bea15d4 Merge pull request #4124 from bruntib/review_status_config_test_fix
  • 7c0aa1b [test] Enable review status config tests.
  • d6164d7 Merge pull request #4123 from bruntib/highlights_page
  • f2c1cdd [doc] Highlights page for 6.23.0 in GUI
  • 15eb214 Merge pull request #4121 from dkrupp/new_checkers
  • 23148e8 Merge pull request #4113 from bruntib/ignore_status
  • d885936 [fix] Fix the code based on some review comments
  • 8217ea7 Adding new checkers to profiles and assigning severities
  • c422f91 Merge pull request #4119 from vodorok/osx_docs
  • f2529d3 macOS docs notes
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/melg8/cit/network/alerts).