Drupal 11 compatibility fixes
Closes #3465838
Merge request reports
Activity
added 1 commit
added 1 commit
- be87f9e0 - Remove drupal/bootstrap as a dev requirement
added 1 commit
- b0a87e14 - 3465838: Add lifecycle_link to webform_bootstrap.info.yml
added 5 commits
- 2f32e8e2 - Issue #3435903: Fix incompatibility with devel ^5.2
- ef79561a - Use ::getEntityStorage() in WebformSubmissionDevelGenerate
- 3189f2a9 - Call parent::create() in WebformSubmissionDevelGenerate
- c379dba0 - Remove WebformSubmissionDevelGenerate::$messenger which is inherited from MessengerTrait
- d00094b2 - Remove setting WebformSubmissionDevelGenerate::$messenger which is set in the parent
Toggle commit listadded 12 commits
-
d00094b2...daf56563 - 2 commits from branch
project:6.3.x
- 624596c1 - Issue #3465838: Drupal 11 compatibility fixes for webform
- 897051af - Mark webform_bootstrap as deprecated
- 09291858 - Remove drupal/bootstrap as a dev requirement
- 3ed6ca89 - 3465838: Add lifecycle_link to webform_bootstrap.info.yml
- 4914009a - Issue #3435903: Fix incompatibility with devel ^5.2
- fcfb5f6d - Use ::getEntityStorage() in WebformSubmissionDevelGenerate
- f52b3300 - Call parent::create() in WebformSubmissionDevelGenerate
- 4871a58f - Remove WebformSubmissionDevelGenerate::$messenger which is inherited from MessengerTrait
- 4befc1fb - Remove setting WebformSubmissionDevelGenerate::$messenger which is set in the parent
- 1b07e361 - Reset testing config to match dev branch
Toggle commit list-
d00094b2...daf56563 - 2 commits from branch
added 9 commits
-
1b07e361...4f34e049 - 7 commits from branch
project:6.3.x
- 6fd576f8 - Merge branch '6.3.x' into 3465838-drupal-11-compatibility
- 35bbfa79 - Allow ckeditor module for now.
-
1b07e361...4f34e049 - 7 commits from branch
added 1 commit
- d4d681c6 - Remove group dev dep, it doesnt seem needed and has issues
added 11 commits
- 0e8179d3 - 1 earlier commit
- 947735a8 - Mark webform_bootstrap as deprecated
- c1099b71 - Remove drupal/bootstrap as a dev requirement
- a5df07f0 - 3465838: Add lifecycle_link to webform_bootstrap.info.yml
- 23801c98 - Issue #3435903: Fix incompatibility with devel ^5.2
- 90529050 - Use ::getEntityStorage() in WebformSubmissionDevelGenerate
- 503e8468 - Call parent::create() in WebformSubmissionDevelGenerate
- 79bb7263 - Remove WebformSubmissionDevelGenerate::$messenger which is inherited from MessengerTrait
- 70b3a244 - Remove setting WebformSubmissionDevelGenerate::$messenger which is set in the parent
- feb64abc - Reset testing config to match dev branch
- d620dd71 - Fix composer next major.
Toggle commit list92 'sorting_code' => '', 93 ], $data['address_advanced']); 94 $this->assertNull($data['address_none']); 95 $this->assertEquals([[ 96 'address_line1' => '1098 Alta Ave', 97 'address_line2' => '', 98 'address_line3' => '', 99 'administrative_area' => 'CA', 100 'country_code' => 'US', 101 'family_name' => 'Smith', 102 'given_name' => 'John', 103 'langcode' => 'en', 104 'locality' => 'Mountain View', 105 'organization' => 'Google Inc.', 106 'postal_code' => '94043', 107 ]], $data['address_multiple']); changed this line in version 20 of the diff
145 153 // Check composite elements against address schema. 146 154 $composite_elements = $element['#webform_composite_elements']; 147 155 $diff_composite_elements = array_diff_key($composite_elements, $schema['columns']); 148 $this->debug($diff_composite_elements); 149 156 $this->assertEmpty($diff_composite_elements); 150 157 151 158 // Check composite elements maxlength against address schema. 152 159 foreach ($schema['columns'] as $column_name => $column) { 153 $this->assertEquals($composite_elements[$column_name]['#maxlength'], $column['length']); 160 // @todo: Add support for address_line3. 161 if ($column_name === 'address_line3') { changed this line in version 22 of the diff
Please register or sign in to reply