Robert Schütz
b8ea1b24bb
python3Packages.mistune: use finalAttrs
2026-07-15 10:12:05 -07:00
Alyssa Ross and GitHub
1aa365ef50
llvm_22: pick patch for selectiondag freeze condition miscompile ( #542255 )
2026-07-15 15:00:55 +00:00
whispers
28e4505698
llvm: add comment about backport selectiondag miscompile fix
2026-07-15 10:32:24 -04:00
whispers
4f7c60edb1
llvm_22: pick patch for selectiondag freeze condition miscompile
...
see https://github.com/NixOS/nixpkgs/commit/f8a025c9646e61bc992f4f3d76dd4193d749f417 .
this commit backports that same change to LLVM 22. the fix is not
available upstream since LLVM 22 is EOL, but we can pick the patch
from the Rust fork of LLVM, as that is currently on version 22.1.
2026-07-15 10:32:24 -04:00
nixpkgs-ci[bot] and GitHub
f43268fdd6
Merge master into staging-next
2026-07-15 12:30:08 +00:00
Austin Seipp and GitHub
a84be33b3b
verilator: 5.048 -> 5.050 ( #542186 )
2026-07-15 12:24:56 +00:00
Vladimír Čunát and GitHub
f6d71a2780
python3Packages.python3-eventlib: fix build of blink-qt ( #538696 )
2026-07-15 12:23:06 +00:00
Nikolay Korotkiy and GitHub
190494439b
simplotask: 1.20.0 -> 1.20.1 ( #542163 )
2026-07-15 12:19:29 +00:00
Adam C. Stephens and GitHub
420a4a58db
pi-coding-agent: 0.80.6 -> 0.80.7 ( #541891 )
2026-07-15 12:16:25 +00:00
Yohann Boniface and GitHub
2fb3cabbd0
python3Packages.datefinder: migrate to pyproject ( #542074 )
2026-07-15 12:15:06 +00:00
Martin Weinelt and GitHub
0a14da7c37
home-assistant-custom-components.systemair: 1.0.28 -> 1.0.29 ( #542176 )
2026-07-15 12:09:12 +00:00
Janne Heß and GitHub
0041c70d82
switch-to-configuration-ng: Die less ( #541424 )
2026-07-15 12:04:01 +00:00
Yohann Boniface and GitHub
e344203a04
python3Packages.utils: migrate to pyproject ( #542080 )
2026-07-15 12:01:17 +00:00
Yohann Boniface and GitHub
b34414aec2
python3Packages.vcversioner: migrate to pyproject ( #542087 )
2026-07-15 12:00:33 +00:00
nixpkgs-ci[bot] and GitHub
f9eec585db
supabase-cli: 2.109.0 -> 2.109.1 ( #542205 )
2026-07-15 11:58:02 +00:00
Alyssa Ross and GitHub
cdcdca044b
virtiofsd: 1.13.3 -> 1.14.0 ( #539115 )
2026-07-15 11:52:58 +00:00
Alyssa Ross and GitHub
b066e66ff7
llvm_21: backport patch for selectiondag freeze condition miscompile ( #542049 )
2026-07-15 11:47:18 +00:00
Peder Bergebakken Sundt and GitHub
d1cf7134c5
bazarr: package from source ( #540070 )
2026-07-15 11:43:59 +00:00
Martin Weinelt and GitHub
35d3407a38
nixos/networkd-dispatcher: fix warning to actually be correct ( #542203 )
2026-07-15 11:37:32 +00:00
Alyssa Ross and GitHub
cfa7d6949d
wordnet: make use of lib.licenses.wordnet ( #540729 )
2026-07-15 11:36:44 +00:00
Alyssa Ross and GitHub
774a1363f6
buddy: change license to lib.licenses.buddy ( #540731 )
2026-07-15 11:36:02 +00:00
Stefan Frijters and GitHub
67749b1dde
authentik: unpin structlog in django-{channels,dramatiq}-postgres ( #541860 )
2026-07-15 11:32:34 +00:00
Nikolay Korotkiy and GitHub
48aef9b14c
ralphex: 1.5.1 -> 1.6.0 ( #541851 )
2026-07-15 11:28:42 +00:00
K900
17d6e0648b
nixos/networkd-dispatcher: fix warning to actually be correct
2026-07-15 14:25:56 +03:00
R. Ryantm
5dcfb7a710
supabase-cli: 2.109.0 -> 2.109.1
2026-07-15 11:23:26 +00:00
Peder Bergebakken Sundt and GitHub
bb232eb630
python3Packages.starlette-admin: 0.16.1 -> 0.17.0 ( #542008 )
2026-07-15 11:20:50 +00:00
Peder Bergebakken Sundt and GitHub
d86d5e157f
fflogs: drop ( #538249 )
2026-07-15 11:19:17 +00:00
nixpkgs-ci[bot] and GitHub
3bba2ef9e8
dcp: 0.25.2 -> 0.25.5 ( #542002 )
2026-07-15 11:18:37 +00:00
nixpkgs-ci[bot] and GitHub
b54dd00c3c
cargo-feature-combinations: 0.2.3 -> 0.3.0 ( #541991 )
2026-07-15 11:18:32 +00:00
nixpkgs-ci[bot] and GitHub
5a3b888145
firefly-iii-data-importer: 2.3.2 -> 2.3.4 ( #538649 )
2026-07-15 11:18:16 +00:00
whispers
f8a025c964
llvm_21: backport patch for selectiondag freeze condition miscompile
...
Several LLVM versions have a bug in SelectionDAG that causes
miscompilations around conditional poisions. This was exposed due to
Rust 1.97.0 exercising the involved code path heavily and generating
segfaulting code, but the bug existed beforehand as well. The patch was
made to LLVM 23, but the tests have many conflicts, so this is a manual
backport. This backport was made by:
- applying the code change to `llvm/lib`
- hand-updating `test/CodeGen/Mips/cmov.ll` with the same diff as the PR
- updating the rest with `utils/update_llc_test_checks.py` from the LLVM
source tree, and verifying the diff against the one in the PR.
The last step made this a rather large and gnarly patch, but it's mostly
mechanical.
Rust issue: https://github.com/rust-lang/rust/issues/159035
LLVM issue: https://github.com/llvm/llvm-project/issues/208611
LLVM PR: https://github.com/llvm/llvm-project/pull/208683
2026-07-15 07:16:19 -04:00
Thiago Kenji Okada and GitHub
9a44f10f43
libretro.prboom: 0-unstable-2026-07-01 -> 0-unstable-2026-07-07 ( #542048 )
2026-07-15 11:13:22 +00:00
Thiago Kenji Okada and GitHub
fe5d9e758c
libretro.opera: 0-unstable-2026-06-28 -> 0-unstable-2026-07-13 ( #542027 )
2026-07-15 11:13:13 +00:00
Emily and GitHub
d6742e0de1
openbao: 2.5.5 -> 2.6.0 ( #541922 )
2026-07-15 11:00:49 +00:00
zowoq and GitHub
140624b4e3
terraform-providers.rootlyhq_rootly: 5.16.1 -> 5.17.2 ( #542139 )
2026-07-15 11:00:33 +00:00
nixpkgs-ci[bot] and GitHub
dbe795129f
filtr: 1.2.0 -> 1.3.0 ( #542172 )
2026-07-15 10:43:36 +00:00
isabel and GitHub
05995cf8c1
vlang: 0.5.1 -> 0.5.2 ( #542168 )
2026-07-15 10:36:48 +00:00
user.name
ca62b9d68e
verilator: 5.048 -> 5.050
2026-07-15 12:13:23 +02:00
Bruno BELANYI and GitHub
2232ce6058
markdownlint-cli: 0.49.0 -> 0.49.1 ( #542003 )
2026-07-15 10:05:20 +00:00
nixpkgs-ci[bot] and GitHub
a692e80fe1
owmods-cli: 0.15.5 -> 0.15.7 ( #542062 )
2026-07-15 09:58:32 +00:00
nixpkgs-ci[bot] and GitHub
608fb92859
copilot-language-server: 1.517.0 -> 1.521.0 ( #542039 )
2026-07-15 09:58:23 +00:00
Nikita Uvarov
54d0774e46
home-assistant-custom-components.systemair: 1.0.28 -> 1.0.29
...
Add missing dependencies and enable tests.
2026-07-15 11:50:16 +02:00
R. Ryantm
f15dd47f06
filtr: 1.2.0 -> 1.3.0
2026-07-15 09:35:37 +00:00
Arne Keller and GitHub
f11dc4aa75
six-sines: 1.1.0 -> 1.2.0 ( #541961 )
2026-07-15 09:26:23 +00:00
Gerhard Schwanzer
ed4e602d7f
vlang: 0.5.1 -> 0.5.2
...
https://github.com/vlang/v/releases/tag/0.5.2
Use nixpkgs SQLite for the new vbug-report and vsqlite tools, and install v.mod for modules using @VMODROOT.
Assisted-by: pi coding agent / Mika (OpenAI gpt-5.6-sol)
2026-07-15 11:24:42 +02:00
Pol Dellaiera and GitHub
c097968942
thunderbird-mcp: 0.7.3 -> 0.7.4 ( #542159 )
2026-07-15 09:05:51 +00:00
R. Ryantm
a8d7e40420
simplotask: 1.20.0 -> 1.20.1
2026-07-15 08:47:34 +00:00
Matthieu Coudron and GitHub
fae0dd09d1
wl-find-cursor: init at 0-unstable-2026-02-03 ( #504085 )
2026-07-15 08:44:36 +00:00
Gerhard Schwanzer
e34d105f0a
thunderbird-mcp: 0.7.3 -> 0.7.4
...
https://github.com/TKasperczyk/thunderbird-mcp/releases/tag/v0.7.4
Assisted-by: pi coding agent / Mika (OpenAI gpt-5.6-sol)
2026-07-15 10:40:32 +02:00
Jo and GitHub
362f7c3865
tree-sitter-grammars.tree-sitter-linkerscript: init at 1.0.0 ( #541950 )
2026-07-15 08:30:29 +00:00