- Issue created by @emptyvoid
- πΊπΈUnited States emptyvoid
Created a patch addressing all of the items sighted.
- Status changed to Needs work
2 months ago 2:18pm 29 January 2025 - πΊπΈUnited States pcate
I applied patch #4 and ran the upgrade status module scan on the module. The following errors were found affecting Drupal 11 compatibility.
2 errors found. modules/contrib/layout_builder_block_sanitizer/src/LayoutBuilderBlockSanitizerMa nager.php: | 115 | Call to deprecated method get() of class Drupal\layout_builder\SectionComponent. Deprecated in drupal:10.2.0 and is removed from drupal:11.0.0. Additional properties should be gotten via ::getThirdPartySetting(). | | 136 | Call to deprecated method get() of class Drupal\layout_builder\SectionComponent. Deprecated in drupal:10.2.0 and is removed from drupal:11.0.0. Additional properties should be gotten via ::getThirdPartySetting().
- Merge request !2applied @emptyvoid patch and replaced get method with getConfiguration β (Open) created by pcate
- πΊπΈUnited States pcate
I created a MR with @emptyvoid patch. I also replaced the
$section_component->get('configuration')
call with$section_component->getConfiguration()
to fix the deprecation warning.