net/coturn: Update to 4.8.0
Release 4.8.0
Changelist:
- Allow faster packet validation on listener threads (#1768) (Pavel Punsky <eakraly at users.noreply.github.com>)
- Fix order of arguments to calloc (#1790) (Pavel Punsky <eakraly at users.noreply.github.com>)
- Fix crashes while setting socket buffer size (#1789) (Pavel Punsky <eakraly at users.noreply.github.com>)
- Implement configurable buffer sizes (#1780) (Pavel Punsky <eakraly at users.noreply.github.com>)
- Update Alpine to 3.23.2 version in Docker image (tyranron <tyranron at gmail.com>)
- Update Debian "trixie" to 20251208 snapshot in Docker image (tyranron <tyranron at gmail.com>)
- Use bool to enable prometheus (#1779) (Pavel Punsky <eakraly at users.noreply.github.com>)
- Fix memory leak using libevent (#1751) (Pavel Punsky <eakraly at users.noreply.github.com>)
- Addressed possible null pointer dereferences (#1729) (redraincatching <99604494+redraincatching at users.noreply.github.com>)
- Address possible null pointer dereferences (#1744) (redraincatching <99604494+redraincatching at users.noreply.github.com>)
- Improve const correctness in coturn (#1424) (Michael Jones <jonesmz at users.noreply.github.com>)
- Update attribute values according to RFC 8656 (#1748) (Pavel Punsky <eakraly at users.noreply.github.com>)
- Fixing missing dependencies in Makefile (#1739) (Jun Lyu <71107931+Meiye-lj at users.noreply.github.com>)
- Add fuzzing to ci workflows (#1745) (redraincatching <99604494+redraincatching at users.noreply.github.com>)
[90 lines not shown]
chat/py-xmpppy: Update to 0.7.3
Packaging changes:
- Give up on python 2.7; pkgsrc by default excludes that so it's
been disabled. It might work, but there is no reason to think the
number of people that care is non-zero, so I'm not going to
maintain it working with 27.
- Add TEST_DEPENDS, which lets make test get further.
2026-02-08 0.7.3
================
- Fixed ``wait`` and ``route`` parameters for Bosh transport. Thanks, @soul4code.
- Fixed ``receive`` when message is empty. Thanks, @soul4code.
- Fixed memory leak by removing stanza once callback called.
Thanks, @CyrilPeponnet.
- Made example programs work on Python 3.
[libclang/python] Type-annotate SourceLocation and SourceRange (#180193)
This adds type annotations to the `SourceLocation` and `SourceRange`
classes, enough to pass a strict typecheck. This resolves 29 strict
typing errors as the next step towards
https://github.com/llvm/llvm-project/issues/76664
Add error handling for server requests and improve UI localization
- Backend: Add try-except handling with timeouts for server request failures (`requests.get`), preventing UI blocking during unreachable servers.
- Frontend: Localize UI strings with `_()` for better internationalization support.
- UI: Refactor dialog buttons to invoke corresponding "Yes" and "No" click handlers, improving code clarity and maintainability.
[Polly] Update isl to isl-0.27-78-gfc484e00 (#180377)
Update isl to include
https://repo.or.cz/isl.git/commit/fc484e004200964f8f18249de1f510393ec924a9
which fixes #180000.
The isl update also fixes #34710 which had the same cause but with an
empty access domain (#180000 has an empty statement domain). Thus we
also revert 163cacb46960be4dd0d8562737bbf0ea97cb14ad which now only adds
unnecessary overhead.
A regression test has been added to isl which is why we do not add a
test in Polly.
Fixes: #180000
Thanks @skimo-openhub for the fix and @thapgua for the bugreport.
Prevent duplicate instances and add IPC for check-now command
- Use setproctitle and psutil to detect existing update-station processes
- Send SIGUSR1 to running instance when 'check-now' is invoked, triggering update check in existing GTK loop
- Consolidate notification.py into frontend.py to reduce module count
- Simplify boolean returns in backend.py
- Exit with error if tray mode started while instance is already running
This prevents multiple update-station processes from running simultaneously
and allows the check-now command to communicate with the existing tray
instance instead of spawning a separate GUI process.