Nick Cao
564d413467
jumppad: 0.13.3 -> 0.14.0 ( #344386 )
2024-09-25 09:01:53 -04:00
Nick Cao
437cd5436f
trufflehog: 3.82.2 -> 3.82.3 ( #344304 )
2024-09-25 08:28:07 -04:00
Nick Cao
9f51145619
granted: 0.33.0 -> 0.34.0 ( #344279 )
2024-09-25 08:23:03 -04:00
OTABI Tomoya
4f31540079
ibus-engines.typing-booster-unwrapped: 2.25.15 -> 2.25.16 ( #342862 )
2024-09-25 21:08:18 +09:00
OTABI Tomoya
96c8726cf0
afterburn: 5.6.0 -> 5.7.0 ( #342919 )
2024-09-25 20:22:33 +09:00
R. Ryantm
6f7e60eadc
jumppad: 0.13.3 -> 0.14.0
2024-09-25 08:12:53 +00:00
Fabian Affolter
5c942a7f07
cnspec: 11.19.0 -> 11.23.0 ( #344281 )
2024-09-25 10:06:47 +02:00
Fabian Affolter
a3eabb5789
gowitness: 2.5.1 -> 3.0.3 ( #344296 )
2024-09-25 10:06:37 +02:00
Fabian Affolter
765928deb5
ares-rs: 0.9.0 -> 0.10.0 ( #344280 )
2024-09-25 09:07:41 +02:00
Fabian Affolter
38de8fcabc
cyclonedx-gomod: 1.7.0 -> 1.8.0 ( #344288 )
2024-09-25 09:07:29 +02:00
Fabian Affolter
114bbb63eb
gotestwaf: 0.4.19 -> 0.5.5 ( #344286 )
2024-09-25 09:07:15 +02:00
Fabian Affolter
c153756ce9
ggshield: 1.31.0 -> 1.32.0 ( #344283 )
2024-09-25 09:05:35 +02:00
OTABI Tomoya
2958fa2daf
rpm-ostree: 2024.7 -> 2024.8 ( #341958 )
2024-09-25 12:05:52 +09:00
OTABI Tomoya
917018452c
muffet: 2.10.2 -> 2.10.3 ( #342084 )
2024-09-25 11:57:20 +09:00
Philip Taron
75f804420d
treewide: use finalAttrs.finalPackage in testers.testVersion ( #342431 )
2024-09-24 15:56:53 -07:00
Nick Cao
afcc88b055
tunwg: 24.01.15+9f04d73 -> 24.09.18+760ee81 ( #342942 )
2024-09-24 18:35:03 -04:00
Nick Cao
0ecffd6c3f
drawterm: 0-unstable-2024-09-08 -> 0-unstable-2024-09-09 ( #343255 )
2024-09-24 18:22:24 -04:00
Nick Cao
a10dbbe70b
pulumi-bin: 3.133.0 -> 3.134.0 ( #344200 )
2024-09-24 18:05:07 -04:00
Nick Cao
016f0de8b3
markdownlint-cli: 0.41.0 -> 0.42.0 ( #344224 )
2024-09-24 18:01:20 -04:00
Nick Cao
91f81980db
ansible-lint: 24.9.0 -> 24.9.2 ( #344129 )
2024-09-24 18:00:03 -04:00
Peder Bergebakken Sundt
4865536f92
pmacct: use finalAttrs.finalPackage
2024-09-24 23:28:56 +02:00
Peder Bergebakken Sundt
eba30179f4
gummy: use finalAttrs.finalPackage
2024-09-24 23:28:54 +02:00
Peder Bergebakken Sundt
57002b84d2
donkey: use finalAttrs.finalPackage
2024-09-24 23:28:54 +02:00
Peder Bergebakken Sundt
82ada5c114
dieharder: use finalAttrs.finalPackage
2024-09-24 23:28:54 +02:00
Peder Bergebakken Sundt
13cd33392a
datefmt: use finalAttrs.finalPackage
2024-09-24 23:28:53 +02:00
Peder Bergebakken Sundt
1cbae1f817
crowdin-cli: use finalAttrs.finalPackage
2024-09-24 23:28:51 +02:00
Artturin
63fa53d97c
treewide: reformat files which need reformatting after
...
`treewide: replace stdenv.is with stdenv.hostPlatform.is`
2024-09-25 00:04:39 +03: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
R. Ryantm
b87ecab269
trufflehog: 3.82.2 -> 3.82.3
2024-09-24 20:36:46 +00:00
Fabian Affolter
29a0baf707
gowitness: 2.5.1 -> 3.0.3
...
Changelog: https://github.com/sensepost/gowitness/releases/tag/3.0.3
2024-09-24 22:16:46 +02:00
Fabian Affolter
e3675ab2ec
cyclonedx-gomod: 1.7.0 -> 1.8.0
...
Diff: https://github.com/CycloneDX/cyclonedx-gomod/compare/refs/tags/v1.7.0...v1.8.0
Changelog: https://github.com/CycloneDX/cyclonedx-gomod/releases/tag/v1.8.0
2024-09-24 21:53:25 +02:00
Fabian Affolter
1b1ad08cdb
gotestwaf: 0.4.19 -> 0.5.5
...
Diff: https://github.com/wallarm/gotestwaf/compare/refs/tags/v0.4.19...v0.5.5
Changelog: https://github.com/wallarm/gotestwaf/releases/tag/v0.5.5
2024-09-24 21:47:31 +02:00
Fabian Affolter
3500285c75
ggshield: 1.31.0 -> 1.32.0
...
Diff: https://github.com/GitGuardian/ggshield/compare/refs/tags/v1.31.0...v1.32.0
Changelog: https://github.com/GitGuardian/ggshield/blob/1.32.0/CHANGELOG.md
2024-09-24 21:36:46 +02:00
Fabian Affolter
dc326aed05
cnspec: 11.19.0 -> 11.23.0
...
Diff: https://github.com/mondoohq/cnspec/compare/refs/tags/v11.19.0...v11.23.0
Changelog: https://github.com/mondoohq/cnspec/releases/tag/v11.23.0
2024-09-24 21:35:30 +02:00
Fabian Affolter
cd6f445a71
ares-rs: 0.9.0 -> 0.10.0
...
Diff: https://github.com/bee-san/ares/compare/refs/tags/0.9.0...v0.10.0
Changelog: https://github.com/bee-san/Ares/releases/tag/v0.10.0
2024-09-24 21:25:49 +02:00
R. Ryantm
7a650b2e9c
granted: 0.33.0 -> 0.34.0
2024-09-24 19:19:28 +00:00
Robert Schütz
d3e7f568fb
esptool: 4.7.0 -> 4.8.0 ( #342885 )
2024-09-24 11:19:13 -07:00
Julien Malka
a630e6e946
rtz: 0.7.0 → 0.7.1 ( #343066 )
2024-09-24 20:08:18 +02:00
R. Ryantm
34c68eb443
markdownlint-cli: 0.41.0 -> 0.42.0
2024-09-24 14:28:56 +00:00
Arseniy Zorin
e948462c1d
pulumi-bin: 3.133.0 -> 3.134.0
2024-09-24 15:32:27 +03:00
Masum Reza
7e8303600d
gnugrep: fix eval on windows ( #344164 )
2024-09-24 17:14:03 +05:30
Yt
d026e3fa1a
immich: init at 1.115.0; nixos/immich: init module ( #324127 )
2024-09-24 05:56:12 -04:00
Jörg Thalheim
88ae0a7191
gnugrep: fix eval on windows
2024-09-24 10:59:23 +02:00
R. Ryantm
3756dd83dd
ansible-lint: 24.9.0 -> 24.9.2
2024-09-24 04:55:13 +00:00
Robert Schütz
cb876f18c5
nbqa: add passthru.withTools ( #343632 )
2024-09-23 20:07:24 -07:00
Franz Pletz
81c2eef9bc
wget: fix build on sandboxed Darwin ( #343815 )
2024-09-24 00:48:02 +02:00
Jan van Brügge
f2ff5dc267
immich-cli: 2.2.15 -> 2.2.19
2024-09-23 22:38:01 +02:00
Jörg Thalheim
c1210c2786
ssh-to-age: 1.1.8 -> 1.1.9 ( #343987 )
2024-09-23 21:27:48 +02:00
R. Ryantm
ee0928e324
ssh-to-age: 1.1.8 -> 1.1.9
2024-09-23 15:45:20 +00:00
Damien Cassou
d266adc5a7
crowdin-cli: 4.1.2 -> 4.2.0 ( #343957 )
2024-09-23 17:22:35 +02:00