Skip to content
Snippets Groups Projects

intial D11 compatiblity.

4 unresolved threads

Closes #3466299

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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
  • 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;
  • 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 }
    • Comment on lines +38 to +57
      • Lightning Core should be dropped as a dependency entirely, or it should block progress here.
      • The remaining dependencies now have a tagged release which includes Drupal 11 support and should not be tied to specific issue repositories.
    • Please register or sign in to reply
    Please register or sign in to reply
    Loading