Skip to content

Commit

Permalink
8.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pookmish authored Aug 8, 2024
1 parent 6741704 commit 4578493
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Stanford Migrate

8.6.4
--------------------------------------------------------------------------------
_Release Date: 2024-08-08_

- Fixed Localist json data parser to work with the new version of migrate_plus


8.6.3
--------------------------------------------------------------------------------
_Release Date: 2024-07-31_
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin/migrate_plus/data_parser/LocalistJson.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class LocalistJson extends Json {
protected function getSourceData(string $url, string|int $item_selector = ''): array {
$source_data = [];
foreach (self::getPagedUrls($url) as $page_url) {
$source_data = [...$source_data, ...parent::getSourceData($page_url)];
$source_data = [...$source_data, ...parent::getSourceData($page_url, $item_selector)];
}
return $source_data;
}
Expand Down
2 changes: 1 addition & 1 deletion stanford_migrate.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.3
version: 8.6.4
dependencies:
- drupal:migrate
- empty_fields:empty_fields
Expand Down

0 comments on commit 4578493

Please sign in to comment.