intial D11 compatiblity.
4 unresolved threads
4 unresolved threads
Closes #3466299
Merge request reports
Activity
1 name: 'Landing page' 1 name: Landing page 2 2 package: Lightning 3 core_version_requirement: '^9.3 || ^10' 3 core_version_requirement: ^10 || ^11 @deepakkm - Why we are dropping support of 9 any specific reason?
https://www.drupal.org/project/layout_builder_restrictions - this module has min Drupal 10 support
@deepakkm This module contains two releases i.e 2.x and 3.x. The 2.x release supports 9.3 and above. And also the
lightning_layout
module didn't add or define any dependencies forlayout_builder_restrictions
module. That means, it should works for both releases i.e 2.x and 3.x. So, I don't see any reason to drop the support for 9.x unless maintainer ask to do so
22 22 */ 23 23 protected static $modules = ['lightning_banner_block']; 24 24 25 /** 26 * Exempt from strict schema checking. 27 * 28 * @see \Drupal\Core\Config\Development\ConfigSchemaChecker 29 * 30 * @var bool 31 */ 32 // @todo remove this once min support is 10.3. 33 protected $strictConfigSchema = FALSE; @deepakkm Any reason of setting
strictConfigSchema
to FALSE ?
63 44 /** 64 45 * {@inheritdoc} 65 46 */ 66 47 public static function create(ContainerInterface $container) { 67 return new static( 68 $container->get('config.factory'), 69 $container->get('entity_type.manager'), 70 $container->get('plugin.manager.block'), 71 $container->get('module_handler') 72 ); 48 $instance = parent::create($container); 49 $instance->entityTypeManager = $container->get('entity_type.manager'); 50 $instance->blockManager = $container->get('plugin.manager.block'); 51 $instance->moduleHandler = $container->get('module_handler'); 52 53 return $instance; 42 "layout_library": { 43 "type": "vcs", 44 "url": "https://git.drupalcode.org/issue/layout_library-3431607.git" 45 }, 46 "entity_block": { 47 "type": "vcs", 48 "url": "https://git.drupalcode.org/issue/entity_block-3430128.git" 49 }, 50 "simple_gmap": { 51 "type": "vcs", 52 "url": "https://git.drupalcode.org/issue/simple_gmap-3434541.git" 53 }, 54 "bg_image_formatter": { 55 "type": "vcs", 56 "url": "https://git.drupalcode.org/issue/bg_image_formatter-3450893.git" 57 }
Please register or sign in to reply