rust192: use the NetBSD/riscv64 file which passes libc self-tests.
Also change how NetBSD defines pthread_spin_t, use __pthread_spin_t
which is typically arch-defined via __cpu_simple_lock_nv_t.
resterm: update to 0.13.2.
0.13.2
Navigator improvements
The file sidebar now displays your files in a proper folder structure instead of a flat list. This makes it much easier to work with projects that have files organized in subdirectories.
Folders appear at the top and can be expanded/collapsed just like files.
.rts module files now show up in the navigator with a bullet (•) indicator instead of the expand/collapse caret
0.13.1
What's Changed
Fixes a bug where request.query could show a URL path as if it were query parameters. Query parsing now only considers real query strings, and relative URLs like /path?p=2 work correctly.
Includes small internal refactors with no behavior changes.
0.13.0
[10 lines not shown]
OpenJPH: update to 0.26.0.
This version:
Renames src/core/common to src/core/openjph, as request by @cary-ilm. It is best to use his words
" OpenJPH headers are included in application code via #include <openjph/ojph_version.h>. The headers are expected to be in a folder named "openjph". The cmake configuration places them there in the installation step.
However, if OpenJPH is incorporated into an application via cmake's add_subdirectory, there is no installation step, the headers are included directly out of the source tree. There is no "openjph" folder, leading the #include <openjph/ojph_version.h> to fail.
Renaming the "common" directory to "openjph" resolves the build issue, since the headers then live inside the source tree in a directory with same name as the installation. The use of the "common" directory name is entirely internal to the OpenJPH build, it has no impact on the installation. The name should be arbitrary, so there should be no downside to renaming it this way."
Modifies error message names. This may break your code.
The modified versions are more descriptive, and less likely to be caught in a preprocessor macro.
Address an issue identified by @clshortfuse. Thank you Carlos.
During compilation on windows using clang-cl, the compiler may received flags designed for clang or gcc.
What's Changed
Merges PR #236, and another two smaller issues. by @aous72 in #237
py-typer: update to 0.21.0.
Breaking Changes
➖ Drop support for Python 3.8. PR #1464 by @tiangolo.
➖ Drop support for Python 3.8 in CI. PR #1463 by @YuriiMotov and @tiangolo.
Docs
📝 Update code examples to Python 3.9. PR #1459 by @YuriiMotov.
Internal
💚 Move ruff dependency to shared requirements-docs-tests.txt to fix "Build docs" workflow in CI. PR #1458 by @YuriiMotov.
⬆ Bump markdown-include-variants from 0.0.5 to 0.0.8. PR #1442 by @dependabot[bot].
👷 Add pre-commit workflow. PR #1453 by @tiangolo.
👷 Configure coverage, error on main tests, don't wait for Smokeshow. PR #1448 by @YuriiMotov.
👷 Run Smokeshow always, even on test failures. PR #1447 by @YuriiMotov.
🔨 Add Typer script to generate example variants for Python files. PR #1452 by @tiangolo.
py-mbake: update to 1.4.4.
Update special_target_validation to not require prerequisites for SECONDARY, PRECIOUS, INTERMEDIATE (see #65).
Normalizes indentation for variable and recipe continuations (see #68).
Fix duplicate .PHONY declarations (see #70).
Added group_phony_declarations option (only active when auto_insert_phony_declarations is enabled) (see #70).
lcov: update to 2.4.
Changes since v2.3.2:
enhanced criteria.pm module, to check function, branch, and MC/DC metrics.
enhance llvm2lcov to support llvm/21 and higher.
various bug fixes
dasel: update to 3.2.0.
## [v3.2.0] - 2025-12-26
### Added
- `join` function to join array elements into a single string with a specified separator. [See docs](https://daseldocs.tomwright.me/functions/join).
py-sentry-sdk: updated to 2.48.0
2.48.0
Middleware spans are now disabled by default in Django, Starlette and FastAPI integrations. Set the middleware_spans integration-level option to capture individual spans per middleware layer. To record Django middleware spans, for example, configure as follows
import sentry_sdk
from sentry_sdk.integrations.django import DjangoIntegration
sentry_sdk.init(
dsn="<your-dsn>",
integrations=[
DjangoIntegration(middleware_spans=True),
],
)
New Features
feat(ai): add single message truncation
[63 lines not shown]
kronolith: fix make(1) substitution in INSTALLATION_DIRS
Back in May 2020, make(1) was changed to disallow the particular
substitution form used in one of the INSTALLATION_DIRS assignments.
https://github.com/NetBSD/src/commit/3b58d8437a0b171a42895aedbcd93e4f8b8c10e0
Incorrect/useless DESTDIR directories have been created by builds using
newer versions of the tool, though this is harmless.