From d966b347648d5da4cbeb72b0caa6c86a511ac9d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Kalij=C3=A4rvi?= Date: Wed, 19 Jun 2024 12:36:44 +0300 Subject: [PATCH 1/2] Lock Gin version to RC10 until we've checked all possible issues from RC11. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index fa0b7147..f9e5c6af 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "license": "GPL-2.0+", "minimum-stability": "dev", "require": { - "drupal/gin": "^3.0@rc", + "drupal/gin": "3.0.0-rc10", "drupal/admin_toolbar": "^3.0" }, "conflict": { From 5efc58b8e1197f331efaea496980dfa6a8ca86f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Kalij=C3=A4rvi?= Date: Wed, 19 Jun 2024 12:41:03 +0300 Subject: [PATCH 2/2] Switch the Gin RC10 downgrade to conflict instead. --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index f9e5c6af..d3110f60 100644 --- a/composer.json +++ b/composer.json @@ -6,10 +6,11 @@ "license": "GPL-2.0+", "minimum-stability": "dev", "require": { - "drupal/gin": "3.0.0-rc10", + "drupal/gin": "^3.0@rc", "drupal/admin_toolbar": "^3.0" }, "conflict": { + "drupal/gin": ">3.0.0-rc10", "drupal/helfi_platform_config": "<4.3" } }