From 00b52107a720a4b99639d118c10b23da7790b805 Mon Sep 17 00:00:00 2001 From: Lee Mills Date: Thu, 14 Aug 2025 17:08:17 +0100 Subject: [PATCH 1/4] fix: failing phpunit test --- tests/src/Functional/LocalGovUpdateTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/src/Functional/LocalGovUpdateTest.php b/tests/src/Functional/LocalGovUpdateTest.php index 97ff5d7..0b7ef83 100644 --- a/tests/src/Functional/LocalGovUpdateTest.php +++ b/tests/src/Functional/LocalGovUpdateTest.php @@ -26,6 +26,7 @@ class LocalGovUpdateTest extends UpdatePathTestBase { 'core.entity_view_display.geo_entity.area.default', 'core.entity_view_display.geo_entity.area.embed', 'core.entity_view_display.geo_entity.area.full', + 'core.entity_view_display.geo_entity.address.default', // Missing schema: // - content.location.settings.geometry_validation. // - content.location.settings.multiple_map. From efa42918107ca4e16ac15d06d308f2e4bdef7f7f Mon Sep 17 00:00:00 2001 From: Lee Mills Date: Thu, 14 Aug 2025 17:15:31 +0100 Subject: [PATCH 2/4] fix: failing phpunit test --- tests/src/Functional/LocalGovUpdateTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/src/Functional/LocalGovUpdateTest.php b/tests/src/Functional/LocalGovUpdateTest.php index 0b7ef83..2c8d890 100644 --- a/tests/src/Functional/LocalGovUpdateTest.php +++ b/tests/src/Functional/LocalGovUpdateTest.php @@ -27,6 +27,8 @@ class LocalGovUpdateTest extends UpdatePathTestBase { 'core.entity_view_display.geo_entity.area.embed', 'core.entity_view_display.geo_entity.area.full', 'core.entity_view_display.geo_entity.address.default', + 'core.entity_view_display.geo_entity.address.embed', + 'core.entity_view_display.geo_entity.address.full', // Missing schema: // - content.location.settings.geometry_validation. // - content.location.settings.multiple_map. From 7d470a5020e0bbfe95cad2f4fca7ad4239a5d15c Mon Sep 17 00:00:00 2001 From: Lee Mills Date: Thu, 14 Aug 2025 17:33:44 +0100 Subject: [PATCH 3/4] fix: failing phpunit test --- tests/src/Functional/LocalGovUpdateTest.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/tests/src/Functional/LocalGovUpdateTest.php b/tests/src/Functional/LocalGovUpdateTest.php index 2c8d890..9908dc0 100644 --- a/tests/src/Functional/LocalGovUpdateTest.php +++ b/tests/src/Functional/LocalGovUpdateTest.php @@ -20,15 +20,18 @@ class LocalGovUpdateTest extends UpdatePathTestBase { // Missing schema: // - 'content.location.settings.reset_map.position'. // - 'content.location.settings.weight'. + 'core.entity_view_display.localgov_geo.address.default', + 'core.entity_view_display.localgov_geo.address.embed', + 'core.entity_view_display.localgov_geo.address.full', 'core.entity_view_display.localgov_geo.area.default', 'core.entity_view_display.localgov_geo.area.embed', 'core.entity_view_display.localgov_geo.area.full', - 'core.entity_view_display.geo_entity.area.default', - 'core.entity_view_display.geo_entity.area.embed', - 'core.entity_view_display.geo_entity.area.full', 'core.entity_view_display.geo_entity.address.default', 'core.entity_view_display.geo_entity.address.embed', 'core.entity_view_display.geo_entity.address.full', + 'core.entity_view_display.geo_entity.area.default', + 'core.entity_view_display.geo_entity.area.embed', + 'core.entity_view_display.geo_entity.area.full', // Missing schema: // - content.location.settings.geometry_validation. // - content.location.settings.multiple_map. @@ -60,6 +63,8 @@ class LocalGovUpdateTest extends UpdatePathTestBase { // Incorrect schema: // - scheduled_transitions.settings:retain_processed.duration. 'scheduled_transitions.settings', + // Missing schema: + 'views.view.localgov_directory_channel', ]; /** From bf9d4748634b50116a5523ce5b53a8800472ace7 Mon Sep 17 00:00:00 2001 From: Lee Mills Date: Sat, 16 Aug 2025 13:08:18 +0100 Subject: [PATCH 4/4] revert: allow Drupal 11.2 installs --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 626ee3f..b74e0e3 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ ], "require": { "drupal/admin_toolbar": "^3.0", - "drupal/core": "^10.0 || ~11.1.0", + "drupal/core": "^10.0 || ~11.0", "drupal/gin": "^3.0 || ^4.0", "drupal/gin_login": "^2.0.3", "drupal/gin_toolbar": "^1.0 || ^2.0",