renovate: 38.105.2 -> 39.42.4 (#361090)

authored by scrumplex.net and committed by GitHub 75d54b46 b32a0943

+16 -4
+3
nixos/doc/manual/release-notes/rl-2505.section.md
··· 62 62 63 63 - `fluxus` has been removed, as it depends on `racket_7_9` and had no updates in 9 years. 64 64 65 + - `renovate` was updated to v39. See the [upstream release notes](https://docs.renovatebot.com/release-notes-for-major-versions/#version-39) for breaking changes. 66 + Like upstream's docker images, renovate now runs on NodeJS 22. 67 + 65 68 - The behavior of the `networking.nat.externalIP` and `networking.nat.externalIPv6` options has been changed. `networking.nat.forwardPorts` now only forwards packets destined for the specified IP addresses. 66 69 67 70 - `nodePackages.meshcommander` has been removed, as the package was deprecated by Intel.
+9 -4
pkgs/by-name/re/renovate/package.nix
··· 11 11 xcbuild, 12 12 nixosTests, 13 13 nix-update-script, 14 + yq-go, 14 15 }: 15 16 16 17 let ··· 20 21 in 21 22 stdenv'.mkDerivation (finalAttrs: { 22 23 pname = "renovate"; 23 - version = "38.105.2"; 24 + version = "39.42.4"; 24 25 25 26 src = fetchFromGitHub { 26 27 owner = "renovatebot"; 27 28 repo = "renovate"; 28 - rev = "refs/tags/${finalAttrs.version}"; 29 - hash = "sha256-gF8bxzNF1AUJJDxFdNfa+sr/TP0S4uLCXyu3tjRuBjc="; 29 + tag = finalAttrs.version; 30 + hash = "sha256-M1QzvYMrs39ELc2tkazwDPbCPHqfqzde2hbMvg34m0A="; 30 31 }; 31 32 32 33 postPatch = '' ··· 39 40 nodejs 40 41 pnpm_9.configHook 41 42 python3 43 + yq-go 42 44 ] ++ lib.optional stdenv'.hostPlatform.isDarwin xcbuild; 43 45 44 46 pnpmDeps = pnpm_9.fetchDeps { 45 47 inherit (finalAttrs) pname version src; 46 - hash = "sha256-AdNleEe1wVBfhhoM6xit06ql1xEz/TLhZ7qpofwQ874="; 48 + hash = "sha256-14E1v2HLFdbkxFnSPQnuwb+zyPXaczAp1Ab0EC65luc="; 47 49 }; 48 50 49 51 env.COREPACK_ENABLE_STRICT = 0; ··· 51 53 buildPhase = 52 54 '' 53 55 runHook preBuild 56 + 57 + # relax nodejs version 58 + yq '.engines.node = "${nodejs.version}"' -i package.json 54 59 55 60 pnpm build 56 61 pnpm prune --prod --ignore-scripts
+4
pkgs/top-level/all-packages.nix
··· 10659 10659 librdf_redland = callPackage ../development/libraries/librdf/redland.nix { }; 10660 10660 redland = librdf_redland; # added 2018-04-25 10661 10661 10662 + renovate = callPackage ../by-name/re/renovate/package.nix { 10663 + nodejs = nodejs_22; 10664 + }; 10665 + 10662 10666 qradiolink = callPackage ../applications/radio/qradiolink { 10663 10667 protobuf = protobuf_21; 10664 10668 };