Nick Cao and GitHub
0ff0333dfa
bootstrap-studio: 6.7.2 -> 6.7.3 ( #348728 )
2024-10-15 13:26:32 -04:00
R. Ryantm
e5d0387e74
bootstrap-studio: 6.7.2 -> 6.7.3
2024-10-15 08:04:25 +00:00
R. Ryantm
9ca57b2457
newman: 6.1.3 -> 6.2.1
2024-10-15 05:05:34 +00:00
github-actions[bot] and GitHub
4433a315bd
Merge master into staging-next
2024-10-12 12:05:08 +00:00
Fabián Heredia Montiel
ccec93c1c7
treewide: replace webkitgtk to webkitgtk_4_0
...
sed -i 's/ webkitgtk\b/ webkitgtk_4_0/g' pkgs/**.nix
sed -i 's/(webkitgtk\b/(webkitgtk_4_0/g' pkgs/**.nix
sed -i 's/\.webkitgtk\b/.webkitgtk_4_0/g' pkgs/**.nix
webkitgtk is currently pointing to that specific ABI version but the
alias is going to start warning
2024-10-11 17:23:43 -06:00
Vladimír Čunát
a0c9222e11
Merge branch 'master' into staging-next
...
(a bit older master for now, due to a conflict in dhcpcd service)
2024-10-08 14:59:47 +02:00
Raghav Sood and GitHub
509b099fd4
flyctl: 0.3.10 -> 0.3.15 ( #347165 )
2024-10-08 16:44:30 +08:00
Emily
df769e85f3
Merge master into staging-next
2024-10-08 01:23:55 +01:00
R. Ryantm
813369f502
flyctl: 0.3.10 -> 0.3.15
2024-10-07 20:05:38 +00:00
R. Ryantm and Bjørn Forsman
5edc9a24b0
grails: 6.1.2 -> 6.2.1
2024-10-07 21:48:04 +02:00
K900
0846895fc6
Merge remote-tracking branch 'origin/master' into staging-next
2024-10-07 21:08:55 +03:00
Philip Taron
72c938e77a
playwright-driver: fix eval on Nix 2.3
2024-10-07 08:55:30 -07:00
Randy Eckenrode
887a9ba50a
nodejs: suppress failing test on x86_64-darwin
2024-10-06 09:49:21 -04:00
Antoine du Hamel
80cb07c14e
nodejs_22: 22.8.0 -> 22.9.0
2024-10-04 10:43:42 +02:00
K900
b29cb6c1f9
Merge remote-tracking branch 'origin/master' into staging-next
2024-09-30 20:23:25 +03:00
R. Ryantm
fdf1280a92
flyctl: 0.3.6 -> 0.3.10
2024-09-29 22:57:18 +00:00
github-actions[bot] and GitHub
080ddac139
Merge master into staging-next
2024-09-29 00:15:45 +00:00
Matthieu C.
174479d040
playwright-driver.browsers: expose raw fontconfig file
2024-09-28 22:35:28 +02:00
github-actions[bot] and GitHub
9badc90a26
Merge master into staging-next
2024-09-28 00:13:56 +00:00
Artturin
976e5387d2
treewide: Fix error: makeWrapper/makeShellWrapper must be in nativeBuildInputs
...
On cross
2024-09-27 18:48:26 +03:00
Emily and GitHub
fd671be017
nodejs: skip some TLS tests on 20.x and 18.x ( #344086 )
2024-09-26 16:04:21 +01:00
github-actions[bot] and GitHub
57b5c92d8e
Merge master into staging-next
2024-09-26 00:13:55 +00:00
Antoine du Hamel and Fabián Heredia Montiel
e005e5d99f
nodejs: add missing patches and skip some TLS tests on 20.x and 18.x
...
Co-authored-by: Fabián Heredia Montiel <fabianhjr@protonmail.com >
2024-09-26 00:00:56 +02:00
Austin Horstman and Gaétan Lepage
cadf53ea4d
deno: move to by-name
2024-09-25 22:05:11 +02:00
Austin Horstman and Gaétan Lepage
8a7af3824a
deno: format
2024-09-25 22:05:11 +02:00
Fabián Heredia Montiel and GitHub
a1dfa5ac0d
cypress: add support for aarch64 on darwin ( #342798 )
2024-09-25 12:42:09 -06:00
kolaente
7f4dd46fab
cypress: add support for aarch64 on darwin
2024-09-25 17:23:30 +02:00
Artturin
f0e657f3b1
Merge branch 'master' into staging-next
2024-09-25 06:05:01 +03:00
Nick Cao and GitHub
210a5474f2
insomnia: 9.0.0 -> 10.0.0 ( #344201 )
2024-09-24 21:48:02 -04:00
Artturin
e0464e4788
treewide: replace stdenv.is with stdenv.hostPlatform.is
...
In preparation for the deprecation of `stdenv.isX`.
These shorthands are not conducive to cross-compilation because they
hide the platforms.
Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way
One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059
There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.
```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
eymeric
2aea8cf19d
insomnia: 9.0.0 -> 10.0.0
2024-09-24 14:35:13 +02:00
Antoine du Hamel
59777cc547
nodejs: fix tests for OpenSSL 3.2
2024-09-22 21:26:13 +02:00
github-actions[bot] and GitHub
94770996ae
Merge master into staging-next
2024-09-22 00:15:32 +00:00
Emily and GitHub
64efdfcc37
nodejs: disable failing network tests ( #343541 )
2024-09-21 21:01:48 +01:00
Matthieu Coudron and GitHub
a6df665571
Playwright: browser improvements, update ( #298944 )
2024-09-21 21:50:25 +02:00
Fabián Heredia Montiel
b37957f41e
nodejs: disable failing network tests
...
https://hydra.nixos.org/build/273305124/nixlog/1
2024-09-21 11:19:06 -06:00
github-actions[bot] and GitHub
754402a237
Merge staging-next into staging
2024-09-21 00:13:41 +00:00
Nick Cao and GitHub
6edbe42aa0
bun: 1.1.27 -> 1.1.29 ( #343120 )
2024-09-20 16:32:19 -04:00
github-actions[bot] and GitHub
7fc19ff961
Merge staging-next into staging
2024-09-20 18:05:01 +00:00
phaer
67b5c21b58
playwright: Use pre-built browsers, update them...
...
via update.sh. This lets us support playwright with browsers
other than chromium on linux. Building them from source would
be one step further.
2024-09-20 14:52:35 +02:00
Weijia Wang
0cfbf76e38
bun: 1.1.27 -> 1.1.29
2024-09-20 14:04:39 +02:00
R. Ryantm
b1190a7ccc
flyctl: 0.3.1 -> 0.3.6
2024-09-20 06:25:53 +00:00
github-actions[bot] and GitHub
3aaf0938c0
Merge staging-next into staging
2024-09-17 00:12:19 +00:00
Fabián Heredia Montiel and GitHub
94de233834
python312Packages.playwright: 1.46.0 -> 1.47.0 ( #341696 )
2024-09-16 12:26:56 -06:00
github-actions[bot] and GitHub
1eb2a0e2d5
Merge staging-next into staging
2024-09-16 18:04:57 +00:00
Artturin and GitHub
931494da4b
cypress: lowercase symbolic link ( #341694 )
2024-09-16 19:31:12 +03:00
github-actions[bot] and GitHub
952947bdf8
Merge staging-next into staging
2024-09-15 18:04:54 +00:00
R. Ryantm
5f52e4273a
function-runner: 6.0.0 -> 6.2.1
2024-09-15 11:58:45 +00:00
Eric Wardner
074fd2032c
cypress: use lowercase executable
2024-09-14 17:35:21 -04:00
github-actions[bot] and GitHub
6c321f0183
Merge staging-next into staging
2024-09-14 06:04:58 +00:00