From 529b6f7709dc410833c89ca60f66a3b4e8947e58 Mon Sep 17 00:00:00 2001 From: Mike Decker Date: Thu, 9 Jan 2025 14:01:04 -0800 Subject: [PATCH] 8.6.9 --- CHANGELOG.md | 6 ++++++ composer.json | 2 +- src/Plugin/migrate/source/StanfordUrl.php | 2 +- stanford_migrate.info.yml | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fa9874..c48f3a9 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Stanford Migrate +8.6.9 +-------------------------------------------------------------------------------- +_Release Date: 2025-01-09_ + +- Allow install with migrate_file > 3.0 for D11 support. + 8.6.8 -------------------------------------------------------------------------------- _Release Date: 2024-12-13_ diff --git a/composer.json b/composer.json index 967320f..38f9291 100755 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ "php": ">=8.0", "drupal/core": "^10.3 || ^11", "drupal/empty_fields": "^1.0@beta", - "drupal/migrate_file": "^2.0", + "drupal/migrate_file": "^2.0 || ^3.0", "drupal/migrate_plus": "^6.0", "drupal/migrate_source_csv": "^3.4", "drupal/migrate_tools": "^6.0", diff --git a/src/Plugin/migrate/source/StanfordUrl.php b/src/Plugin/migrate/source/StanfordUrl.php index 610ad35..f37d6a0 100644 --- a/src/Plugin/migrate/source/StanfordUrl.php +++ b/src/Plugin/migrate/source/StanfordUrl.php @@ -43,7 +43,7 @@ public function getAllIds() { * Modify the parent method by adding the current feed url into the source * data. This can then be used by process plugins. */ - public function next() { + public function next(): void { $this->currentSourceIds = NULL; $this->currentRow = NULL; diff --git a/stanford_migrate.info.yml b/stanford_migrate.info.yml index 7d033c1..05e3221 100755 --- a/stanford_migrate.info.yml +++ b/stanford_migrate.info.yml @@ -3,7 +3,7 @@ description: 'Adds more functionality to migrate and migrate plus modules' type: module core_version_requirement: ^10.3 || ^11 package: 'Stanford' -version: 8.6.8 +version: 8.6.9 dependencies: - drupal:migrate - empty_fields:empty_fields