-
Notifications
You must be signed in to change notification settings - Fork 440
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
Document new without_vulnerability_details option for software versions endpoint #24246
Conversation
Currently in Fleet Premium the software versions endpoint returns verbose details about vulnerabilities. In an effort to keep backwards compatibility in Fleet Premium this option is named in its "negative form", rather than However, the front end application will be passing this option as |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## docs-v4.61.0 #24246 +/- ##
================================================
+ Coverage 63.16% 63.44% +0.28%
================================================
Files 1560 1580 +20
Lines 148469 150290 +1821
Branches 3736 3770 +34
================================================
+ Hits 93777 95355 +1578
- Misses 47289 47342 +53
- Partials 7403 7593 +190
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@ksykulev Please rebase your commit on top of this branch. It's behind main enough that catching it up should be its own PR. |
Not sure what happened here, looks like some sort of bad rebase or merge? |
Also looks like https://github.com/fleetdm/fleet/tree/docs-v4.61.0 is 144 commits behind main (docs-v4.61.0...main) |
…ns endpoint In order to improve performance on the software version endpoint the option `without_vulnerability_details` has been added. It can be set to true to decrease the size of the response. On the free tier setting this option to `false` will have no effect. On Fleet Premium setting it to `false` or omitting will include verbose vulnerability details.
Co-authored-by: Rachael Shaw <[email protected]>
Co-authored-by: Rachael Shaw <[email protected]>
#23679
In order to improve performance on the software version endpoint the option
without_vulnerability_details
has been added. It can be set to true to decrease the size of the response.On the free tier setting this option to
false
will have no effect. On Fleet Premium setting it tofalse
or omitting will include verbose vulnerability details.