···402402403403- Suricata was upgraded from 6.0 to 7.0 and no longer considers HTTP/2 support as experimental, see [upstream release notes](https://forum.suricata.io/t/suricata-7-0-0-released/3715) for more details.
404404405405+- Cloud support in the `netdata` package is now disabled by default. To enable it use the `netdataCloud` package.
406406+405407- `networking.nftables` now has the option `networking.nftables.table.<table>` to create tables
406408 and have them be updated atomically, instead of flushing the ruleset.
407409
···195195 .wrap_err_with(|| format!("failed to resolve symlink of {:?}", source))?;
196196197197 // Create the link, then push its target to the queue
198198- if !target.exists() {
198198+ if !target.exists() && !target.is_symlink() {
199199 unix::fs::symlink(&link_target, &target).wrap_err_with(|| {
200200 format!("failed to symlink {:?} to {:?}", link_target, target)
201201 })?;
···1313}:
14141515buildPythonPackage rec {
1616- inherit (duckdb) pname version src patches;
1616+ inherit (duckdb) pname version src;
1717 format = "setuptools";
18181919- postPatch = ''
1919+ # 1. let nix control build cores
2020+ # 2. default to extension autoload & autoinstall disabled
2121+ # 3. unconstrain setuptools_scm version
2222+ patches = (duckdb.patches or []) ++ [ ./setup.patch ];
2323+2424+ postPatch = (duckdb.postPatch or "") + ''
2025 # we can't use sourceRoot otherwise patches don't apply, because the patches apply to the C++ library
2126 cd tools/pythonpkg
22272323- # 1. let nix control build cores
2424- # 2. unconstrain setuptools_scm version
2525- substituteInPlace setup.py \
2626- --replace "multiprocessing.cpu_count()" "$NIX_BUILD_CORES"
2828+ substituteInPlace setup.py --subst-var NIX_BUILD_CORES
27292830 # avoid dependency on mypy
2931 rm tests/stubs/test_stubs.py
···5456 disabledTests = [
5557 # tries to make http request
5658 "test_install_non_existent_extension"
5959+ # test is racy and interrupt can be delivered before or after target point
6060+ "test_connection_interrupt"
5761 ];
58625963 preCheck = ''