✅ Released varbase_dashboards-2.0.0-beta1 →
✅ Released varbase_dashboards-2.0.0-beta1 →
✅ Released varbase_components-3.0.0-beta2 →
✅ Released varbase_carousels-10.1.0-beta1 →
✅ Released varbase_bootstrap_paragraphs-9.1.17 →
✅ Released varbase_bootstrap_paragraphs-10.0.14 →
✅ Released varbase_bootstrap_paragraphs-10.1.0-beta1 →
Hopping for a soft release, to ease testing and adopting this module.
We had been testing
https://git.drupalcode.org/project/jsonapi_extras/-/merge_requests/65.diff
from
🐛
Fix installation error with JSON:API Extra in custom Drupal 11 profiles due to missing synthetic service `kernel`
Active
For couple of months
diff --git a/src/EventSubscriber/ConfigSubscriber.php b/src/EventSubscriber/ConfigSubscriber.php
index 6c46079ce33dceb05342792b712a9af72fc8813b..1721046bc64ee2f2b4fdf793977ef1bc3a2ed5ec 100644
--- a/src/EventSubscriber/ConfigSubscriber.php
+++ b/src/EventSubscriber/ConfigSubscriber.php
@@ -59,7 +59,7 @@ class ConfigSubscriber implements EventSubscriberInterface {
public function onSave(ConfigCrudEvent $event) {
$container = $this->drupalKernel->getContainer();
// It is problematic to rebuild the container during the installation.
- $should_process = $container->getParameter('kernel.environment') !== 'install'
+ $should_process = (!defined('MAINTENANCE_MODE') || (defined('MAINTENANCE_MODE') && MAINTENANCE_MODE !== 'install'))
&& (!$container->hasParameter('jsonapi_extras.base_path_override_disabled') || !$container->getParameter('jsonapi_extras.base_path_override_disabled'))
&& $event->getConfig()->getName() === 'jsonapi_extras.settings';
if ($should_process) {