Merge pull request #276418 from katexochen/k9s/0-30-0

k9s: 0.29.1 -> 0.30.4

authored by Pierre Bourdon and committed by GitHub b2f14686 8a395018

+9 -4
+4 -1
nixos/doc/manual/release-notes/rl-2405.section.md
··· 41 41 42 42 - The `power.ups` module now generates `upsd.conf`, `upsd.users` and `upsmon.conf` automatically from a set of new configuration options. This breaks compatibility with existing `power.ups` setups where these files were created manually. Back up these files before upgrading NixOS. 43 43 44 - - `k9s` was updated to v0.29. There have been breaking changes in the config file format, check out the [changelog](https://github.com/derailed/k9s/releases/tag/v0.29.0) for details. 44 + - `k9s` was updated to v0.30. There have been various breaking changes in the config file format, 45 + check out the changelog of [v0.29](https://github.com/derailed/k9s/releases/tag/v0.29.0) and 46 + [v0.30](https://github.com/derailed/k9s/releases/tag/v0.30.0) for details. It is recommended 47 + to back up your current configuration and let k9s recreate the new base configuration. 45 48 46 49 - `idris2` was updated to v0.7.0. This version introduces breaking changes. Check out the [changelog](https://github.com/idris-lang/Idris2/blob/v0.7.0/CHANGELOG.md#v070) for details. 47 50
+5 -3
pkgs/applications/networking/cluster/k9s/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "k9s"; 5 - version = "0.29.1"; 5 + version = "0.30.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "derailed"; 9 9 repo = "k9s"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-agGayZ20RMAcGOx+owwDbUUDsjF3FZajhwDZ5wtE93k="; 11 + hash = "sha256-P06hKqVu/aUttjwdFVCvzC80WWbQn94bXk3LVl/97yw="; 12 12 }; 13 13 14 14 ldflags = [ ··· 23 23 24 24 proxyVendor = true; 25 25 26 - vendorHash = "sha256-9w44gpaB2C/F7hTImjdeabWVgTU5AA/7OSJmAqayrzU="; 26 + vendorHash = "sha256-Exn4NYegZWrItBoGVb97GUDRhhfeSJUEdr7xJnxcRMI="; 27 27 28 28 # TODO investigate why some config tests are failing 29 29 doCheck = !(stdenv.isDarwin && stdenv.isAarch64); ··· 51 51 meta = with lib; { 52 52 description = "Kubernetes CLI To Manage Your Clusters In Style"; 53 53 homepage = "https://github.com/derailed/k9s"; 54 + changelog = "https://github.com/derailed/k9s/releases/tag/v${version}"; 54 55 license = licenses.asl20; 56 + mainProgram = "k9s"; 55 57 maintainers = with maintainers; [ Gonzih markus1189 bryanasdev000 qjoly ]; 56 58 }; 57 59 }