···26 It should generally be replaced with `rustPlatform.fetchCargoVendor`, but `rustPlatform.importCargoLock` may also be appropriate in some circumstances.
27 `rustPlatform.buildRustPackage` users must set `useFetchCargoVendor` to `true` and regenerate the `cargoHash`.
28000000029- Default ICU version updated from 74 to 76
3031<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
···26 It should generally be replaced with `rustPlatform.fetchCargoVendor`, but `rustPlatform.importCargoLock` may also be appropriate in some circumstances.
27 `rustPlatform.buildRustPackage` users must set `useFetchCargoVendor` to `true` and regenerate the `cargoHash`.
2829+- NetBox was updated to `>= 4.2.0`. Have a look at the breaking changes
30+ of the [4.1 release](https://github.com/netbox-community/netbox/releases/tag/v4.1.0)
31+ and the [4.2 release](https://github.com/netbox-community/netbox/releases/tag/v4.2.0),
32+ make the required changes to your database, if needed, then upgrade by setting `services.netbox.package = pkgs.netbox_4_2;` in your configuration.
33+34+- NetBox version 4.0.X available as `netbox_4_0` was removed. Please upgrade to `4.2`.
35+36- Default ICU version updated from 74 to 76
3738<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
+3-1
nixos/modules/services/web-apps/netbox.nix
···102 package = lib.mkOption {
103 type = lib.types.package;
104 default =
105- if lib.versionAtLeast config.system.stateVersion "24.11" then
00106 pkgs.netbox_4_1
107 else if lib.versionAtLeast config.system.stateVersion "24.05" then
108 pkgs.netbox_3_7
···102 package = lib.mkOption {
103 type = lib.types.package;
104 default =
105+ if lib.versionAtLeast config.system.stateVersion "25.05" then
106+ pkgs.netbox_4_2
107+ else if lib.versionAtLeast config.system.stateVersion "24.11" then
108 pkgs.netbox_4_1
109 else if lib.versionAtLeast config.system.stateVersion "24.05" then
110 pkgs.netbox_3_7
···4258 inherit (callPackage ../servers/web-apps/netbox { }) netbox_3_7;
42594260 # Not in aliases because it wouldn't get picked up by callPackage
4261- netbox = netbox_4_1;
42624263 netcat = libressl.nc.overrideAttrs (old: {
4264 meta = old.meta // {
···4258 inherit (callPackage ../servers/web-apps/netbox { }) netbox_3_7;
42594260 # Not in aliases because it wouldn't get picked up by callPackage
4261+ netbox = netbox_4_2;
42624263 netcat = libressl.nc.overrideAttrs (old: {
4264 meta = old.meta // {