ada-xmlada26: add new package version 26.0.0
Some changes from version 25.2:
* Check content of the base type to match complex type
* Propagate simple type for validation of the content
* Fix handling of the base complexType derived from simpleType
* Update expected data for tests
graphics/ruby-RMagick: update to 7.0.3
7.0.3 (2026-06-02)
Bug Fixes
* Fix potential stack buffer overflows in format_exception and
add_format_prefix by @Watson1978 in #1796
devel/ruby-console: update to 1.36.0
1.36.0 (2026-06-02)
* Add a size_limit to Console::Format::Safe (default 16KiB) which rebuilds
oversized records field-by-field, keeping as many top-level fields as fit
within the limit.
* Degraded fields are recorded in a truncated object that maps each field
name to why it was truncated: true (dropped for size) or the error (the
value could not be serialized directly and a safe representation was kept
in its place).
* Rename Console::Format::Safe's limit: to depth_limit: (with a deprecated
limit: alias) to clarify its purpose alongside the new size_limit:.
(parallel/R-promises) Updated 1.3.2 to 1.5.0
# promises 1.5.0
----------------
## OpenTelemetry
promises now integrates with the otel package to provide observability
and tracing for asynchronous operations.
* `local_otel_promise_domain()` adds an OpenTelemetry span promise
domain to the local scope. This is useful for `{coro}` operations
where encapsulating the coro operations inside `with_*()` methods is
not allowed. (#179)
* `with_otel_promise_domain()` creates a promise domain that restores
the currently active OpenTelemetry span from when a call to `then()`
is executed. This enables proper tracing context across asynchronous
operations. (#173)
[115 lines not shown]
(devel/R-otel) import R-otel-0.2.0
High-quality, ubiquitous, and portable telemetry to enable effective
observability. OpenTelemetry is a collection of tools, APIs, and SDKs
used to instrument, generate, collect, and export telemetry data
(metrics, logs, and traces) for analysis in order to understand your
software's performance and behavior. This package implements the
OpenTelemetry API: <https://opentelemetry.io/docs/specs/otel/>. Use
this package as a dependency if you want to instrument your R package
for OpenTelemetry.
devel/task: update to 3.51.1
* A significant performance boost was achieved for large Taskfiles
(monorepos) by skipping templating altogether when the string is static.
* Added absPath template function that resolves a path to its absolute
form, cleaning .. and . components.
* Added joinEnv function to join paths based on your oprating system: ; for
Windows and : elsewhere, and joinUrl to join URL paths. Also, added two
new special variables: FILE_PATH_SEPARATOR which returns \ on Windows and
/ elsewhere, and PATH_LIST_SEPARATOR which returns ; on Windows and :
elsewhere.
* Update the shell interpreter with a regression fix.
* Fix potential panic with the shell interpreter.
[clang-doc] Move Generator classes into the anonymous namespace (#202058)
Clang-Tidy suggest moving these classes into the anonymous namespace,
to enforce internal linkage.