sh: avoid warnings about too-long initializer strings
Mark `optletter` and `t_op::op_text` as `__non_string`, to avoid
warnings from clang 21 similar to:
bin/sh/options.h:77:36: error: initializer-string for character array is too long, array size is 19 but initializer has size 20 (including the null terminating character); did you mean to use the 'nonstring' attribute? [-Werror,-Wunterminated-string-initialization]
77 | const char optletter[NSHORTOPTS] = "efIimnsxvVECabupTPh";
| ^~~~~~~~~~~~~~~~~~~~~
bin/test/test.c:153:3: error: initializer-string for character array is too long, array size is 2 but initializer has size 3 (including the null terminating character); did you mean to use the 'nonstring' attribute? [-Werror,-Wunterminated-string-initialization]
153 | {"==", STREQ},
| ^~~~
MFC after: 3 days
Reviewed by: jilles
Differential Revision: https://reviews.freebsd.org/D54362
py-WebTest: updated to 3.0.7
3.0.7 (2025-10-06)
- Response.html is now a cached property to improve form parsing performance
3.0.6 (2025-06-04)
- Fix a bug that inputs outside of a ``<form>`` tag were considered
belonging to that form because they had a HTML representation identical
to some input inside that ``<form>``.
3.0.5 (2025-06-04)
- Strip ``<option>`` text.
- Detect form fields outside of ``<form>`` tag associated via HTML5 ``form`` attribute.
py-Willow: updated to 1.12.0
1.12.0
This release adds support for Python 3.14 and Pillow 12 and later.
Python 3.9 is end of life and no longer supported as of this release.
Bail out if the node's status is "reserved". This is the case on Qualcomm's
SC8280XP, where typically the IOMMU is managed by QHEE and we can't touch it
unless we trick the system into making us EL2.
In some cases the RDE ends up with many RIB dump runners active and so
the rib_dump_runner() code consumes a lot of time to churn through all
of those calls.
Try to limit the time spend in rib_dump_runner() to roughly 10ms and
then stop and restart from that point on the next poll loop round.
This ensures that the poll loop is not blocked for too long and
improves the overall responsiveness of bgpd.
OK tb@
net/powerdns: Update to version 5.0.2
Provided by Marcin Gondek in wip.
5.0.2
Released: 11th of December 2025
This is release 5.0.2 of the Authoritative Server. It contains bug fixes and a minor feature.
Please review the Upgrade Notes before upgrading from versions < 5.0.x.
New Features
allow finer-grained rrset changes through the API
References: #16589, pull request 16599
Bug Fixes
m4/pdns_check_libcrypto: fix ecdsa/eddsa includedir (famfo)
References: #16538, pull request 16603
add missing catch block for STL exceptions in createForward
References: #16564, pull request 16566
REST API: bring back 404 errors
[7 lines not shown]