hubble: 0.13.6 -> 1.17.1 (#382313)

authored by

Wolfgang Walther and committed by
GitHub
def3915d d4b6c6a4

+14 -7
+6
maintainers/maintainer-list.nix
··· 7772 7772 github = "fkautz"; 7773 7773 githubId = 135706; 7774 7774 }; 7775 + FKouhai = { 7776 + name = "Fran Cirka"; 7777 + email = "frandres00@gmail.com"; 7778 + github = "FKouhai"; 7779 + githubId = 24593008; 7780 + }; 7775 7781 flacks = { 7776 7782 name = "Jean Lucas"; 7777 7783 email = "jean@4ray.co";
+8 -7
pkgs/by-name/hu/hubble/package.nix
··· 1 1 { 2 2 lib, 3 - buildGoModule, 3 + buildGo124Module, 4 4 fetchFromGitHub, 5 5 installShellFiles, 6 6 }: 7 7 8 - buildGoModule rec { 8 + buildGo124Module rec { 9 9 pname = "hubble"; 10 - version = "0.13.6"; 10 + version = "1.17.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "cilium"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-evtXuVcaKKuAW+04S+IADKf+wJ1MrnGpHLNUbxWd9ZM="; 16 + sha256 = "sha256-ZrLb2dITQPd9g4azlidpTHFWNwop0AMKEIzwMX1Y7Jw="; 17 17 }; 18 18 19 19 vendorHash = null; ··· 21 21 ldflags = [ 22 22 "-s" 23 23 "-w" 24 - "-X github.com/cilium/hubble/pkg.GitBranch=none" 25 - "-X github.com/cilium/hubble/pkg.GitHash=none" 26 - "-X github.com/cilium/hubble/pkg.Version=${version}" 24 + "-X github.com/cilium/cilium/hubble/pkg.GitBranch=none" 25 + "-X github.com/cilium/cilium/hubble/pkg.GitHash=none" 26 + "-X github.com/cilium/cilium/hubble/pkg.Version=${version}" 27 27 ]; 28 28 29 29 # Test fails at Test_getFlowsRequestWithInvalidRawFilters in github.com/cilium/hubble/cmd/observe ··· 52 52 maintainers = with maintainers; [ 53 53 humancalico 54 54 bryanasdev000 55 + FKouhai 55 56 ]; 56 57 }; 57 58 }