- Issue created by @bkosborne
Drupal 9.1.0-alpha1 β will be released the week of October 19, 2020, which means new developments and disruptive changes should now be targeted for the 9.2.x-dev branch. For more information see the Drupal 9 minor version schedule β and the Allowed changes during the Drupal 9 release cycle β .
Drupal 8.9.0-beta1 β was released on March 20, 2020. 8.9.x is the final, long-term support (LTS) minor release of Drupal 8, which means new developments and disruptive changes should now be targeted against the 9.1.x-dev branch. For more information see the Drupal 8 and 9 minor version schedule β and the Allowed changes during the Drupal 8 and 9 release cycles β .
Drupal 8.8.0-alpha1 will be released the week of October 14th, 2019, which means new developments and disruptive changes should now be targeted against the 8.9.x-dev branch. (Any changes to 8.9.x will also be committed to 9.0.x in preparation for Drupal 9βs release, but some changes like significant feature additions will be deferred to 9.1.x.). For more information see the Drupal 8 and 9 minor version schedule β and the Allowed changes during the Drupal 8 and 9 release cycles β .
Drupal 9.2.0-alpha1 β will be released the week of May 3, 2021, which means new developments and disruptive changes should now be targeted for the 9.3.x-dev branch. For more information see the Drupal core minor version schedule β and the Allowed changes during the Drupal core release cycle β .
- πΊπΈUnited States yas California πΊπΈ
@bkosborne
I also fixed
hook_field_storage_config_update_forbid()
infield.api.php
since the member$field_storage->module
has protected access. Drupal 9.5.0-beta2 β and Drupal 10.0.0-beta2 β were released on September 29, 2022, which means new developments and disruptive changes should now be targeted for the 10.1.x-dev branch. For more information see the Drupal core minor version schedule β and the Allowed changes during the Drupal core release cycle β .
Drupal 9.4.0-alpha1 β was released on May 6, 2022, which means new developments and disruptive changes should now be targeted for the 9.5.x-dev branch. For more information see the Drupal core minor version schedule β and the Allowed changes during the Drupal core release cycle β .
Drupal 9.3.0-rc1 β was released on November 26, 2021, which means new developments and disruptive changes should now be targeted for the 9.4.x-dev branch. For more information see the Drupal core minor version schedule β and the Allowed changes during the Drupal core release cycle β .
Drupal core is moving towards using a βmainβ branch. As an interim step, a new 11.x branch has been opened β , as Drupal.org infrastructure cannot currently fully support a branch named
main
. New developments and disruptive changes should now be targeted for the11.x
branch, which currently accepts only minor-version allowed changes. For more information, see the Drupal core minor version schedule β and the Allowed changes during the Drupal core release cycle β .- πΊπΈUnited States smustgrave
Thank you for this fix.
It was tagged for tests though so moving back to needs work for those.
- First commit to issue fork.
- Merge request !5679Issue #3061010: Options module should not prevent field storage updates when switching to/from function β (Open) created by acbramley
- ππΊHungary nagy.balint
Hi!
It seems the issue is even bigger since 10.2 because the ListItemBase.php is changed now and it has code parts like
core/modules/options/src/Plugin/Field/FieldType/ListItemBase.phpif (!$form_state->get('items_count')) { $form_state->set('items_count', max(count($allowed_values), 0)); }
must be of type Countable|array, null given in count()
or$current_keys = array_keys($allowed_values);
must be of type array, null given in array_keys()
Because it is possible to empty the allowed values by manually editing and importing config, but since 10.2 the system fails when the $allowed_values is empty.