Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

x-pack/packetbeat: bump npcap version to v1.78 #37370

Merged
merged 1 commit into from
Dec 8, 2023
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
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,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*

Expand Down
2 changes: 1 addition & 1 deletion x-pack/packetbeat/magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion x-pack/packetbeat/npcap/installer/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--------------------------------------------------------------------------------
Dependency : Npcap (https://nmap.org/npcap/)
Version: 1.76
Version: 1.78
Licence type: Commercial
--------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion x-pack/packetbeat/tests/system/app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
)

// 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" {
Expand Down Expand Up @@ -64,7 +64,7 @@

ifcs, err := net.Interfaces()
require.NoError(t, err)
var expected []string

Check failure on line 67 in x-pack/packetbeat/tests/system/app_test.go

View workflow job for this annotation

GitHub Actions / lint (windows)

Consider pre-allocating `expected` (prealloc)
for _, ifc := range ifcs {
expected = append(expected, fmt.Sprintf("%d:%s:%s", ifc.Index, ifc.Name, ifc.Flags))
}
Expand Down
Loading