Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Highlight page added for CodeChecker 6.24.0 #4260

Merged
merged 1 commit into from
Oct 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions web/server/vue-cli/src/views/NewFeatures.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,61 @@
<template>
<!-- eslint-disable max-len -->
<v-container fluid>
<v-timeline align-top>

Check warning on line 4 in web/server/vue-cli/src/views/NewFeatures.vue

View workflow job for this annotation

GitHub Actions / GUI (firefox)

Expected 1 line break after opening tag (`<v-timeline>`), but 3 line breaks found

Check warning on line 4 in web/server/vue-cli/src/views/NewFeatures.vue

View workflow job for this annotation

GitHub Actions / GUI (firefox)

Expected 1 line break after opening tag (`<v-timeline>`), but 3 line breaks found


<v-timeline-item fill-dot icon="mdi-star">
<new-release-item>
<template v-slot:title>
<a
href="https://github.com/Ericsson/codechecker/releases/tag/v6.24.0"
target="_blank"
class="white--text"
>
Highlights of CodeChecker 6.24.0 release
</a>
</template>

<new-feature-item>
<template v-slot:title>
Listing of Enabled/Disabled Checkers in the WEB UI per run
</template>
CodeChecker provides a new view in the "Analysis information tab" which lists all checkers that were enabled during analysis.
</new-feature-item>

<new-feature-item>
<template v-slot:title>
New Checker Coverage Statistics view with coding guideline references
</template>
CodeChecker provides a new view to display all enabled checkers for a set of selected runs. Additionally, it also lists all guideline rules related to the given checker. For example, you can verify whether your code has any SEI Cert coding guideline violation.
The new table lists all checkers that were enabled in a set of selected analysis runs, shows the number of outstanding reports and the number of closed reports per enabled checker and the related coding guideline rules.
</new-feature-item>

<new-feature-item>
<template v-slot:title>
Faster run storage
</template>
Thanks to a new optimization, the run storage duration can be up to 50% faster.
</new-feature-item>

<new-feature-item>
<template v-slot:title>
New Static HTML Report Pages
</template>
The static HTML generation is rewritten so it can handle much larger result set.

Check warning on line 45 in web/server/vue-cli/src/views/NewFeatures.vue

View workflow job for this annotation

GitHub Actions / GUI (firefox)

Expected indentation of 12 spaces but found 13 spaces

Check warning on line 45 in web/server/vue-cli/src/views/NewFeatures.vue

View workflow job for this annotation

GitHub Actions / GUI (firefox)

Expected indentation of 12 spaces but found 13 spaces
</new-feature-item>

<new-feature-item>
<template v-slot:title>
New report filter to list closed and outstanding reports
</template>
A new filter has been added to list outstanding and closed reports. An outstanding report is a report with detection status new, reopened, unresolved with review status unreviewed or confirmed.

Check warning on line 52 in web/server/vue-cli/src/views/NewFeatures.vue

View workflow job for this annotation

GitHub Actions / GUI (firefox)

Expected indentation of 12 spaces but found 13 spaces

Check warning on line 52 in web/server/vue-cli/src/views/NewFeatures.vue

View workflow job for this annotation

GitHub Actions / GUI (firefox)

Expected indentation of 12 spaces but found 13 spaces
</new-feature-item>

Check warning on line 53 in web/server/vue-cli/src/views/NewFeatures.vue

View workflow job for this annotation

GitHub Actions / GUI (firefox)

Expected 1 line break before closing tag (`</new-release-item>`), but 2 line breaks found

Check warning on line 53 in web/server/vue-cli/src/views/NewFeatures.vue

View workflow job for this annotation

GitHub Actions / GUI (firefox)

Expected 1 line break before closing tag (`</new-release-item>`), but 2 line breaks found

</new-release-item>
</v-timeline-item>


<v-timeline-item fill-dot icon="mdi-star" color="green lighten-1">
<new-release-item color="green lighten-1">
<template v-slot:title>
Expand Down
Loading