From 07392e331b2f12901b24bf5e0f516a1ec66c4742 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Fri, 8 Dec 2023 22:17:15 +0000 Subject: [PATCH] x-pack/packetbeat: bump npcap version to v1.78 (#37370) (#37373) (cherry picked from commit cc8f5a1097447b95ada7743bab98f27e1416ce14) Co-authored-by: Dan Kortschak <90160302+efd6@users.noreply.github.com> --- CHANGELOG.next.asciidoc | 1 + x-pack/packetbeat/magefile.go | 2 +- x-pack/packetbeat/npcap/installer/LICENSE | 2 +- x-pack/packetbeat/tests/system/app_test.go | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 39f80047af3c..53b183671495 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -266,6 +266,7 @@ Setting environmental variable ELASTIC_NETINFO:false in Elastic Agent pod will d - Make ingest pipeline routing robust to letter case of channel names for forwarded events. {issue}36670[36670] {pull}36899[36899] - Document minimum permissions required for local user account. {issue}15773[15773] {pull}37176[37176] +- Bump Windows Npcap version to v1.78. {issue}37300[37300] {pull}37370[37370] *Functionbeat* diff --git a/x-pack/packetbeat/magefile.go b/x-pack/packetbeat/magefile.go index 2d0d367a4600..c5df7ef2deb2 100644 --- a/x-pack/packetbeat/magefile.go +++ b/x-pack/packetbeat/magefile.go @@ -36,7 +36,7 @@ import ( // the packetbeat executable. It is used to specify which npcap builder crossbuild // image to use and the installer to obtain from the cloud store for testing. const ( - NpcapVersion = "1.76" + NpcapVersion = "1.78" installer = "npcap-" + NpcapVersion + "-oem.exe" ) diff --git a/x-pack/packetbeat/npcap/installer/LICENSE b/x-pack/packetbeat/npcap/installer/LICENSE index 61173d3226af..1073eb3ff69f 100644 --- a/x-pack/packetbeat/npcap/installer/LICENSE +++ b/x-pack/packetbeat/npcap/installer/LICENSE @@ -1,6 +1,6 @@ -------------------------------------------------------------------------------- Dependency : Npcap (https://nmap.org/npcap/) -Version: 1.76 +Version: 1.78 Licence type: Commercial -------------------------------------------------------------------------------- diff --git a/x-pack/packetbeat/tests/system/app_test.go b/x-pack/packetbeat/tests/system/app_test.go index b7566e7450bb..fa1a359be70a 100644 --- a/x-pack/packetbeat/tests/system/app_test.go +++ b/x-pack/packetbeat/tests/system/app_test.go @@ -29,7 +29,7 @@ import ( ) // Keep in sync with NpcapVersion in magefile.go. -const NpcapVersion = "1.76" +const NpcapVersion = "1.78" func TestWindowsNpcapInstaller(t *testing.T) { if runtime.GOOS != "windows" {