Closed (fixed)
Project:
Layout Builder Theme Switcher
Version:
2.0.0
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Reporter:
Created:
10 Dec 2025 at 10:43 UTC
Updated:
25 Dec 2025 at 16:49 UTC
Jump to comment: Most recent
Add Drupal 11 support for the module.
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #3
froboy@andrii.tiupa thanks for this. It looks like config.typed exists in D10 so I think we should be ok with just a minor bump, but have you tested on a D10 site? Just wondering how much we need to bump the version.
Comment #4
andrii.tiupa commented@froboy Indeed, in D10 we have
protected $typedConfigManager = NULL,which is why the old approach worked without issues.
But in D11 it has changed to
protected TypedConfigManagerInterface $typedConfigManager,so it now throws a fatal error on D10. Because of that, we should bump the version.
Comment #6
froboy