slumber: update to 5.2.5.
[5.2.5] - 2026-04-12
Changed
Set extension on temporary file when editing recipe body in TUI
When editing a JSON body in the TUI, the created temp file will have .json as the extension, so your editor can use syntax highlighting and other language-specific features.
Fixed
Fix crash when previewing a profile value that returns a binary value
Prompts in CLI/Python frontend no longer block other request building tasks
Fix overlapping strcpy usages
Using overlapping src & dest witgh strcpy is undefined, so anything
like
strcpy(str + N, str + M);
is automatically invalid, regardless of the valuse of N and M.
Change offending usages here to use memmove() instead.
Note: 2 issues: First, there is no (in sntp/compat) anything to deal
with the possibility that memmove() is not available - this should not
be a problem building nbsd, but it might be if any attempt were to be
made to upstream this change (the autoconf machinery to detect memmove()
would be needed, along wth a memmove() implementation).
Second, and more serious here, I haven't been able to get a build to
actually compile this code, so while I believe it is correct, I am unable
to test it. This is intended to fix the sh3 builds on in the releng
daily builds, so we will see what happens. As best I can tell my build
[2 lines not shown]
sysutils/py-Glances: Update to 4.5.4
Remove patches that have been merged by upstream.
Changes since 4.5.3:
=============
Version 4.5.4
=============
Bug corrected:
* Cannot set warning/critical temperature for a specific sensor
#3525
* Memory percentage and used displayed as negative numbers #3358
* Incorrect Docker container count via Homeassistant Integration
#3433
* Fix LXD filter excluding containers on standalone hosts #3529
[25 lines not shown]