Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

[gui] Add new features section for 6.18.0 release #3530

Merged
merged 1 commit into from
Nov 30, 2021
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
41 changes: 41 additions & 0 deletions web/server/vue-cli/src/views/NewFeatures.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,47 @@
<!-- eslint-disable max-len -->
<v-container fluid>
<v-timeline align-top>
<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.18.0"
target="_blank"
class="white--text"
>
Highlights of CodeChecker 6.18.0 release
</a>
</template>

<new-feature-item>
<template v-slot:title>
<v-alert dense outlined type="error">
Backward incompatible CLI change!
</v-alert>
</template>
The <i>JSON</i> output of the CodeChecker parse command was not
stable enough and the structure was very similar to the plist
structure. Our plan is to support reading/parsing/storing of
multiple analyzer output types not only plist but for example
<a href="http://docs.oasis-open.org/sarif/sarif/v2.0/csprd01/sarif-v2.0-csprd01.html" target="_blank">sarif</a>
format as well. For this reason we changed the format of the
JSON output of the <i>CodeChecker parse</i> and
<i>CodeChecker cmd diff</i> commands. For more information
<a href="https://github.com/Ericsson/codechecker/blob/master/docs/analyzer/user_guide.md" target="_blank">see</a>.
</new-feature-item>

<new-feature-item>
<template v-slot:title>
Get access controls
</template>
Create a new global role (<code>PERMISSION_VIEW</code>) which will
be used to allow the users to fetch access control information from
a running <i>CodeChecker server</i> by using the
<code>CodeChecker cmd permissions</code> subcommand.
</new-feature-item>
</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