Skip to content
Closed
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/snyk/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "3.4.3"
changes:
- description: Fix audit_logs event type filter being ignored due to state key mismatch.
type: bugfix
link: https://github.com/elastic/integrations/pull/18929
- version: "3.4.2"
changes:
- description: Fix work list and cursor handling.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,10 @@ program: |-
optional.of([state.project_id])
:
optional.none(),
?"events": state.?events_filter,
?"events": has(state.event_filter) ?
optional.of([state.event_filter.join(",")])
:
optional.none(),
}.format_query()
)
).with(auth_header).do_request().as(resp,
Expand Down
2 changes: 1 addition & 1 deletion packages/snyk/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: "3.3.2"
name: snyk
title: "Snyk"
version: "3.4.2"
version: "3.4.3"
description: Collect logs from Snyk with Elastic Agent.
type: integration
categories:
Expand Down
Loading