[clang-repl] Teach the default orc runtime finder to search in more locations (#175416)
This should resolve a recent solaris failure reported in #175322.
security/wazuh-agent: Improve port
- Now wazuh-agent use TCP connection by default
- FreeBSD sca,decoders and rules files were updated to fix some conflict
issues.
- Bump PORTREVISION
PR: 291040
security/wazuh-manager: Improve port
- Fix issue when agent/manager connection use TCP instead of UDP.
(Thanks to dtxdf) [1]
- wazuh-manager settings use TCP by default
- FreeBSD sca,decoders and rules files were updated to fix some conflict
issues.
- Bump PORTREVISION
PR: 291040
Reported by: Paweł Krawczyk <p+freebsd at krvtz.net> [1]
py-uncertainties: updated to 3.2.4
3.2.4 2026-January-9
Adds:
- Adds a section in the documentation advertising the forthcoming `4.0.0` release.
- Add github action CI to automatically publish a new package version to ``pypi`` when
a github release of a new version is published.
- Increases the stacklevel of the warning about `std_dev==0` so that it blames
the caller rather than blaming the `ufloat()` function.
- Adjusts the Sphinx configuration to allow for reproducible builds using
``SOURCE_DATE_EPOCH``.
- Mark Python 3.13 and 3.14 as officially supported.
Deprecates:
- The `AffineScalarFunc.derivatives` property has been marked as deprecated. This
property will be removed in a future release.
[6 lines not shown]
py-pikepdf: updated to 10.2.0
10.2.0
- Fixed `unparse_content_stream()` not preserving literal strings when given raw
Python tuples. :issue:`689`
- The {func}`pikepdf.explicit_conversion` context manager is now thread-local and
takes precedence over the global setting from {func}`pikepdf.set_object_conversion_mode`.
Nested context managers are supported via a depth counter.
- Moved explicit conversion functions to their own module for better code organization.
- Improved C++ test coverage to 97.5% (from 96.4% line coverage, 94.9% to 95.1% function coverage).
py-ruff: updated to 0.14.11
0.14.11
Preview features
Consolidate diagnostics for matched disable/enable suppression comments
Report diagnostics for invalid/unmatched range suppression comments
[airflow] Passing positional argument into airflow.lineage.hook.HookLineageCollector.create_asset is not allowed (AIR303)
[refurb] Mark FURB192 fix as always unsafe
[ruff] Add non-empty-init-module (RUF067)
Bug fixes
Fix GitHub format for multi-line diagnostics
[flake8-unused-arguments] Mark **kwargs in TypeVar as used (ARG001)
Rule changes
[20 lines not shown]
elf2ecoff: fix one more incorrect but harmless byteswap botch
Don't pass swapped ecoff32_exechdr to ECOFF32_SEGMENT_ALIGNMENT().
ECOFF32_SEGMENT_ALIGNMENT(ep) is defined as "((ep)->a.vstamp < 23 ? 8 : 16)"
so fortunately it always returns 16 even if a wrong byteorder value is
passed because we use fixed '.vstamp = 2 * 256 + 10' (2.10) here.
py-hypothesis: updated to 6.150.0
6.150.0 - 2026-01-06
This release adds a min_leaves argument to recursive(), which ensures that generated recursive structures have at least the specified number of leaf nodes.
6.149.1 - 2026-01-05
Add type hints to an internal class.
py-scipy: updated to 1.17.0
SciPy 1.17.0 is the culmination of 6 months of hard work. It contains
many new features, numerous bug-fixes, improved test coverage and better
documentation. There have been a number of deprecations and API changes
in this release, which are documented below. All users are encouraged to
upgrade to this release, as there are a large number of bug-fixes and
optimizations. Before upgrading, we recommend that users check that
their own code does not use deprecated SciPy functionality (to do so,
run your code with ``python -Wd`` and check for ``DeprecationWarning`` s).
Our development attention will now shift to bug-fix releases on the
1.17.x branch, and on adding new features on the main branch.
elf2ecoff: remove an incorrect but unused assigment to ecoff32_exechdr
Probably harmless but confusing on endiannes sanity check.
Maybe we should rather do byteswap during writing to an output file..