Resolve #3384600 "10.3.x "
2 open threads
2 open threads
Closes #3384600
Merge request reports
Activity
93 93 // Get the names of all config entities that depend on $this->bundle. 94 94 $config_name = $this->bundle->getConfigDependencyName(); 95 95 $config_entities = $this->configManager 96 ->getConfigEntitiesToChangeOnDependencyRemoval('config', [$config_name]); 96 ->findConfigEntityDependenciesAsEntities('config', [$config_name]); 97 97 $config_names = array_map( 98 98 function ($dependent_config) { 99 99 return $dependent_config->getConfigDependencyName(); 100 }, $config_entities['delete'] ?? [] 100 }, $config_entities #3306434 was fixed, and made a similar change to these lines. We can remove this change.
changed this line in version 2 of the diff
[#3306434] was committed so I rebased against the latest 10.3.x
60 60 $module_handler = $this->prophesize(ModuleHandlerInterface::class)->reveal(); 61 61 $module_extension_list = $this->prophesize(ModuleExtensionList::class)->reveal(); 62 62 $prophecy = $this->prophesize(ConfigManagerInterface::class); 63 $prophecy->getConfigEntitiesToChangeOnDependencyRemoval('config', ['node.type.article']) 63 $prophecy->findConfigEntityDependenciesAsEntities('config', ['node.type.article']) 64 64 ->willReturn([ 65 'delete' => [ 66 65 new ConfigEntityDependency('core.entity_view_display.node.article.full'), 67 66 new ConfigEntityDependency('field.field.node.article.body'), 68 ], - Comment on lines -63 to -68
If the changes to
core/modules/user/src/Form/EntityPermissionsForm.php
are made in [#3306434], then these changes will be made there, too. #3306434 was fixed, and made a similar change to these lines. We can remove this change.
[#3306434] was committed so I rebased against the latest 10.3.x
added 94 commits
-
39a75faa...387e4e94 - 93 commits from branch
project:10.3.x
- 1bca449b - Diff from MR!8488 without the deprecations
-
39a75faa...387e4e94 - 93 commits from branch
Please register or sign in to reply