Accepting request 1186660 from security:sensor

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1186660
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/velociraptor?expand=0&rev=12
This commit is contained in:
Ana Guerrero 2024-07-11 18:31:52 +00:00 committed by Git OBS Bridge
commit 7d1c0aa6dc
7 changed files with 42 additions and 11 deletions

View File

@ -1,4 +1,4 @@
<servicedata> <servicedata>
<service name="tar_scm"> <service name="tar_scm">
<param name="url">https://github.com/SUSE/linux-security-sensor</param> <param name="url">https://github.com/SUSE/linux-security-sensor</param>
<param name="changesrevision">3426c0acec7d33e39ada1cd2e26f8a33af766197</param></service></servicedata> <param name="changesrevision">675e45f90f6a78190d8428bd0a375e9dfd483589</param></service></servicedata>

BIN
velociraptor-0.7.0.4.git74.3426c0a.obscpio (Stored with Git LFS)

Binary file not shown.

BIN
velociraptor-0.7.0.4.git97.675e45f9.obscpio (Stored with Git LFS) Normal file

Binary file not shown.

BIN
velociraptor-go_modules.tar.gz (Stored with Git LFS)

Binary file not shown.

View File

@ -1,3 +1,29 @@
-------------------------------------------------------------------
Wed Jul 03 17:01:54 UTC 2024 - antonio.teixeira@suse.com
- Update to version 0.7.0.4.git97.675e45f9:
* kafka-humio-gateway: update go version and dependency list
* kafka-humio-gateway: specific mTLS cert paths in config.yml
* docker-compose: set kafka replication factor and min ISRs
* kafka-humio-gateway: add http post retry mechanism
* kafka-humio-gateway: add pprof debugging option
* kafka-humio-gateway: format with gofmt
* kafka-humio-gateway: fix go-staticcheck issues
* kafka-humio-gateway: fix sendEvents() never exiting
* Kafka.Events.Client: Update to use new artifactset type
* docker-compose: add optional Kafka cluser
* kafka-humio-gateway: add mTLS support
* contrib/kafka-humio-gateway: add new debug option for noisy events
* contrib/kafka-humio-gateway: backoff and retry for metadata
* kafka-humio-gateway: add sample config file
* kafka-humio-gateway: update sarama and dependencies
* Add Kafka-Humio Gateway [Depends on PR#10] (#8)
* vql/server/kafka: connect sarama logging to velociraptor logging
* vql/server/kafka: add exponential backoff (limited to 30s) for metadata retries
* vql/server/kafka: set appropriate ClientID
* Add a Kafka export plugin
- Use llvm17 when available
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 28 16:45:51 UTC 2024 - Antonio Teixeira <antonio.teixeira@suse.com> Tue May 28 16:45:51 UTC 2024 - Antonio Teixeira <antonio.teixeira@suse.com>

View File

@ -1,4 +1,4 @@
name: velociraptor name: velociraptor
version: 0.7.0.4.git74.3426c0a version: 0.7.0.4.git97.675e45f9
mtime: 1712141066 mtime: 1719345654
commit: 3426c0acec7d33e39ada1cd2e26f8a33af766197 commit: 675e45f90f6a78190d8428bd0a375e9dfd483589

View File

@ -71,7 +71,7 @@
%endif %endif
Name: velociraptor%{name_suffix} Name: velociraptor%{name_suffix}
Version: 0.7.0.4.git74.3426c0a Version: 0.7.0.4.git97.675e45f9
Release: 0 Release: 0
%if %{build_server} %if %{build_server}
Summary: Endpoint visibility and collection tool Summary: Endpoint visibility and collection tool
@ -128,7 +128,11 @@ BuildRequires: npm >= 18
%endif %endif
%if %{with bpf} %if %{with bpf}
%if 0%{?suse_version} %if 0%{?suse_version}
%if 0%{?suse_version} > 1500 || 0%{?sle_version} >= 150300 %if 0%{?suse_version} > 1500 || 0%{?sle_version} == 150600
BuildRequires: clang17
BuildRequires: llvm17
%else
%if 0%{?sle_version} >= 150300
BuildRequires: clang16 BuildRequires: clang16
BuildRequires: llvm16 BuildRequires: llvm16
%if 0%{?sle_version} > 150400 %if 0%{?sle_version} > 150400
@ -138,6 +142,7 @@ BuildRequires: llvm16-libclang13
BuildRequires: clang13 BuildRequires: clang13
BuildRequires: llvm13 BuildRequires: llvm13
%endif %endif
%endif
BuildRequires: libelf-devel BuildRequires: libelf-devel
BuildRequires: libzstd-devel BuildRequires: libzstd-devel
BuildRequires: zlib-devel BuildRequires: zlib-devel