kops: 1.26.4 -> 1.27.0 (#245208)
- Drop kops_1_24 - kops_1_26: 1.26.4 -> 1.26.5 - Update 23.11 release notes
This commit is contained in:
parent
8f23952d55
commit
3e36355e44
3 changed files with 12 additions and 10 deletions
|
@ -101,6 +101,8 @@
|
|||
|
||||
- The `go-ethereum` package has been updated to v1.12.0. This drops support for proof-of-work. Its GraphQL API now encodes all numeric values as hex strings and the GraphQL UI is updated to version 2.0. The default database has changed from `leveldb` to `pebble` but `leveldb` can be forced with the --db.engine=leveldb flag. The `checkpoint-admin` command was [removed along with trusted checkpoints](https://github.com/ethereum/go-ethereum/pull/27147).
|
||||
|
||||
- The default `kops` version is now 1.27.0 and support for 1.24 and older has been dropped.
|
||||
|
||||
## Other Notable Changes {#sec-release-23.11-notable-changes}
|
||||
|
||||
- The Cinnamon module now enables XDG desktop integration by default. If you are experiencing collisions related to xdg-desktop-portal-gtk you can safely remove `xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];` from your NixOS configuration.
|
||||
|
|
|
@ -48,12 +48,6 @@ in
|
|||
rec {
|
||||
mkKops = generic;
|
||||
|
||||
kops_1_24 = mkKops rec {
|
||||
version = "1.24.5";
|
||||
sha256 = "sha256-U5OSiU0t2gyvyNd07y68Fb+HaXp5wQN4t0CBPOOMd/M=";
|
||||
rev = "v${version}";
|
||||
};
|
||||
|
||||
kops_1_25 = mkKops rec {
|
||||
version = "1.25.4";
|
||||
sha256 = "sha256-Q40d62D+H7CpLmrjweCy75U3LgnHEV2pFZs2Ze+koqo=";
|
||||
|
@ -61,8 +55,14 @@ rec {
|
|||
};
|
||||
|
||||
kops_1_26 = mkKops rec {
|
||||
version = "1.26.4";
|
||||
sha256 = "sha256-dHwakorYSQCv5Pi6l32y5cajLd9teXwEds1LFgiH0ck=";
|
||||
version = "1.26.5";
|
||||
sha256 = "sha256-DbKzqfcQCHP3ZWJQcRhPDkKVzHB/MkcfukguUDG4UQg=";
|
||||
rev = "v${version}";
|
||||
};
|
||||
|
||||
kops_1_27 = mkKops rec {
|
||||
version = "1.27.0";
|
||||
sha256 = "sha256-XJOdqOT/vMVXZmVasXRb+pdmWcSd6lsyQDCnZKyqrto=";
|
||||
rev = "v${version}";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -39971,11 +39971,11 @@ with pkgs;
|
|||
# Exceptions are versions that we need to keep to allow upgrades from older NixOS releases
|
||||
inherit (callPackage ../applications/networking/cluster/kops {})
|
||||
mkKops
|
||||
kops_1_24
|
||||
kops_1_25
|
||||
kops_1_26
|
||||
kops_1_27
|
||||
;
|
||||
kops = kops_1_26;
|
||||
kops = kops_1_27;
|
||||
|
||||
lguf-brightness = callPackage ../misc/lguf-brightness { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue