MC: Move generateCompactUnwindEncodings to MCObjectStreamer. NFC (#180381)
... removing the need to pass MCAsmBackend as a parameter.
This allows MCStreamer.cpp to not include MCAsmBackend.h.
iosevka-*: update to 34.1.0
* Add IPA localization forms for letters with caron
(e.g. {ď, Ľ, ľ, ť} → {d͏̌, L͏̌, l͏̌, t͏̌}).
* Add IPA localization form for TRIPLE VERTICAL BAR DELIMITER (U+2980).
* Add characters:
* MUSICAL SYMBOL BREATH MARK (U+1D112).
* Refine shape of the following characters:
* LATIN LETTER DENTAL CLICK (U+01C0) ... LATIN LETTER ALVEOLAR CLICK (U+01C2).
* MODIFIER LETTER GLOTTAL STOP (U+02C0).
* MODIFIER LETTER REVERSED GLOTTAL STOP (U+02C1).
* Z NOTATION SCHEMA PROJECTION (U+2A21) (#3043).
* MODIFIER LETTER DENTAL CLICK (U+10786) ... MODIFIER LETTER ALVEOLAR CLICK (U+107B8).
* Make certain characters slightly narrower under Quasi-Proportional.
Affected characters:
EXCLAMATION MARK (U+0021).
APOSTROPHE (U+0027).
COMMA (U+002C).
FULL STOP (U+002E).
[37 lines not shown]
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.