Commit 24a32033 authored by catch's avatar catch
Browse files

Issue #3323741 by andypost, Spokje, catch, longwave: upgrade Symfony dependencies to RC1

parent 0880562f
Loading
Loading
Loading
Loading
+9 −9
+96 −96

File changed.

Preview size limit exceeded, changes collapsed.

+0 −7
Original line number Diff line number Diff line
@@ -79,13 +79,6 @@ public static function setDrupalVersion(string $root, string $version): void {
  protected static function setTemplateProjectStability(string $root, string $version): void {
    $stability = VersionParser::parseStability($version);

    // Drupal 10.0.0-RC1 is being released before Symfony 6.2.0-RC1, so
    // temporarily set the stability to beta instead of RC.
    // @todo Remove this after Symfony 6.2.0-RC1 is released.
    if (str_starts_with($version, '10.0.0-') && ($stability === 'RC')) {
      $stability = 'beta';
    }

    $templateProjectPaths = static::composerSubprojectPaths($root, 'Template');
    foreach ($templateProjectPaths as $path) {
      $dir = dirname($path);
+0 −7
Original line number Diff line number Diff line
@@ -150,13 +150,6 @@ protected function getPackage(IOInterface $io, string $original_json): array {

    $stability = VersionParser::parseStability(\Drupal::VERSION);

    // Drupal 10.0.0-RC1 is being released before Symfony 6.2.0-RC1, so
    // temporarily set the stability to beta instead of RC.
    // @todo Remove this after Symfony 6.2.0-RC1 is released.
    if (str_starts_with(\Drupal::VERSION, '10.0.0-') && ($stability === 'RC')) {
      $stability = 'beta';
    }

    // List of packages which we didn't find in either core requirement.
    $not_in_core = [];

+14 −14

File changed.

Preview size limit exceeded, changes collapsed.

Loading