2022-11-24T08:24:59 datree 1.8.0 -> 1.8.1 https://github.com/datreeio/datree/releases 2022-11-24T08:25:02 attrpath: datree 2022-11-24T08:25:02 Checking auto update branch... 2022-11-24T08:25:02 No auto update branch exists 2022-11-24T08:25:02 Old version 1.8.0" not present in master derivation file with contents: { lib , buildGoModule , fetchFromGitHub , installShellFiles , testers , datree }: buildGoModule rec { pname = "datree"; version = "1.8.1"; src = fetchFromGitHub { owner = "datreeio"; repo = "datree"; rev = version; hash = "sha256-g+8O6gtBx6UTIUDtVtt2je9ZS+50kOgJX15amuj83g4="; }; vendorHash = "sha256-m3O5AoAHSM6rSnmL5N7V37XU38FADb0Edt/EZvvb2u4="; nativeBuildInputs = [ installShellFiles ]; ldflags = [ "-s" "-w" "-X github.com/datreeio/datree/cmd.CliVersion=${version}" ]; tags = [ "main" ]; postInstall = '' installShellCompletion \ --cmd datree \ --bash <($out/bin/datree completion bash) \ --fish <($out/bin/datree completion fish) \ --zsh <($out/bin/datree completion zsh) ''; passthru.tests.version = testers.testVersion { package = datree; command = "datree version"; }; meta = with lib; { description = "CLI tool to ensure K8s manifests and Helm charts follow best practices"; longDescription = '' Datree provides an E2E policy enforcement solution to run automatic checks for rule violations. Datree can be used on the command line, admission webhook, or even as a kubectl plugin to run policies against Kubernetes objects. ''; homepage = "https://datree.io/"; license = licenses.asl20; maintainers = with maintainers; [ azahi jceb ]; }; }