Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 6 additions & 1 deletion packages/qualys_vmdr/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "6.17.1"
changes:
- description: Fix intermittent evaluation error in asset_host_detection when the knowledge base API response is missing expected ID values.
type: bugfix
link: https://github.com/elastic/integrations/pull/17932
- version: "6.17.0"
changes:
- description: Add navigation links across all dashboards.
Expand All @@ -24,7 +29,7 @@
link: https://github.com/elastic/integrations/pull/16727
- version: "6.14.1"
changes:
- description: Update XSD schema name to match Host Detection API v5.0 response.
- description: Update XSD schema name to match Host Detection API v5.0 response.
type: enhancement
link: https://github.com/elastic/integrations/pull/16623
- version: "6.14.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ program: |
"events": [{
"message": {
"KNOWLEDGE_BASE": {
"response_error": "response IDs values are missing: " + string(kb_body.?doc.KNOWLEDGE_BASE_VULN_LIST_OUTPUT.RESPONSE.ID_SET.orValue([])),
"response_error": "response IDs values are missing: " + kb_body.?doc.KNOWLEDGE_BASE_VULN_LIST_OUTPUT.RESPONSE.ID_SET.orValue([]).join(" "),
},
"interval_start": state.interval.start,
"interval_id": state.interval.id,
Expand Down
2 changes: 1 addition & 1 deletion packages/qualys_vmdr/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: "3.4.0"
name: qualys_vmdr
title: Qualys VMDR
version: "6.17.0"
version: "6.17.1"
description: Collect data from Qualys VMDR platform with Elastic Agent.
type: integration
categories:
Expand Down
Loading