Skip to content

Commit 75d54b4

Browse files
authored
renovate: 38.105.2 -> 39.42.4 (#361090)
2 parents b32a094 + b3392e7 commit 75d54b4

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

nixos/doc/manual/release-notes/rl-2505.section.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@
6262

6363
- `fluxus` has been removed, as it depends on `racket_7_9` and had no updates in 9 years.
6464

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+
6568
- 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.
6669

6770
- `nodePackages.meshcommander` has been removed, as the package was deprecated by Intel.

pkgs/by-name/re/renovate/package.nix

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
xcbuild,
1212
nixosTests,
1313
nix-update-script,
14+
yq-go,
1415
}:
1516

1617
let
@@ -20,13 +21,13 @@ let
2021
in
2122
stdenv'.mkDerivation (finalAttrs: {
2223
pname = "renovate";
23-
version = "38.105.2";
24+
version = "39.42.4";
2425

2526
src = fetchFromGitHub {
2627
owner = "renovatebot";
2728
repo = "renovate";
28-
rev = "refs/tags/${finalAttrs.version}";
29-
hash = "sha256-gF8bxzNF1AUJJDxFdNfa+sr/TP0S4uLCXyu3tjRuBjc=";
29+
tag = finalAttrs.version;
30+
hash = "sha256-M1QzvYMrs39ELc2tkazwDPbCPHqfqzde2hbMvg34m0A=";
3031
};
3132

3233
postPatch = ''
@@ -39,11 +40,12 @@ stdenv'.mkDerivation (finalAttrs: {
3940
nodejs
4041
pnpm_9.configHook
4142
python3
43+
yq-go
4244
] ++ lib.optional stdenv'.hostPlatform.isDarwin xcbuild;
4345

4446
pnpmDeps = pnpm_9.fetchDeps {
4547
inherit (finalAttrs) pname version src;
46-
hash = "sha256-AdNleEe1wVBfhhoM6xit06ql1xEz/TLhZ7qpofwQ874=";
48+
hash = "sha256-14E1v2HLFdbkxFnSPQnuwb+zyPXaczAp1Ab0EC65luc=";
4749
};
4850

4951
env.COREPACK_ENABLE_STRICT = 0;
@@ -52,6 +54,9 @@ stdenv'.mkDerivation (finalAttrs: {
5254
''
5355
runHook preBuild
5456
57+
# relax nodejs version
58+
yq '.engines.node = "${nodejs.version}"' -i package.json
59+
5560
pnpm build
5661
pnpm prune --prod --ignore-scripts
5762
''

pkgs/top-level/all-packages.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10659,6 +10659,10 @@ with pkgs;
1065910659
librdf_redland = callPackage ../development/libraries/librdf/redland.nix { };
1066010660
redland = librdf_redland; # added 2018-04-25
1066110661

10662+
renovate = callPackage ../by-name/re/renovate/package.nix {
10663+
nodejs = nodejs_22;
10664+
};
10665+
1066210666
qradiolink = callPackage ../applications/radio/qradiolink {
1066310667
protobuf = protobuf_21;
1066410668
};

0 commit comments

Comments
 (0)