Commit Graph
1031677 Commits
Author SHA1 Message Date
R. Ryantm 1f8d45d510 jellyfin-tui: 1.5.0 -> 1.5.1 2026-07-05 17:31:56 +00:00
R. RyantmandMichael Daniels a95a7de300 flintlock: 0.8.1 -> 0.9.0 2026-07-05 13:31:16 -04:00
dish bc13a5880d python3Packages.beets-ytimport: init at 1.13.0 2026-07-05 13:27:47 -04:00
Thomas GerbetandGitHub e58be98c76 mysql84: 8.4.9 -> 8.4.10 (#533954) 2026-07-05 17:26:03 +00:00
Thomas GerbetandGitHub b58a5c28d1 docker: 29.6.0 -> 29.6.1 (#538107) 2026-07-05 17:25:44 +00:00
nixpkgs-ci[bot]andGitHub e55e3f4476 stevenblack-blocklist: 3.16.91 -> 3.16.94 (#538247) 2026-07-05 17:25:19 +00:00
R. Ryantm 080c5fa2ea valijson: 1.0.6 -> 1.1.1 2026-07-05 17:21:08 +00:00
R. RyantmandMichael Daniels 6511b07569 python3Packages.texsoup: 0.3.1 -> 0.3.3 2026-07-05 13:16:11 -04:00
Michael DanielsandGitHub da7286fd02 python3Packages.bleak: cleanup, adopt (#517078) 2026-07-05 17:06:29 +00:00
Sandro Jäckel 4169e33f03 python314Packages.fastmcp: increase very close pytest timeout
FAILED tests/server/providers/openapi/test_openapi_performance.py::TestOpenAPIPerformance::test_medium_schema_performance - AssertionError: Medium schema parsing took 2.317s, expected <1s
FAILED tests/server/auth/test_oauth_proxy_storage.py::TestOAuthProxyStorage::test_client_persists_across_proxy_instances - Failed: Timeout (>5.0s) from pytest-timeout.
FAILED tests/tools/test_standalone_decorator.py::test_component_import_works_in_fresh_interpreter[from fastmcp.tools import tool] - Failed: Timeout (>5.0s) from pytest-timeout.
FAILED tests/server/auth/providers/test_workos.py::TestWorkOSProvider::test_authkit_domain_https_prefix_handling - Failed: Timeout (>5.0s) from pytest-timeout.
FAILED tests/server/auth/test_oauth_proxy_storage.py::TestOAuthProxyStorage::test_in_memory_storage_option - Failed: Timeout (>5.0s) from pytest-timeout.
FAILED tests/server/auth/test_oauth_proxy_redirect_validation.py::TestOAuthProxyCIMDClient::test_proxy_get_client_returns_cimd_client - Failed: Timeout (>5.0s) from pytest-timeout.
FAILED tests/tools/test_standalone_decorator.py::test_component_import_works_in_fresh_interpreter[from fastmcp.server.auth.authorization import AuthCheck] - Failed: Timeout (>5.0s) from pytest-timeout.
2026-07-05 19:05:24 +02:00
R. Ryantm b27b6ac05c vscode-extensions.sysdig.sysdig-vscode-ext: 0.2.14 -> 0.2.17 2026-07-05 16:53:54 +00:00
Ryan HendricksonandMichael Daniels 705374990b python3Packages.bleak: add rhendric to maintainers 2026-07-05 12:53:47 -04:00
Ryan HendricksonandMichael Daniels 5791387933 python3Packages.bleak: reorder formals 2026-07-05 12:53:37 -04:00
Tom Oostveen f6776b4d89 neovim-unwrapped: 0.12.3 -> 0.12.4 2026-07-05 18:43:34 +02:00
Doron BeharandGitHub 787089e5e4 syncthing: 2.1.0 -> 2.1.1 (#538375) 2026-07-05 16:42:00 +00:00
Jeremy Fleischman 69b2e5e0b2 nixos/fish: programs.fish.generateCompletions fix spaces in filenames
`linux-manual` has this fun filename in it:

```console
$ find -L $(nix-build -A linux-manual) -name 'station table - introduction.9.gz'
/nix/store/q45mzaksp2ll04c363mxpyi252j6anrq-linux-manual-7.1.3/share/man/man9/station table - introduction.9.gz
```

Our `find ... | xargs ...` didn't handle this nicely, and would vomit in the
following way:

`repro.nix`:

```nix
$ cat repro.nix
let
  pkgs = import ./. { };
  nixosConfig = pkgs.nixos (
    { config, pkgs, ... }: {
      system.stateVersion = config.system.nixos.release;

      programs.fish.enable = true;
      programs.fish.generateCompletions = true;

      environment.systemPackages = [ pkgs.linux-manual ];
    }
  );
in
nixosConfig.config.environment.etc."fish/generated_completions".source
```

The crash:

```console
$ nix-build repro.nix
these 2 derivations will be built:
  /nix/store/qs213n0r723w59jdvfz5w87azd3wh405-linux-manual-7.1.3_fish-completions.drv
  /nix/store/1pwps30drz71icj5v4rdiaarmh37xcn8-system_fish-completions.drv
building '/nix/store/qs213n0r723w59jdvfz5w87azd3wh405-linux-manual-7.1.3_fish-completions.drv'...
usage: create_manpage_completions.py [-h] [-c CLEANUP_IN] [-d DIRECTORY] [-k]
                                     [-m] [-p] [-s] [-v {0,1,2}] [-z]
                                     [file_paths ...]
create_manpage_completions.py: error: unrecognized arguments: -introduction.9.gz /nix/store/q45mzaksp2ll04c363mxpyi252j6anrq-linux-manual-7.1.3/share/man/man9/DRBD State macros.9.gz /nix/store/q45mzaksp2ll04c363mxpyi252j6anrq-linux-manual-7.1.3/share/man/man9/DRM Client usage stats.9.gz /nix/store/q45mzaksp2ll04c363mxpyi252j6anrq-linux-manual-7.1.3/share/man/man9/DRM RAS Node Management.9.gz /nix/store/q45mzaksp2ll04c363mxpyi252j6anrq-linux-manual-7.1.3/share/man/man9/DRM_ACCEL_FOPS.9.gz
```

This fix is simple, use the `find -print0 ... | xargs -0 ...` pattern.
2026-07-05 09:38:35 -07:00
LIN, JianandGitHub 64ba1ebe9a emacsPackages.ghostel: 0.39.0-unstable-2026-06-26 -> 0.41.0-unstable-2026-07-05 (#538633) 2026-07-05 16:26:38 +00:00
Thomas GerbetandGitHub 7bde72eae6 seafile-client: 9.0.15 -> 9.0.20 (#538242) 2026-07-05 16:25:53 +00:00
R. Ryantm fe64951aff gogh: 365 -> 366 2026-07-05 16:25:45 +00:00
Stefan Junker 7bf1fe6add worktrunk-sync: init at 0.1.2
Changes:
- Add worktrunk-sync 0.1.2 as a Rust by-name package.
2026-07-05 18:25:11 +02:00
Thomas GerbetandGitHub 584196f474 bazarr: 1.5.6 -> 1.6.0 (#538399) 2026-07-05 16:20:23 +00:00
R. Ryantm 497e8c6383 cedar: 4.11.0 -> 4.11.2 2026-07-05 16:08:07 +00:00
Thiago Kenji OkadaandGitHub c428cc1a3e libretro.stella2014: 0-unstable-2026-04-12 -> 0-unstable-2026-07-04 (#538561) 2026-07-05 16:06:47 +00:00
R. Ryantm ea68df0cbe fastfetch-unwrapped: 2.65.1 -> 2.65.2 2026-07-05 16:06:38 +00:00
Thiago Kenji OkadaandGitHub 404473450f libretro.opera: 0-unstable-2026-06-19 -> 0-unstable-2026-06-28 (#538654) 2026-07-05 16:06:26 +00:00
Thiago Kenji OkadaandGitHub c95f7ae104 libretro.prboom: 0-unstable-2026-06-15 -> 0-unstable-2026-07-01 (#538684) 2026-07-05 16:05:59 +00:00
Matthieu CoudronandGitHub 5060bd50d8 vimPlugins.meson: remove meta.mainProgram and change meta.description (#538683) 2026-07-05 15:58:31 +00:00
Oleksii FilonenkoandGitHub 0a6c8cb5c9 taisei: on darwin now! (#521761) 2026-07-05 15:50:58 +00:00
Oleksii FilonenkoandGitHub bc65277cd9 snipaste: 2.10.8 -> 2.11.3, add macOS support (#533819) 2026-07-05 15:48:35 +00:00
nixpkgs-ci[bot]andGitHub a2da5ccc99 dprint: 0.54.0 -> 0.55.1 (#538692) 2026-07-05 15:48:17 +00:00
nixpkgs-ci[bot]andGitHub 2e4160e9b6 interval-tree: 3.1.1 -> 3.1.2 (#537574) 2026-07-05 15:48:01 +00:00
K900andGitHub 23706216c3 lasuite-meet: 1.21.0 -> 1.22.0 (#538178) 2026-07-05 15:46:05 +00:00
Oleksii FilonenkoandGitHub 0b2620c81d wrangler: fix build on darwin (#536602) 2026-07-05 15:45:37 +00:00
Martin Weinelt 8765851bab tests.home-assistant-components: use lib.genAttrs to construct tests 2026-07-05 17:41:16 +02:00
Martin Weinelt e7fb9508f2 home-assistant: adjust test dependencies 2026-07-05 17:40:56 +02:00
Thomas GerbetandGitHub e6a197a0a0 openvpn: 2.6.19 -> 2.6.21 (#538353) 2026-07-05 15:39:49 +00:00
Michael DanielsandGitHub fd9ccf4425 google-chrome: 149.0.7827.201 -> 150.0.7871.47 (Darwin only) (#538701) 2026-07-05 15:39:35 +00:00
Martin Weinelt c450b5df7a python3Packages.pymodbus: prune unused inputs 2026-07-05 17:34:33 +02:00
Martin Weinelt 8ec2af787e python3Package.pystiebeleltron: disable failing tests
These tests have not been ported to a modern pymodbus version yet.
2026-07-05 17:34:33 +02:00
Martin Weinelt 64d17fbb7d python3Packages.roombapy: remove amqtt test dependency
This seems to have been removed and now it causes issues, because amqtt
fails to build.
2026-07-05 17:34:33 +02:00
Martin Weinelt 51e9ae967e python3Packages.mill-local: pin setuptools 80 2026-07-05 17:34:32 +02:00
Martin Weinelt 93ecd7d9a0 python3Packaegs.aioimaplib: fix pyopenssl 26 compat 2026-07-05 17:34:32 +02:00
Martin Weinelt f6ebd7fd78 python3Packages.buienrader: fix setuptools 82 compat 2026-07-05 17:34:32 +02:00
Martin Weinelt 4e3177c331 python3Packages.azure-identity: 1.25.1 -> 1.25.3
https://github.com/Azure/azure-sdk-for-python/blob/azure-identity_1.25.3/sdk/identity/azure-identity/CHANGELOG.md
2026-07-05 17:34:31 +02:00
Martin Weinelt 8c795b0c8e python3Packages.asyncssh: disable failing test
This was dropped in the last update but still keeps failing for me on
ZFS.
2026-07-05 17:34:31 +02:00
Martin Weinelt 57b0f811ac python3Packages.airos: pin setuptools 80 2026-07-05 17:34:31 +02:00
Michael DanielsandGitHub 148ae81bd6 python3Packages.pipdeptree: 3.1.0 -> 3.1.1 (#538636) 2026-07-05 15:33:57 +00:00
SandroandGitHub 2e75c50f9d headplane: 0.6.2 -> 0.6.3 (#537576) 2026-07-05 15:32:53 +00:00
SandroandGitHub eafe34b34f jellyfin-mpv-shim: 2.9.0 -> 2.10.0, minor cleanup (#537200) 2026-07-05 15:25:13 +00:00
Michael Daniels dfec9c87b5 google-chrome: 149.0.7827.201 -> 150.0.7871.47 (Darwin only)
Linux was done in 8b266eba3a.

Release note: https://chromereleases.googleblog.com/2026/06/stable-channel-update-for-desktop_0175352312.html
2026-07-05 11:24:18 -04:00