Commit Graph

14248 Commits

Author SHA1 Message Date
Fabian Affolter
c6f2346239
nuclei: 3.3.3 -> 3.3.4 (#345357) 2024-09-30 01:39:52 +02:00
Weijia Wang
61e26f8c99
arti: move to by-name, modernize derivation and add rapiteanu as maintainer (#343720) 2024-09-29 23:45:34 +02:00
Fabian Affolter
2094d267df nuclei: 3.3.3 -> 3.3.4
Diff: https://github.com/projectdiscovery/nuclei/compare/refs/tags/v3.3.3...v3.3.4

Changelog: https://github.com/projectdiscovery/nuclei/releases/tag/v3.3.4
2024-09-29 22:20:12 +02:00
Fabián Heredia Montiel
9d16b34d3c
bws: 0.4.0 -> 1.0.0 (#344760) 2024-09-29 12:46:35 -06:00
Franz Pletz
cf8d66b096
gnupg24: add myself as maintainer (#345191) 2024-09-29 15:36:13 +02:00
Fabian Affolter
f3e705c70e ldeep: 1.0.66 -> 1.0.67
Diff: https://github.com/franc-pentest/ldeep/compare/refs/tags/1.0.66...1.0.67

Changelog: https://github.com/franc-pentest/ldeep/releases/tag/1.0.67
2024-09-29 12:33:15 +02:00
Ryan Omasta
0896eb4cbb cryptomator: 1.13.0 -> 1.14.1 2024-09-29 11:53:19 +02:00
Fabian Affolter
0542743ca0
trufflehog: 3.82.3 -> 3.82.6 (#344706) 2024-09-29 00:11:09 +02:00
Stig Palmquist
618239546a
gnupg24: add myself as maintainer 2024-09-29 00:08:28 +02:00
Viorel-Cătălin Răpițeanu
5136e375f2 arti: move to by-name
Move the package to the new by-name structure.
2024-09-28 23:44:36 +03:00
Fabian Affolter
1dd26e8b3a metasploit: 6.4.26 -> 6.4.28 2024-09-28 21:34:46 +02:00
Fabian Affolter
d58a5a920d trufflehog: 3.82.3 -> 3.82.6
Diff: https://github.com/trufflesecurity/trufflehog/compare/refs/tags/v3.82.3...v3.82.6

Changelog: https://github.com/trufflesecurity/trufflehog/releases/tag/v3.82.6
2024-09-28 17:28:19 +02:00
Fabian Affolter
70ec47476f
gitleaks: 8.19.2 -> 8.19.3 (#344792) 2024-09-27 15:48:36 +02:00
lassulus
b85783d75b
nuclei: 3.3.2 -> 3.3.3 (#344695) 2024-09-27 08:38:57 +02:00
R. Ryantm
8bbbfaf5f0 gitleaks: 8.19.2 -> 8.19.3 2024-09-27 03:44:39 +00:00
sdedovic
5348841262 bws: 0.4.0 -> 1.0.0 2024-09-26 18:51:31 -05:00
Weijia Wang
fea7dd698a
proxmark3: 4.18589 -> 4.18994 (#341506) 2024-09-26 23:35:12 +02:00
R. Ryantm
2a7ddf6bc1 nuclei: 3.3.2 -> 3.3.3 2024-09-26 17:13:58 +00:00
Nick Cao
437cd5436f
trufflehog: 3.82.2 -> 3.82.3 (#344304) 2024-09-25 08:28:07 -04: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
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
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
ee0928e324 ssh-to-age: 1.1.8 -> 1.1.9 2024-09-23 15:45:20 +00:00
Fabian Affolter
7198878c80 ldeep: 1.0.65 -> 1.0.66
Diff: https://github.com/franc-pentest/ldeep/compare/refs/tags/1.0.65...1.0.66

Changelog: https://github.com/franc-pentest/ldeep/releases/tag/1.0.66
2024-09-23 08:09:28 +02:00
Nick Cao
02c3ee572f
kubernetes-polaris: 9.3.0 -> 9.4.0 (#343691) 2024-09-22 10:00:47 -04:00
R. Ryantm
ca1d3ef5db kubernetes-polaris: 9.3.0 -> 9.4.0 2024-09-22 10:03:17 +00:00
R. Ryantm
4ff0c74a53 sslscan: 2.1.4 -> 2.1.5 2024-09-22 02:40:18 +00:00
Nick Cao
32926bd4ac
gitleaks: 8.19.0 -> 8.19.2 (#343463) 2024-09-21 09:55:45 -04:00
Nick Cao
3ba4f174df
graphw00f: 1.1.17 -> 1.1.18 (#343431) 2024-09-21 09:43:18 -04:00
Fabian Affolter
1f24291cc9 gitleaks: 8.19.0 -> 8.19.2
Diff: https://github.com/zricethezav/gitleaks/compare/refs/tags/v8.19.0...v8.19.2

Changelog: https://github.com/zricethezav/gitleaks/releases/tag/v8.19.2
2024-09-21 11:01:14 +02:00
Fabian Affolter
48991cb789
graphw00f: refactor 2024-09-21 10:57:40 +02:00
OTABI Tomoya
972ad9e8c3
bitwarden-directory-connector: 2024.3.2 -> 2024.9.0 (#339940) 2024-09-21 15:49:40 +09:00
R. Ryantm
926d62deca graphw00f: 1.1.17 -> 1.1.18 2024-09-21 05:41:32 +00:00
Fabian Affolter
bfbcbce1cb
ldeep: 1.0.63 -> 1.0.65 (#343098) 2024-09-20 08:01:40 +02:00
Peder Bergebakken Sundt
cf60e05243
arti: 1.2.6 -> 1.2.7 (#342418) 2024-09-19 21:51:27 +02:00
Fabian Affolter
87c71392cf ldeep: 1.0.63 -> 1.0.65
Diff: https://github.com/franc-pentest/ldeep/compare/refs/tags/1.0.63...1.0.65

Changelog: https://github.com/franc-pentest/ldeep/releases/tag/1.0.65
2024-09-19 20:54:34 +02:00