- Issue created by @Project Update Bot
- last update
8 months ago run-tests.sh fatal error This is an automated patch generated using Upgrade Status and Drupal Rector. Please see the issue summary for more details. A merge request (MR) is also openend and updated.
It is important that any automated tests available are run and that you manually test the changes.
Drupal 11 Compatibility
According to the Upgrade Status module → these changes make this module compatible with Drupal 11! 🎉
Therefore these changes update theinfo.yml
file for Drupal 11 compatibility.Leaving this issue open, even after committing the current patch or merging the MR, will allow the Project Update Bot → to post additional Drupal 11 compatibility fixes as they become available in Drupal Rector.
Debug information
Bot run #11-127659These packages were used to generate the fixes:
- drupal/upgrade_status: 4.1.0
- mglaman/phpstan-drupal: 1.2.9
- palantirnet/drupal-rector: 0.20.1
- Status changed to Needs review
8 months ago 8:05pm 24 March 2024 - last update
8 months ago run-tests.sh fatal error - 🇮🇳India chandu7929 Pune
chandu7929 → changed the visibility of the branch project-update-bot-only to hidden.
- 🇮🇳India chandu7929 Pune
I will remove this temp commit once review done. Requesting review.
- Status changed to Needs work
3 months ago 9:25am 20 August 2024 - Status changed to Needs review
3 months ago 10:05am 21 August 2024 - 🇮🇳India chandu7929 Pune
In Drupal 10.3, multivalue fields now have a field label.
See the change record at: New method getLabel() on FieldItemDataDefinition → , hence updated minimum core requirement to 10.3.In order to support below 10.3 we need to update function definition of
requestOpenApiJson()
from openapi module to process expectations data something like below:// As per changes request https://www.drupal.org/node/3404250 // now FieldItemDataDefinition has new key title added automatically // for core 10.3 below lets remove these keys if (version_compare(\Drupal::VERSION, '10.3.0', '<')) { $expected = $this->updateExpectations($file_name); } ... protected function updateExpectations() { // Data update logic here. }
- Status changed to RTBC
3 months ago 11:26am 21 August 2024 - 🇮🇳India ankitv18
RTBC++ to merge this one ~~ in this we are dropping D8 and D9 as per CR: https://www.drupal.org/node/3404250 →