[mlir][Python] fix dialect extensions which bind C types (#175405)
Fix some dialect bindings I missed in https://github.com/llvm/llvm-project/pull/174156 so they don't bind C structs (because that leads to multiple registration in the case when multiple packages are used simultaneously).
net-snmp: update to 5.9.5.
*5.9.5*:
snmptrapd:
- fixed a critical vulnerability triggered by a specially crafted trap
snmpd:
- Make UCD-SNMP::dskTable dynamic if includeAllDisks is set.") added
a verification that drops all filesystems not present in other_fs[]
table. So add 'ubifs' in other_fs[] to fix it.
configure:
- Change the default OpenSSL path into /usr Change the default
OpenSSL path from /usr/local/ssl into /usr since that is the
default location for all current Linux distributions.
unspecified:
- Remove redundant declarations These changes aim to remove redundant
[31 lines not shown]
p5-MIME-Lite: update to 3.035.
Version 3.035
No changes since previous version, just made non-trial.
Version 3.034 (TRIAL)
Add in-reply-to to known field list.
Remove Date header when setting top_level off.
Do not quote rfc2331-encoded parameters.
Automatically fold headers, if needed.
p5-IO-Socket-SSL: update to 2.098.
2.098 2026/01/06
- Another fix to issue #175 to make sure that an unblessed sockets gets
blessed in place instead of using new_from_fd. Document that it will
not retain original class with unblessed sockets on error, since this
never worked anyway (there is no native unbless)
2.097 2026/01/06
- fix issue #175 with upgrading from plain socket (no object) by using
correct fdopen mode +< instead of <+
2.096 2026/01/04
- Allow stacking TLS layers with SSL_usebio
This also allows LWP (after patches) to access https site through TLS
enabled proxy
ruby-public_suffix: update to 7.0.2
Upstream changes (from CHANGELOG.md):
7.0.2 - 2026-01-04
Changed
* Excluded symlinks and unnecessary files from gem packaging.
On Windows symlinks cannot be created without Administrator
privileges or with developer mode enabled #496.
7.0.1 - 2026-01-03
Changed
* Updated definitions.
7.0.0 - 2024-11-17
[5 lines not shown]
p5-DBD-SQLite: update to 1.78.
1.78 2026-01-02
- Switched to a production version
1.77_03 2025-12-27
- Upgraded SQLite to 3.51.1
1.77_02 2025-11-24
- Omit constants for newly added C-array extension
- SQLite 3.51.0 has two extensions (C-array and percentile) amalgamated
but both are disabled by default.
1.77_01 2025-11-24
- Upgraded SQLite to 3.51.0
- Make ->column_info() also return generated columns (GH#119, Corion++)
[clang-format] Correctly annotate C compound literal braces (#173771)
Fixes https://github.com/llvm/llvm-project/issues/173583
clang-format mis-formats C compound literals used in macro bodies, e.g.
`#define getAddr(v, type) &(type){v}`, treating `{...}` as a
block/function body
and reflowing the macro with backslashes and spaces.
This change:
- Recognizes `&( ... ){ ... }` patterns in macro bodies and marks the
brace as a braced-init.
- Improves parsing stability for braced lists in macro bodies.
Tests:
- FormatTests
---------
Co-authored-by: owenca <owenpiano at gmail.com>