Skip to content
Snippets Groups Projects

Issue #2707689: NodeForm::actions() checks for delete access on new entities

2 files
+ 3
3
Compare changes
  • Side-by-side
  • Inline
Files
2
  • d0a3628e
    Issue #3215870 by catch, effulgentsia, Gábor Hojtsy, xjm, andypost, longwave,... · d0a3628e
    Jess authored
    Issue #3215870 by catch, effulgentsia, Gábor Hojtsy, xjm, andypost, longwave, freelock, Mixologic, phenaproxima, ressa: Require Composer 2.3.5 for developing Drupal 10 core
+ 2
2
@@ -91,8 +91,8 @@ protected static function setTemplateProjectStability(string $root, string $vers
public static function ensureComposerVersion(): void {
$composerVersion = method_exists(ComposerApp::class, 'getVersion') ?
ComposerApp::getVersion() : ComposerApp::VERSION;
if (Comparator::lessThan($composerVersion, '2.0.0')) {
throw new \RuntimeException("Drupal core development requires Composer 2.0.0, but Composer $composerVersion is installed. Please run 'composer self-update'.");
if (Comparator::lessThan($composerVersion, '2.3.5')) {
throw new \RuntimeException("Drupal core development requires Composer 2.3.5, but Composer $composerVersion is installed. Please run 'composer self-update'.");
}
}
Loading