Commit Graph

618 Commits

Author SHA1 Message Date
nixpkgs-ci[bot]
48eb8a54be Merge staging-next into staging 2026-08-16 12:05:42 +00:00
Gaetan Lepage
da18f5a1e3 exo: add CVE-2026-14738 to meta.knownVulnerabilities 2026-08-16 10:01:28 +00:00
nixpkgs-ci[bot]
4e766c9455 Merge staging-next into staging 2026-08-15 12:05:27 +00:00
nixpkgs-ci[bot]
8d87dfbd2e exfatprogs: 1.4.2 -> 1.4.3 (#552570) 2026-08-15 09:22:39 +00:00
Stefan Frijters
a21fad0cd0 expat: enable structuredAttrs (#551856) 2026-08-14 12:39:43 +00:00
nixpkgs-ci[bot]
eb2be877ac Merge staging-next into staging 2026-08-14 12:17:43 +00:00
R. Ryantm
18082eb0b9 exfatprogs: 1.4.2 -> 1.4.3 2026-08-14 07:10:39 +00:00
Fabian Affolter
5a0ab49a20 exploitdb: 2026-08-11 -> 2026-08-12
Diff: https://gitlab.com/exploit-database/exploitdb/-/compare/2026-08-11...2026-08-12
2026-08-14 09:07:21 +02:00
nixpkgs-ci[bot]
a7c9597ad3 Merge staging-next into staging 2026-08-12 18:18:48 +00:00
Stefan Frijters
9c7408f772 expat: enable structuredAttrs 2026-08-12 13:53:57 +02:00
Felix Albrigtsen
8f2e158718 ext4fuse: drop 2026-08-12 10:26:46 +02:00
nixpkgs-ci[bot]
acaca82545 Merge staging-next into staging 2026-08-12 00:21:23 +00:00
Gaetan Lepage
2f59d25ece exegol: 5.1.10 -> 5.1.11
Diff: https://github.com/ThePorgs/Exegol/compare/5.1.10...5.1.11

Changelog: https://github.com/ThePorgs/Exegol/releases/tag/5.1.11
2026-08-11 22:57:50 +00:00
Sandro
5a0678288e expat: 2.8.2 -> 2.8.3 (#551327) 2026-08-11 22:16:16 +00:00
R. Ryantm
5fdcfa352a exploitdb: 2026-07-09 -> 2026-08-11 2026-08-11 12:57:41 +00:00
whispers
49076b4ec8 expat: 2.8.2 -> 2.8.3
changelog: https://github.com/libexpat/libexpat/blob/R_2_8_3/expat/Changes
diff: https://github.com/libexpat/libexpat/compare/R_2_8_2...R_2_8_3

Fixes: CVE-2026-72522
2026-08-11 07:56:26 -04:00
Weijia Wang
746d8e0c3c jrl-cmakemodules: run tests + add passthru helpers, cmake-parser: init at v0.9.2, jrl-cmakemodules-scripts: init at v2.1.0 (#539525) 2026-08-03 22:07:49 +00:00
Marie Ramlow
9dfe6d2bb7 treewide: remove hallucinated npmDepsFetcherVersion 3 (#548225) 2026-08-02 15:59:17 +00:00
Gaetan Lepage
d31247c448 exo: enable __structuredAttrs, fix build 2026-08-01 22:33:38 +00:00
Marie Ramlow
c97d2b5476 exo: use npmDepsFetcherVersion 2
There is no version 3 yet, hashes will break in the future if we add a
new version.
2026-08-01 23:25:12 +02:00
R. Ryantm
eee8e3f457 expresslrs-configurator: 1.8.2 -> 1.8.3 2026-07-31 17:24:05 +00:00
nixpkgs-ci[bot]
55536aaf07 explo: 1.1.2 -> 1.1.3 (#546876) 2026-07-29 00:54:32 +00:00
R. Ryantm
7233f75959 explo: 1.1.2 -> 1.1.3 2026-07-28 23:33:56 +00:00
Sam Pointon
bd6051aa5f systems: also rename pkgsCross.wasi32, leaving aliases 2026-07-28 19:50:03 +01:00
Sam Pointon
629b4ee093 systems: rename extant wasi targets to wasip1
Wasi P2 is different enough to Wasi P1 to warrant being treated entirely 
separately, rather than as two minor variants of the same thing. P3 will 
likewise want to be a different target.

I've left aliases in place; maybe eventually, those can be deprecated 
and removed. I've tested this, but it's possible there might be breakage 
somewhere (e.g., the canonical doubles for P1 have changed, though I 
can't imagine why anyone would rely on that).

Fixes https://github.com/NixOS/nixpkgs/issues/435954
2026-07-28 19:50:03 +01:00
Guilhem Saurel
ed012f795c example-robot-data: use jrl-cmakemodules docs helper 2026-07-24 20:39:17 +02:00
Nick Cao
5a397eb646 expresslrs-configurator: 1.8.1 -> 1.8.2 (#544569) 2026-07-23 19:05:36 +00:00
Thomas Gerbet
cf10be71e5 exim: 4.99.4 -> 4.99.5
Fixes GCVE-25-2026-07-45-1 and GCVE-25-2026-07-45-3.

https://code.exim.org/exim/exim/compare/exim-4.99.4...exim-4.99.5
2026-07-22 23:27:15 +02:00
R. Ryantm
a83d4a7045 expresslrs-configurator: 1.8.1 -> 1.8.2 2026-07-22 14:03:28 +00:00
Martin Weinelt
416ec98d6c expat: make version easily overridable (#543372) 2026-07-19 11:40:46 +00:00
Andrew Marshall
5c8bac0971 expat: make version easily overridable
Previously, doing e.g.

```
expat.overrideAttrs (old: {
  version = "2.8.1";
  src = old.src.overrideAttrs { hash = ""; };
})
```

would not work since `tag` was created outside `mkDerivation` using
`version`, not `finalAttrs.version`. Most sensible perhaps would be to
move it inside (e.g. `mkDerivation (finalAttrs: let tag = … in …`),
however then `nix fmt` wants to indent everything. So instead keep it
outside but make it a fn that takes the version, and always use
`finalAttrs.version`.
2026-07-18 20:52:24 -04:00
Gaétan Lepage
230871f34e python3Packages.pyiceberg: allow rich 15 (#542007) 2026-07-18 20:27:34 +00:00
Peder Bergebakken Sundt
95883016c1 exfatprogs: 1.3.2 -> 1.4.2 (#529210) 2026-07-18 17:16:20 +00:00
Sandro
5884d53f38 explo: init at 1.1.2 (#538104) 2026-07-18 16:42:10 +00:00
Jo
134518cebe treewide: avoid using singleton lists for licenses (#535754) 2026-07-15 18:25:37 +00:00
Eman Resu
ff094f60ad treewide: replace more singleton license lists 2026-07-15 14:04:39 -04:00
Sarah Clark
f4a1600ddc python3Packages.exegol: relax Pydantic dependency 2026-07-14 17:44:09 -07:00
Andreas
3cfda093b1 expresslrs-configurator: 1.7.11 -> 1.8.1
Release notes:
https://github.com/ExpressLRS/ExpressLRS-Configurator/releases/tag/v1.8.1

Drop the serialport node_gyp_bins workaround because the path is no
longer present in the 1.8.x bundle. Add the C++ runtime library to the
wrapper for the updated serialport native module.
2026-07-13 19:56:13 +02:00
Thomas Butter
cc8d9aa384 exfatprogs: 1.3.2 -> 1.4.2 2026-07-11 14:38:47 +00:00
Fabian Affolter
ed32ec460c exploitdb: 2026-07-08 -> 2026-07-09
Diff: https://gitlab.com/exploit-database/exploitdb/-/compare/2026-07-08...2026-07-09
2026-07-09 13:38:04 +02:00
Fabian Affolter
ea0880a62c exploitdb: 2026-07-07 -> 2026-07-08
Diff: https://gitlab.com/exploit-database/exploitdb/-/compare/2026-07-07...2026-07-08
2026-07-08 21:47:47 +02:00
nixpkgs-ci[bot]
f255ed405b Merge master into staging-next 2026-07-07 18:41:28 +00:00
Fabian Affolter
b84601f813 exploitdb: 2026-06-09 -> 2026-07-07
Diff: https://gitlab.com/exploit-database/exploitdb/-/compare/2026-06-09...2026-07-07
2026-07-07 10:02:42 +02:00
nixpkgs-ci[bot]
7278f467ad Merge master into staging-next 2026-07-04 12:12:59 +00:00
Mirza Arnaut
26d352eb69 explo: init at 1.1.2 2026-07-04 14:10:58 +02:00
Arne Keller
5a8120a3f9 maven: 3.9.12 -> 3.9.16 (#497416) 2026-07-04 10:50:52 +00:00
nixpkgs-ci[bot]
a692067795 Merge master into staging-next 2026-07-04 00:35:57 +00:00
dotlambda
8011aadf0e extism-js-core: mark as broken on darwin (#529484) 2026-07-03 22:18:51 +00:00
nixpkgs-ci[bot]
25e094b684 Merge master into staging-next 2026-07-03 18:28:50 +00:00
2kybe3
af24e675e5 treewide: follow some GitHub redirects for fetchFromGitHub
generated using https://git.kybe.xyz/2kybe3/nixpkgs-github-redirect

continuation of: #537889
2026-07-03 12:37:01 +02:00