Skip to content
Open
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
5 changes: 5 additions & 0 deletions packages/wiz/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "4.8.0"
changes:
- description: Set the `latest_cdr_vulnerabilities` and `latest_cdr_misconfigurations` transform destination indices to 3 primary shards to avoid shard-size warnings at scale. The destination indices are re-created (`-v3` and `-v4` respectively).
type: enhancement
link: https://github.com/elastic/integrations/pull/1

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Severity: 🟡 Medium confidence: high path: packages/wiz/changelog.yml:6

Changelog links a different PR number

Details

This changelog entry's link: points at pull/1, but it was added in PR #​21016. It is likely a leftover template placeholder or a copy from another PR.

Recommendation:

Point each added changelog entry's link at this PR:

link: https://github.com/elastic/integrations/pull/21016

🤖 AI-Generated Review | Vera Review Bot - v0.3.0 | 📚 Knowledge base: integration-skills

⚠️ Automated review — verify suggestions before applying.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@moxarth-rathod please fix this.

- version: "4.7.0"
changes:
- description: Add tags to ingest pipeline processors and add `preserve_original_event` to pipeline-level `on_failure` handlers.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
start: true
destination_index_template:
settings:
index:
number_of_shards: 3
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ source:
- data_frozen
- data_cold
dest:
index: "security_solution-wiz.misconfiguration_latest-v3"
index: "security_solution-wiz.misconfiguration_latest-v4"
aliases:
- alias: "security_solution-wiz.misconfiguration_latest"
move_on_creation: true
Expand All @@ -40,4 +40,4 @@ _meta:
managed: true
# Bump this version to delete, reinstall, and restart the transform during package.
# Version bump is needed if there is any code change in transform.
fleet_transform_version: 0.4.0
fleet_transform_version: 0.5.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
start: true
destination_index_template:
settings:
index:
number_of_shards: 3
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ source:
- data_frozen
- data_cold
dest:
index: "security_solution-wiz.vulnerability_latest-v2"
index: "security_solution-wiz.vulnerability_latest-v3"
aliases:
- alias: "security_solution-wiz.vulnerability_latest"
move_on_creation: true
Expand All @@ -42,4 +42,4 @@ _meta:
managed: true
# Bump this version to delete, reinstall, and restart the transform during package.
# Version bump is needed if there is any code change in transform.
fleet_transform_version: 0.3.0
fleet_transform_version: 0.4.0
2 changes: 1 addition & 1 deletion packages/wiz/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 3.3.2
name: wiz
title: Wiz
version: "4.7.0"
version: "4.8.0"
description: Collect logs from Wiz with Elastic Agent.
type: integration
categories:
Expand Down
Loading