www/php-concrete-cms: update to 9.4.7
9.4.7 (2025-12-02)
Behavioral Improvements
* YouTube block view now contains iframe code to help YouTube render better
under certain stricter web server settings (thanks MarcoKuoni)
* We now define operation IDs for API endpoints (thanks hissy)
* On the Dashboard > Database Entities page we now show entities that are
defined using PHP attributes (not just entities) (thanks mlocati)
Bug Fixes
* Fixed: Conversations file attachment icons and file attachment area are
not formatted properly.
* Fixed: conversation loader shows properly.
* Fixed: The close "X" of Workflow pop-up only has Atomik css & doesn't show
up in other theme
[19 lines not shown]
lang/php84: update to 8.4.16
PHP 8.4.16 (2025-12-18)
- Core:
. Sync all boost.context files with release 1.86.0. (mvorisek)
. Fixed bug GH-20435 (SensitiveParameter doesn't work for named argument
passing to variadic parameter). (ndossche)
. Fixed bug GH-20286 (use-after-destroy during userland stream_close()).
(ndossche, David Carlier)
- Bz2:
. Fix assertion failures resulting in crashes with stream filter
object parameters. (ndossche)
- Date:
. Fix crashes when trying to instantiate uninstantiable classes via date
static constructors. (ndossche)
[85 lines not shown]
lang/php83: update to 8.3.29
PHP 8.3.29 (2025-12-18)
- Core:
. Sync all boost.context files with release 1.86.0. (mvorisek)
. Fixed bug GH-20435 (SensitiveParameter doesn't work for named argument
passing to variadic parameter). (ndossche)
. Fixed bug GH-20286 (use-after-destroy during userland stream_close()).
(ndossche, David Carlier)
- Bz2:
. Fix assertion failures resulting in crashes with stream filter
object parameters. (ndossche)
- Date:
. Fix crashes when trying to instantiate uninstantiable classes via date
static constructors. (ndossche)
[81 lines not shown]
devel/cargo-nextest: update to 0.9.115
Added
Nextest profiles now support inheritance via the inherits key. For example:
[profile.ci]
retries = 2
[profile.ci-extended]
inherits = "ci"
slow-timeout = "120s"
Thanks asder8215 for your first contribution! (#2786)
A new on-timeout option for slow-timeout allows tests that time out to be treated as successes instead of failures. This is useful for fuzz tests, or other tests where a timeout indicates no failing input was found. For example:
[[profile.default.overrides]]
filter = 'package(fuzz-targets)'
[9 lines not shown]
libansilove: Use FORCE_C_STD to gnu99.
This package uses extensions beyond strict C99 and specifying strict C99
causes implicit function declaration errors with recent versions of gcc,
notably on SunOS.