From 27cc83af342d9be8db3e7827d271c6bdc26ea3a2 Mon Sep 17 00:00:00 2001 From: Rosie Le Faive Date: Fri, 8 Mar 2024 10:27:42 -0400 Subject: [PATCH 1/4] Update testing drupal and php versions. --- .github/workflows/build-3.x.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-3.x.yml b/.github/workflows/build-3.x.yml index 40475d4..aecc2ab 100644 --- a/.github/workflows/build-3.x.yml +++ b/.github/workflows/build-3.x.yml @@ -21,8 +21,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: ["8.1", "8.2"] - drupal-version: ["10.0.x", "10.1.x", "10.2.x-dev"] + php-versions: ["8.1", "8.2", "8.3"] + drupal-version: ["10.1.x", "10.2.x", "10.3.x-dev"] env: DRUPAL_VERSION: ${{ matrix.drupal-version }} From c87c63247c412882322e13e4e5c5a7b970a608d0 Mon Sep 17 00:00:00 2001 From: Rosie Le Faive Date: Fri, 8 Mar 2024 11:12:10 -0400 Subject: [PATCH 2/4] Exclude PHP 8.3 x Drupal 10.1. --- .github/workflows/build-3.x.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build-3.x.yml b/.github/workflows/build-3.x.yml index aecc2ab..c2951fe 100644 --- a/.github/workflows/build-3.x.yml +++ b/.github/workflows/build-3.x.yml @@ -23,6 +23,9 @@ jobs: matrix: php-versions: ["8.1", "8.2", "8.3"] drupal-version: ["10.1.x", "10.2.x", "10.3.x-dev"] + exclude: + - php-versions: "8.3" + drupal-version: "10.1.x" env: DRUPAL_VERSION: ${{ matrix.drupal-version }} From 8ff13db5fad1df8a7b9daa233a2ec66d6c16a6b9 Mon Sep 17 00:00:00 2001 From: Rosie Le Faive Date: Tue, 28 May 2024 14:27:38 -0300 Subject: [PATCH 3/4] Add composer replace islandora/jsonld --- composer.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/composer.json b/composer.json index f0ea87d..eeb3e59 100644 --- a/composer.json +++ b/composer.json @@ -19,6 +19,9 @@ "role": "Maintainer" } ], + "replace": { + "islandora/jsonld": "self.version" + }, "require" : { "drupal/core": "^10", "drupal/hal": "^1||^2", From 67219ee1a7f27fdaf5bd4c2a24bca24e646ddcc2 Mon Sep 17 00:00:00 2001 From: Rosie Le Faive Date: Wed, 29 May 2024 15:46:16 -0300 Subject: [PATCH 4/4] Remove debug line. --- tests/src/Functional/JsonldContextGeneratorTest.php | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/src/Functional/JsonldContextGeneratorTest.php b/tests/src/Functional/JsonldContextGeneratorTest.php index c14df32..d3f5cae 100644 --- a/tests/src/Functional/JsonldContextGeneratorTest.php +++ b/tests/src/Functional/JsonldContextGeneratorTest.php @@ -121,7 +121,6 @@ public function testJsonldcontextResponseIsValid() { $this->drupalGet($url); $this->assertSession()->statusCodeEquals(200); $jsonldarray = json_decode($this->getSession()->getPage()->getContent(), TRUE); - dump($jsonldarray); $this->assertEquals($expected, $jsonldarray, "Returned @context matches expected response."); }