None of the patches worked on Drupal 10.3.12, Panels 4.8, Panelizer 4.5.0.
Simple `Powered By Drupal` block was added to new empty panel and error occurred when saving panel:
Drupal\Component\Plugin\Exception\PluginNotFoundException: Plugin ID 'eae2393c-52b3-4d7a-a134-f9af02ec7aec' was not found. in Drupal\Core\Plugin\DefaultLazyPluginCollection->initializePlugin() (line 79 of core/lib/Drupal/Core/Plugin/DefaultLazyPluginCollection.php).
Drupal\Component\Plugin\LazyPluginCollection->get('eae2393c-52b3-4d7a-a134-f9af02ec7aec') (Line: 19)
Drupal\ctools\Plugin\BlockPluginCollection->get('eae2393c-52b3-4d7a-a134-f9af02ec7aec') (Line: 43)
Drupal\ctools\Plugin\DisplayVariant\BlockDisplayVariant->getBlock('eae2393c-52b3-4d7a-a134-f9af02ec7aec') (Line: 55)
Drupal\panels_ipe\Helpers\UpdateLayoutRequestHandler::updatePanelsDisplay(Object, Array) (Line: 24)
Drupal\panels_ipe\Helpers\UpdateLayoutRequestHandler->updateLayout(Object, Array, ) (Line: 13)
Drupal\panels_ipe\Helpers\UpdateLayoutRequestHandler->handle(Object, Array, ) (Line: 49)
Drupal\panels_ipe\Helpers\RequestHandlerBase->handleRequest(Object, Object) (Line: 251)
Drupal\panels_ipe\Controller\PanelsIPEPageController->handleUpdateLayoutRequest('panelizer_default', '*node:11878:full:default', Object)
When adding Content -> ID block (to simply show node id) after clicking `Add` block button:
Drupal\Component\Plugin\Exception\MissingValueContextException: Required contexts without a value: entity in Drupal\Core\Plugin\Context\ContextHandler->applyContextMapping() (line 150 of core/lib/Drupal/Core/Plugin/Context/ContextHandler.php).
Drupal\panels_ipe\Form\PanelsIPEBlockPluginForm->buildBlockInstance(Object, Object) (Line: 331)
Drupal\panels_ipe\Form\PanelsIPEBlockPluginForm->submitForm(Array, Object, Object)
call_user_func_array(Array, Array) (Line: 69)
Drupal\Core\Form\FormAjaxResponseBuilder->buildResponse(Object, Array, Object, Array) (Line: 112)
Drupal\Core\Form\EventSubscriber\FormAjaxSubscriber->onException(Object, 'kernel.exception', Object)
call_user_func(Array, Object, 'kernel.exception', Object) (Line: 111)
Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch(Object, 'kernel.exception') (Line: 239)
Symfony\Component\HttpKernel\HttpKernel->handleThrowable(Object, Object, 1) (Line: 91)
@bloke_zero have same issue after updating to Monolog 3.
Created new issue with a dirty fix (IMHO issue is in Newrelic side)
https://www.drupal.org/project/monolog/issues/3444346
🐛
Placeholder variables are not working (newrelic)
Active
Also you need to patch Pagerer → module to work on D10
- https://www.drupal.org/project/pagerer/issues/3384775 🐛 Removed plugin configs should be uninstalled Fixed
- https://www.drupal.org/project/pagerer/issues/3384778 🐛 PHP 8.1: TypeError must be of type int Fixed
Patch for removing configs.
Got same issue as in #29. `/sitemap.xml` page gets cached and is served for other domains.
Instead on disabling `/sitemap.xml` page cache completely as it is done in #30, added `url` cache context that means result will be cached for every url variation.
Patch is based on #20.