ansible: updated to 14.3.1
14.3.1
Bugfixes
- The infinidat.infinibox 1.8.4 release contained in Ansible 14.3.0 contained a recursive symlink loop. For unknown reasons, setuptools expanded this loop 41 levels deep without returning an error. This caused many copies of the collection to appear in the Ansible 14.3.0 release. The Ansible 14.3.1 release contains infinidat.infinibox 1.8.5, which is identical to infinidat.infinibox 1.8.4 except that it does not contain the symlink loop.
racket-textual: update to 9.3
- The raco setup command can generate markdown documentation, using
the --doc-markdown option.
- The "#lang" teaching languages (BSL, …, ISL+; plus DeinProgram)
have reached parity with the ones chosen using the Language dialog,
and are the recommended choice.
- The raco pkg install command includes new options that provide more
install-time configuration flexibility: --adjacent-deps, --destdir,
and --attach, and a refined --skip-installed.
- The ffi/unsafe/runtime-lib library provides a define-runtime-lib
mechanism similar to define-runtime-path, allowing location of
libraries located relative to a source file.
- The prompt-tag/c contract generator no longer performs checking on
call/cc when the #:call/cc option is not present.
- The impersonate-prompt-tag function takes an additional argument
that allows checking and update of results for composable
continuations.
- The error-syntax->srcloc-handler parameter provides control over
[9 lines not shown]
racket: update to 9.3
- The raco setup command can generate markdown documentation, using
the --doc-markdown option.
- The "#lang" teaching languages (BSL, …, ISL+; plus DeinProgram)
have reached parity with the ones chosen using the Language dialog,
and are the recommended choice.
- DrRacket’s background expansion disables errortrace annotations,
for faster syntax checking.
- The raco pkg install command includes new options that provide more
install-time configuration flexibility: --adjacent-deps, --destdir,
and --attach, and a refined --skip-installed.
- The ffi/unsafe/runtime-lib library provides a define-runtime-lib
mechanism similar to define-runtime-path, allowing location of
libraries located relative to a source file.
- The prompt-tag/c contract generator no longer performs checking on
call/cc when the #:call/cc option is not present.
- The impersonate-prompt-tag function takes an additional argument
that allows checking and update of results for composable
[11 lines not shown]
py-time-machine: updated to 3.4.0
3.4.0
Publish wheels for Python 3.15.
Fix a reference leak in the patched datetime.datetime.utcnow() that occurred when its Python 3.12+ DeprecationWarning was raised as an error, such as under -W error. Each such call leaked a reference to the active traveller object.
Extend the Migration CLI to migrate patterns from freezegun’s pytest plugins, pytest-freezegun and pytest-freezer: the freezer fixture and the pytest.mark.freeze_time marker. Also make it migrate freeze_time() context managers that bind the result with as, including converting tick() method calls to shift().
Fix the Migration CLI to handle trailing commas in freeze_time() calls when adding tick=False. Previously, it produced invalid syntax, like travel("2023-01-01",, tick=False).
Fix the Migration CLI to not indent imports kept from a rewritten from-import when the import doesn’t start its line, such as after if True: on one line. Previously, the kept import gained leading whitespace, producing invalid syntax.
Fix building on macOS:
In C23 an empty parameter list means "(void)" rather than "unspecified
arguments", so the unprototyped declarations below conflict with the
definitions in keygen.c. Use the full prototypes (only!) in the C23 case.
Bump version to nb15.
Update to dhcpcd-10.5.1 with the following changes:
* DHCP: Only send the rapid commit option when configured to
* DHCP6: Mirror the prior DHCP rapid commit fix to DHCPv6
* route: keep acquisition timestamp when route isn't updated
* privsep: Allow __NR__llseek as well as __NR_llseek on linux
* compat: Take a copy of libc progname variable
* ipv6nd: don't leave a carrier expiry timeout on a freed interface
* compat: define __STDC_WANT_LIB_EXT1__ 1 before including config
* ipv4: clear added state if we didn't delete the address
* linux: workaround a gcc compile warning issue
* DHCP: script reason should be RELEASE on RELEASE, not STOP
* control: Harden the socket at the fs level
* privsep: re-enable capsicum and pledge
* privsep: Fix capsicum support on the control socket
py-wcmatch: updated to 11.0.1
11.0.1
- **DOCS**: Provide information in documentation that discloses information about what should or should not be
expected from Wildcard Match in regards to security, and provide general information to allow users to make good
decisions.
- **FIX**: Fix an issue where in some cases dot handling was not correct within an extended glob pattern when
`EXTGLOB`/`EXTMATCH` was enabled.
py-zensical: updated to 0.0.55
0.0.5
This version fixes two false positives in the reference extractor and reverts
Zensical's bootstrapped zensical.toml to TOML 1.0, since most editor tooling
does not yet support TOML 1.1. Zensical understands both, TOML 1.0 and TOML
1.1, so this change does not affect the functionality of Zensical itself.
py-numpy: updated to 2.5.2
2.5.2
MAINT: Prepare 2.5.x for further development
TYP: Backport multiple static typing fixes 1.
TST: add tests for stable ABI numpy extensions
BUG: fix ``StringDType`` coerce flag in binary ufunc promotion...
BLD: fix meson deprecation warnings
TYP: Backport multiple typing fixes 2.
MAINT: Update x86-simd-sort subproject (5adb334 → fa944ef)
BUG: fix crash on 32 bit systems using abi3t
MNT: remove some obsolete string to bool workarounds
BUG: centralized helper for output coerce and na_object in stringdtype...
BUG: fix CPU feature env diagnostic buffer overruns
BUG: restore ndarray.conjugate() for legacy user-defined dtypes...
TYP: Avoid shadowed dtype annotations
MAINT: Update verdored-meson/meson to match main.
BUG: fix refcount leak on overlapping copyto with where=False
[13 lines not shown]
py-fastjsonschema: updated to 2.22.2
2.22.2
* Fixed wrong results of anyOf, oneOf, not, if/then/else, contains and propertyNames when `fast_fail` is off
* Fixed collecting errors from subschemas behind `$ref` when `fast_fail` is off
* Fixed escaping property name in boolean `dependencies` validation (prevents schema-controlled code injection)
py-project-api: updated to 1.11.0
1.11.0
Adds support for Python 3.15 and 3.15t, and fixes a race in
SubprocessCmdStatus.done: it keyed off returncode, which communicate() sets
before the thread stores the output, so a poller could reach out_err() while it
was still None (free-threaded builds hit this window). done now reports
finished only once the output is stored