BAT 11.1.0-rc11 is the latest release. We need community testing to move to a stable release.

🔍 Issues that need review

https://www.drupal.org/project/issues/bat?status=8

âś… How you can help

  1. Pick any issue from the queue above
  2. Test against RC11 on your own use case / test environment
  3. Comment on the issue with:

Tested against RC11, works as expected. RTBC.

If something fails, please provide details (steps to reproduce, error messages, etc.).

🗓️ Target

We aim to close all "Needs review" issues and tag a stable release by June 30, 2026.

Thank you for helping BAT reach stable! 🦇

@maintainers – please pin this comment.


Comments

afagioli created an issue.

herryaprasetyo’s picture

Tested against RC11 on PHP 8.4.

I'm experiencing PHP 8.4+ deprecation warnings in the following form constructors:
- TypeGroupForm::__construct() - parameters $entity_type_bundle_info and $time
- BookingForm::__construct() - parameters $entity_type_bundle_info and $time
- EventForm::__construct() - parameters $entity_type_bundle_info and $time
- UnitForm::__construct() - parameters $entity_type_bundle_info and $time
- UnitTypeForm::__construct() - parameters $entity_type_bundle_info and $time

The warnings are about implicitly marking parameters as nullable instead of using explicit nullable types (e.g., ?EntityTypeBundleInfoInterface instead of EntityTypeBundleInfoInterface with default null).

This should be fixed before the stable release for PHP 8.4+ compatibility.

afagioli’s picture

Thanks @herryaprasetyo