Martin Weinelt
fb43cbdb6d
python3Packages.lektricowifi: 0.0.43 -> 0.1
2025-06-12 16:59:45 +02:00
R. RyanTM and Martin Weinelt
385226f56e
python3Packages.homematicip: 2.0.1.1 -> 2.0.4 ( #407427 )
...
https://github.com/hahn-th/homematicip-rest-api/releases/tag/2.0.2
https://github.com/hahn-th/homematicip-rest-api/releases/tag/2.0.3
https://github.com/hahn-th/homematicip-rest-api/releases/tag/2.0.4
2025-06-12 16:59:44 +02:00
Martin Weinelt
bfb5f44c30
python3Packages.hdate: 1.1.0 -> 1.1.1
...
https://github.com/py-libhdate/py-libhdate/blob/v1.1.1/CHANGELOG.md
2025-06-12 16:59:44 +02:00
Martin Weinelt
3897d295ef
python313Packages.hass-nabucasa: 0.96.0 -> 0.101.0
...
https://github.com/NabuCasa/hass-nabucasa/releases/tag/0.101.0
2025-06-12 16:59:44 +02:00
Martin Weinelt
5ac88b837a
python3Packages.go2rtc-client: 0.1.2 -> 0.2.1
...
https://github.com/home-assistant-libs/python-go2rtc-client/releases/tag/0.2.1
2025-06-12 16:59:44 +02:00
Fabian Affolter and Martin Weinelt
936444360e
python313Packages.habluetooth: 3.48.2 -> 3.49.0 ( #413814 )
...
Diff: https://github.com/Bluetooth-Devices/habluetooth/compare/refs/tags/v3.48.2...refs/tags/v3.49.0
Changelog: https://github.com/Bluetooth-Devices/habluetooth/blob/v3.49.0/CHANGELOG.md
2025-06-12 16:59:43 +02:00
R. RyanTM and Martin Weinelt
e9c4658106
python3Packages.habiticalib: 0.3.7 -> 0.4.0 ( #409714 )
...
https://github.com/tr4nt0r/habiticalib/releases/tag/v0.4.0
2025-06-12 16:59:43 +02:00
Martin Weinelt
2e3768e4e8
python3Packages.env-canada: 0.10.2 -> 0.11.2
...
https://github.com/michaeldavie/env_canada/blob/v0.11.2/CHANGELOG.md
2025-06-12 16:59:43 +02:00
Martin Weinelt
f1e80d2c8d
python313Packages.deebot-client: 13.2.1 -> 13.3.0
...
https://github.com/DeebotUniverse/client.py/releases/tag/13.3.0
2025-06-12 16:59:42 +02:00
Martin Weinelt
192466811d
python3Packages.bluetooth-auto-recovery: 1.5.1 -> 1.5.2
...
https://github.com/Bluetooth-Devices/bluetooth-auto-recovery/blob/v1.5.2/CHANGELOG.md
2025-06-12 16:59:42 +02:00
Martin Weinelt
5f55217f34
python3Packages.apsystems-ez1: 2.6.0 -> 2.7.0
...
https://github.com/SonnenladenGmbH/APsystems-EZ1-API/releases/tag/2.7.0
2025-06-12 16:59:42 +02:00
Robert Schütz and Martin Weinelt
3dbb883877
python312Packages.datapoint: 0.9.9 -> 0.12.1
...
Diff: https://github.com/EJEP/datapoint-python/compare/v0.9.9...0.12.1
Changelog: https://github.com/EJEP/datapoint-python/blob/0.12.1/CHANGELOG.md
2025-06-12 16:59:42 +02:00
R. RyanTM and Martin Weinelt
f6b34528ac
python3Packages.aioesphomeapi: 30.2.0 -> 32.2.1 ( #405130 )
...
https://github.com/esphome/aioesphomeapi/releases/tag/v31.0.0
https://github.com/esphome/aioesphomeapi/releases/tag/v31.0.1
https://github.com/esphome/aioesphomeapi/releases/tag/v31.1.0
https://github.com/esphome/aioesphomeapi/releases/tag/v32.0.0
https://github.com/esphome/aioesphomeapi/releases/tag/v32.1.0
https://github.com/esphome/aioesphomeapi/releases/tag/v32.2.0
https://github.com/esphome/aioesphomeapi/releases/tag/v32.2.1
2025-06-12 16:59:41 +02:00
R. Ryantm
6b0ccda341
seamly2d: 2025.5.5.213 -> 2025.6.9.216
2025-06-12 14:50:59 +00:00
R. Ryantm
9eb048467d
openlinkhub: 0.5.6 -> 0.5.7
2025-06-12 14:48:38 +00:00
Peder Bergebakken Sundt and GitHub
41c71175dc
fan2go: 0.9.0 -> 0.10.0 ( #405283 )
2025-06-12 16:45:14 +02:00
Aleksana and GitHub
b36cd27bcd
t1lib: drop ( #416001 )
2025-06-12 22:39:23 +08:00
Aleksana and GitHub
a4f2cc0ea8
streamripper: fix build ( #415992 )
2025-06-12 22:27:55 +08:00
Grimmauld
1ae214f8b0
check-meta: fix 'hasNoMaintainers'
...
broken in 650eb613e6
Previously, if any of `meta.teams` or `meta.maintainers`
was undefined, `hasNoMaintainers` would return false,
suggesting e.g. bash had a maintainer - it does not.
The old logic before meta.teams was:
```nix
hasNoMaintainers = attrs: attrs ? meta.maintainers && (length attrs.meta.maintainers) == 0;
```
This meant a package that did not define `meta.maintainers` would
appear maintained by this check, while a package with `meta.maintainers = []` would be listed as unmaintained.
This might have been a bug.
If it was not, that logic could be restored by prepending an extra check to the condition:
```nix
(attrs ? meta.maintainers || attrs ? meta.teams) && (attrs.meta.maintainers or [] == []) && (attrs.meta.teams or [] == [])
```
I believe this makes little sense though. if no maintainer is listed, a package should be considered unmaintained.
If really desired, this can still be bypassed by setting `meta.maintainers = null;` or something.
2025-06-12 16:27:46 +02:00
Peder Bergebakken Sundt and GitHub
780f0c790e
hoppscotch: improve update script ( #404828 )
2025-06-12 16:20:31 +02:00
Michael Daniels
959cf4ce56
streamripper: fix build
...
It broke with gcc 14. As a bonus, I also fetch a bugfix patch.
2025-06-12 10:19:52 -04:00
R. Ryantm
25145eecee
python3Packages.craft-store: 3.2.1 -> 3.2.2
2025-06-12 14:19:00 +00:00
R. Ryantm
95b70cce0b
drone-cli: 1.8.0 -> 1.9.0
2025-06-12 14:17:16 +00:00
R. Ryantm
078eb997e8
sigil: 2.5.1 -> 2.5.2
2025-06-12 14:15:53 +00:00
Peder Bergebakken Sundt and GitHub
616387c5f3
vault-tasks: 0.11.2 -> 0.12.0 ( #414695 )
2025-06-12 16:15:07 +02:00
Peder Bergebakken Sundt and GitHub
2d6dbce453
megasync: 5.9.0.3 -> 5.12.0.1 ( #413878 )
2025-06-12 16:07:42 +02:00
Peder Bergebakken Sundt and GitHub
1cf88f3860
beekeeper-studio: 5.2.9 -> 5.2.12 ( #413510 )
2025-06-12 16:06:48 +02:00
Peder Bergebakken Sundt and GitHub
80cf90dfd9
pritunl-client: 1.3.4220.57 -> 1.3.4275.94 ( #415816 )
2025-06-12 16:00:21 +02:00
oddlama
8c443ed0ed
stalwart-mail: 0.12.2 -> 0.12.4
2025-06-12 15:58:25 +02:00
Matthew Toohey
c88e955e02
fan2go: 0.9.0 -> 0.10.0
2025-06-12 09:57:51 -04:00
Aleksana and GitHub
f6b0d7c78c
sums: 0.13 -> 0.15 ( #416133 )
2025-06-12 21:56:18 +08:00
Peder Bergebakken Sundt and GitHub
0015082350
git-machete: 3.34.1 -> 3.36.0 ( #409291 )
2025-06-12 15:54:41 +02:00
Peder Bergebakken Sundt and GitHub
86b5a39e4e
trufflehog: 3.89.0 -> 3.89.1 ( #415910 )
2025-06-12 15:52:46 +02:00
Pol Dellaiera and GitHub
3f2c4735c2
vscode-extensions.ms-kubernetes-tools.vscode-kubernetes-tools: 1.3.23 -> 1.3.24 ( #416136 )
2025-06-12 15:52:39 +02:00
Peder Bergebakken Sundt and GitHub
85eb8fa799
fastly: 11.2.0 -> 11.3.0 ( #415940 )
2025-06-12 15:51:36 +02:00
R. Ryantm
320a9cbeb3
go-licence-detector: 0.7.0 -> 0.8.0
2025-06-12 13:50:22 +00:00
Peder Bergebakken Sundt and GitHub
6f656f206f
yafc-ce: 2.11.1 -> 2.13.0 ( #415000 )
2025-06-12 15:48:47 +02:00
R. Ryantm
3018ad2254
helmfile: 1.1.1 -> 1.1.2
2025-06-12 13:47:41 +00:00
Thiago Kenji Okada and GitHub
6b74a79ac0
nixos-rebuild-ng: run systemd-run with / as the working directory ( #416132 )
2025-06-12 14:41:38 +01:00
Maximilian Bosch and GitHub
562fcb28d7
Merge: nextcloud: 30.0.11 -> 30.0.12, 31.0.5 -> 31.0.6 ( #416098 )
2025-06-12 15:37:41 +02:00
Peder Bergebakken Sundt and GitHub
22e95fb3a1
nanovna-saver: 0.6.8 -> 0.7.3 ( #415518 )
2025-06-12 15:33:13 +02:00
Emily Trau and GitHub
bc0b002f0b
ghidra-extensions.kaiju: 250417 -> 250610 ( #415734 )
2025-06-12 23:30:53 +10:00
Peder Bergebakken Sundt and GitHub
fb85ed7c88
firefly-iii-data-importer: 1.6.1 -> 1.6.3 ( #415606 )
2025-06-12 15:28:48 +02:00
Peder Bergebakken Sundt and GitHub
ab2a6c5143
hyprlandPlugins.hyprsplit: 0.48.1-unstable-2025-05-03 -> 0.49.0 ( #415722 )
2025-06-12 15:27:02 +02:00
Connor Baker and GitHub
40f1bb6275
arrayUtilities: init ( #385960 )
2025-06-12 06:26:14 -07:00
Peder Bergebakken Sundt and GitHub
9a4b659b72
app2unit: 0-unstable-2025-05-09 -> 0.9.0 ( #415367 )
2025-06-12 15:25:10 +02:00
R. Ryantm
2afe83c9c0
micronaut: 4.8.2 -> 4.8.3
2025-06-12 13:24:42 +00:00
R. Ryantm
92290b828f
openfga-cli: 0.6.6 -> 0.7.0
2025-06-12 13:17:27 +00:00
R. Ryantm and Francesco Gazzetta
ba8c11452c
vengi-tools: 0.0.37 -> 0.0.38
2025-06-12 13:14:49 +00:00
Peder Bergebakken Sundt and GitHub
916b72f3f5
tea: 0.9.2 -> 0.10.0 ( #415644 )
2025-06-12 15:13:23 +02:00