Colin
e8657e0a8c
mslicer: 0.2.2 -> 0.3.0 ( #462237 )
2025-11-16 23:40:09 +00:00
R. Ryantm
c1c95feda0
mdfried: 0.14.4 -> 0.14.5
2025-11-16 23:30:36 +00:00
Sandro
7302c51794
yt-dlp: 2025.10.22 -> 2025.11.12, add JS runtime ( #460892 )
2025-11-16 23:19:56 +00:00
Jo
aaed8bfd01
alvr: Add android-tools needed for wired mode ( #453873 )
2025-11-16 22:46:39 +00:00
Jo
afbb1b4593
alvr: Fix build with ffmpeg 8 compat ( #461709 )
2025-11-16 22:46:19 +00:00
dotlambda
1d2a08be2d
python312Packages.doubles: skip failing tests ( #462401 )
2025-11-16 22:43:32 +00:00
Robert Schütz
529bf17392
python312Packages.doubles: skip failing tests
2025-11-16 14:30:07 -08:00
nixpkgs-ci[bot]
5a456cb098
lms: 3.71.0 -> 3.72.0 ( #462363 )
2025-11-16 22:28:39 +00:00
zowoq
c85f9ade89
terraform-providers.nutanix_nutanix: 2.3.3 -> 2.3.4 ( #462377 )
2025-11-16 22:25:32 +00:00
zowoq
471a3c9d13
terraform-providers.oracle_oci: 7.25.0 -> 7.26.1 ( #462315 )
2025-11-16 22:25:18 +00:00
zowoq
5bbaa19df9
fzf: 0.66.1 -> 0.67.0 ( #462280 )
2025-11-16 22:24:41 +00:00
Matthieu Coudron
2197ba43dc
manga-tui: 0.9.0 -> 0.10.0 ( #462325 )
2025-11-16 22:20:29 +00:00
dotlambda
4f9b08cb87
python3Packages.dbus-fast: 2.44.5 -> 2.46.3 ( #462301 )
2025-11-16 22:19:58 +00:00
Fabian Affolter
f853317fce
python313Packages.azure-mgmt-containerservice: remove disabled
2025-11-16 23:16:21 +01:00
Fabian Affolter
610801d656
python3Packages.airtouch5py: 0.3.0 -> 0.4.0 ( #462188 )
2025-11-16 22:13:47 +00:00
Fabian Affolter
e5c39f2b72
python313Packages.types-html5lib: 1.1.11.20251014 -> 1.1.11.20251115
2025-11-16 23:09:56 +01:00
Fabian Affolter
9988c02d49
python313Packages.types-webencodings: init at 0.5.0.20251108
...
Typing stubs for webencodings
https://pypi.org/project/types-webencodings/
2025-11-16 23:08:47 +01:00
Masum Reza
69927d0e44
libamplsolver: fix build on aarch64-darwin ( #462284 )
2025-11-16 22:06:17 +00:00
nixpkgs-ci[bot]
c45573c0c9
treemd: 0.1.5 -> 0.2.1 ( #462233 )
2025-11-16 22:04:55 +00:00
nixpkgs-ci[bot]
dbd2741a1b
xenia-canary: 0-unstable-2025-11-10 -> 0-unstable-2025-11-13 ( #462384 )
2025-11-16 22:04:44 +00:00
dotlambda
b9d6a767dc
python3Packages.pyoprf: fix loading liboprf-noiseXK ( #462348 )
2025-11-16 22:03:43 +00:00
nixpkgs-ci[bot]
d9b1026062
bottom: Fix application icon ( #461945 )
2025-11-16 22:02:17 +00:00
Yohann Boniface
7f97786cc9
python3Packages.pyghmi: 1.6.6 -> 1.6.7 ( #461997 )
2025-11-16 21:53:43 +00:00
Yohann Boniface
9e7a62bc8a
kazumi: 1.8.7 -> 1.8.8 ( #462124 )
2025-11-16 21:53:11 +00:00
Yohann Boniface
716043b624
vscode-extensions.wgsl-analyzer.wgsl-analyzer: 0.11.130 -> 0.11.141 ( #462154 )
2025-11-16 21:52:35 +00:00
Yohann Boniface
418656875d
liboqs: 0.14.0 -> 0.15.0 ( #461990 )
2025-11-16 21:51:21 +00:00
Robert Schütz
0f06078c6f
home-assistant: skip another flaky test
...
Multiple people have seen failures like this:
_________________ test_platform_multiple_triggers[sync_action] _________________
[gw6] linux -- Python 3.13.9 /nix/store/7gl4khq26h625mpqzkiiqsify3hclar1-python3-3.13.9/bin/python3.13
hass = <HomeAssistant RUNNING>
action_method = <bound method TriggerActionFunctionTypeHelper.sync_action of <tests.helpers.test_trigger.TriggerActionFunctionTypeHelper object at 0x7fffa6c58550>>
@pytest.mark.parametrize("action_method", ["cb_action", "sync_action", "async_action"])
async def test_platform_multiple_triggers(
hass: HomeAssistant, action_method: str
) -> None:
"""Test a trigger platform with multiple trigger."""
class MockTrigger(Trigger):
"""Mock trigger."""
@classmethod
async def async_validate_config(
cls, hass: HomeAssistant, config: ConfigType
) -> ConfigType:
"""Validate config."""
return config
class MockTrigger1(MockTrigger):
"""Mock trigger 1."""
async def async_attach_runner(
self, run_action: TriggerActionRunner
) -> CALLBACK_TYPE:
"""Attach a trigger."""
run_action({"extra": "test_trigger_1"}, "trigger 1 desc")
class MockTrigger2(MockTrigger):
"""Mock trigger 2."""
async def async_attach_runner(
self, run_action: TriggerActionRunner
) -> CALLBACK_TYPE:
"""Attach a trigger."""
run_action({"extra": "test_trigger_2"}, "trigger 2 desc")
async def async_get_triggers(hass: HomeAssistant) -> dict[str, type[Trigger]]:
return {
"_": MockTrigger1,
"trig_2": MockTrigger2,
}
mock_integration(hass, MockModule("test"))
mock_platform(hass, "test.trigger", Mock(async_get_triggers=async_get_triggers))
config_1 = [{"platform": "test"}]
config_2 = [{"platform": "test.trig_2", "options": {"x": 1}}]
config_3 = [{"platform": "test.unknown_trig"}]
assert await async_validate_trigger_config(hass, config_1) == config_1
assert await async_validate_trigger_config(hass, config_2) == config_2
with pytest.raises(
vol.Invalid, match="Invalid trigger 'test.unknown_trig' specified"
):
await async_validate_trigger_config(hass, config_3)
log_cb = MagicMock()
action_helper = TriggerActionFunctionTypeHelper()
action_method = getattr(action_helper, action_method)
await async_initialize_triggers(hass, config_1, action_method, "test", "", log_cb)
> assert len(action_helper.action_calls) == 1
E assert 0 == 1
E + where 0 = len([])
E + where [] = <tests.helpers.test_trigger.TriggerActionFunctionTypeHelper object at 0x7fffa6c58550>.action_calls
MockTrigger = <class 'tests.helpers.test_trigger.test_platform_multiple_triggers.<locals>.MockTrigger'>
MockTrigger1 = <class 'tests.helpers.test_trigger.test_platform_multiple_triggers.<locals>.MockTrigger1'>
MockTrigger2 = <class 'tests.helpers.test_trigger.test_platform_multiple_triggers.<locals>.MockTrigger2'>
action_helper = <tests.helpers.test_trigger.TriggerActionFunctionTypeHelper object at 0x7fffa6c58550>
action_method = <bound method TriggerActionFunctionTypeHelper.sync_action of <tests.helpers.test_trigger.TriggerActionFunctionTypeHelper object at 0x7fffa6c58550>>
async_get_triggers = <function test_platform_multiple_triggers.<locals>.async_get_triggers at 0x7fff807a32e0>
config_1 = [{'platform': 'test'}]
config_2 = [{'options': {'x': 1}, 'platform': 'test.trig_2'}]
config_3 = [{'platform': 'test.unknown_trig'}]
hass = <HomeAssistant RUNNING>
log_cb = <MagicMock id='140735954672608'>
tests/helpers/test_trigger.py:530: AssertionError
2025-11-16 13:45:42 -08:00
Martin Weinelt
b4fef49d1d
go2rtc: 1.9.11 -> 1.9.12 ( #462351 )
2025-11-16 21:43:01 +00:00
R. Ryantm
49f41b8737
python3Packages.azure-mgmt-containerservice: 40.0.0 -> 40.1.0
2025-11-16 21:42:28 +00:00
nixpkgs-ci[bot]
8f0665eb58
librashader: 0.9.1 -> 0.9.2 ( #461891 )
2025-11-16 21:41:24 +00:00
dotlambda
29de6e5014
python3Packages.nose2: modernize ( #462366 )
2025-11-16 21:32:25 +00:00
nixpkgs-ci[bot]
fcb4c6c292
spire: 1.13.2 -> 1.13.3 ( #461998 )
2025-11-16 21:31:25 +00:00
Arnout Engelen
5333c11b01
x2t: update to 9.1.0 ( #462253 )
2025-11-16 21:30:31 +00:00
Arnout Engelen
40ef8f9271
nixos/onlyoffice: add simple test ( #462114 )
2025-11-16 21:29:47 +00:00
R. Ryantm
b95c70f525
xenia-canary: 0-unstable-2025-11-10 -> 0-unstable-2025-11-13
2025-11-16 21:22:10 +00:00
Michele Guerini Rocco
aab616ef8f
mkvtoolnix: 95.0 -> 96.0 ( #461774 )
2025-11-16 21:17:50 +00:00
R. Ryantm
8984c5916a
microsoft-edge: 142.0.3595.65 -> 142.0.3595.80
2025-11-16 21:12:47 +00:00
Silvan Mosberger
1fa094a492
gst_all_1: convert to scope ( #455935 )
2025-11-16 21:07:07 +00:00
Bryan Honof
ff16356817
gst_all_1: convert to scope
...
These packages make sense, at least to me, to live inside of a scope. That way
we can also extend the scope with other gst plugins without too much hassel.
2025-11-16 22:01:08 +01:00
R. Ryantm
da2608919c
terraform-providers.nutanix_nutanix: 2.3.3 -> 2.3.4
2025-11-16 20:59:58 +00:00
Fabian Affolter
e4ab8d175c
wapiti: 3.2.6 -> 3.2.10
...
Changelog: https://github.com/wapiti-scanner/wapiti/blob/3.2.10/doc/ChangeLog_Wapiti
2025-11-16 21:58:35 +01:00
R. Ryantm
0939cf91ae
clouddrive2: 0.9.13 -> 0.9.15
2025-11-16 20:53:22 +00:00
Jo
d632d88f7d
gnome49Extensions: Add to all-packages.nix ( #462360 )
2025-11-16 20:47:23 +00:00
Fabian Affolter
d66483d41a
python313Packages.publicsuffixlist: 1.0.2.20251113 -> 1.0.2.20251115
...
Changelog: https://github.com/ko-zu/psl/blob/v1.0.2.20251115-gha/CHANGES.md
2025-11-16 21:46:42 +01:00
Fabian Affolter
837a29ec03
python313Packages.fastapi-mail: 1.5.0 -> 1.5.8 ( #457491 )
2025-11-16 20:44:41 +00:00
Fabian Affolter
b8c355a24d
python313Packages.fastapi-mail: 1.5.0 -> 1.5.8
...
Changelog: https://github.com/sabuhish/fastapi-mail/releases/tag/1.5.8
2025-11-16 21:33:17 +01:00
Robert Schütz
2855dc7604
python3Packages.nose2: modernize
2025-11-16 12:32:56 -08:00
Kira Bruneau
4a321d26ad
newsflash: 4.1.4 -> 4.2.1
2025-11-16 15:32:28 -05:00
Kira Bruneau
e125e4c24a
newsflash: add changelog
2025-11-16 15:32:28 -05:00
Fabian Affolter
52e7c77a1b
python313Packages.pyais: 2.13.2 -> 2.13.3 ( #462345 )
2025-11-16 20:26:46 +00:00