Problem/Motivation

Hello project maintainers,

This is an automated issue to help make this module compatible with Drupal 10.

To read more about this effort by the Drupal Association, please read: The project update bot is being refreshed to support Drupal 10 readiness of contributed projects

Patches will periodically be added to this issue that remove Drupal 10 deprecated API uses. To stop further patches from being posted, change the status to anything other than Active, Needs review, Needs work or Reviewed and tested by the community. Alternatively, you can remove the "ProjectUpdateBotD10" tag from the issue to stop the bot from posting updates.

The patches will be posted by the Project Update Bot official user account. This account will not receive any issue credit contributions for itself or any company.

Proposed resolution

You have a few options for how to use this issue:

  1. Accept automated patches until this issue is closed

    If this issue is left open (status of Active, Needs review, Needs work or Reviewed and tested by the community) and the "ProjectUpdateBotD10" tag is left on this issue, new patches will be posted periodically if new deprecation fixes are needed.

    As the Drupal Rector project improves and is able to fix more deprecated API uses, the patches posted here will cover more of the deprecated API uses in the module.

    Patches and/or merge requests posted by others are ignored by the bot, and general human interactions in the issue do not stop the bot from posting updates, so feel free to use this issue to refine bot patches. The bot will still post new patches then if there is a change in the new generated patch compared to the patch that the bot posted last. Those changes are then up to humans to integrate.

  2. Leave open but stop new automated patches.

    If you want to use this issue as a starting point to remove deprecated API uses but then don't want new automated patches, remove the "ProjectUpdateBotD10" tag from the issue and use it like any other issue (the status does not matter then). If you want to receive automated patches again, add back the "ProjectUpdateBotD10" tag.

  3. Close it and don't use it

    If the maintainers of this project don't find this issue useful, they can close this issue (any status besides Active, Needs review, Needs work and Reviewed and tested by the community) and no more automated patches will be posted here.

    If the issue is reopened, then new automated patches will be posted.

    If you are using another issue(s) to work on Drupal 10 compatibility it would be very useful to other contributors to add those issues as "Related issues" when closing this issue.

Remaining tasks

Using the patches

  1. Apply the latest patch in the comments by Project Update Bot or human contributors that made it better.
  2. Thoroughly test the patch. These patches are automatically generated so they haven't been tested manually or automatically.
  3. Provide feedback about how the testing went. If you can improve the patch, post an updated patch here.

Providing feedback

If there are problems with one of the patches posted by the Project Update Bot, such as it does not correctly replace a deprecation, you can file an issue in the Drupal Rector issue queue. For other issues with the bot, for instance if the issue summary created by the bot is unclear, use the Project analysis issue queue.

Issue fork scheduler-3289475

Command icon Show commands

Start within a Git clone of the project using the version control instructions.

Or, if you do not have SSH keys set up on git.drupalcode.org:

Comments

Project Update Bot created an issue. See original summary.

project update bot’s picture

Status: Active » Needs review
StatusFileSize
new3.41 KB

This is an automated patch generated by Drupal Rector. Please see the issue summary for more details.

It is important that any automated tests available are run with this patch and that you manually test this patch.

Drupal 10 Compatibility

According to the Upgrade Status module, even with this patch, this module is not yet compatible with Drupal 10.

Currently Drupal Rector, version 0.12.0, cannot fix all Drupal 10 compatibility problems.

This patch does not update the info.yml file for Drupal 10 compatibility.

Leaving this issue open, even after committing the current patch, will allow the Project Update Bot to post additional Drupal 10 compatibility fixes as they become available in Drupal Rector.

Debug info

Bot run #127

This patch was created using these packages:

  1. mglaman/phpstan-drupal: 1.1.9
  2. palantirnet/drupal-rector: 0.12.0

Status: Needs review » Needs work

The last submitted patch, 2: scheduler.2.x-dev.rector.patch, failed testing. View results
- codesniffer_fixes.patch Interdiff of automated coding standards fixes only.

project update bot’s picture

Status: Needs work » Needs review
StatusFileSize
new7.29 KB
new4.33 KB

This is an automated patch generated by Drupal Rector. Please see the issue summary for more details.

It is important that any automated tests available are run with this patch and that you manually test this patch.

Drupal 10 Compatibility

According to the Upgrade Status module, even with this patch, this module is not yet compatible with Drupal 10.

Currently Drupal Rector, version 0.13.0, cannot fix all Drupal 10 compatibility problems.

This patch does not update the info.yml file for Drupal 10 compatibility.

Leaving this issue open, even after committing the current patch, will allow the Project Update Bot to post additional Drupal 10 compatibility fixes as they become available in Drupal Rector.

Debug info

Bot run #139

This patch was created using these packages:

  1. mglaman/phpstan-drupal: 1.1.24
  2. palantirnet/drupal-rector: 0.13.0
jatingupta40’s picture

Assigned: Unassigned » jatingupta40
Issue summary: View changes

I will review this patch.

jatingupta40’s picture

StatusFileSize
new6.48 KB
new2.11 KB

Using the 'upgrade_status' module I got some errors that are not compatible with Drupal 10.
So, I worked on it and hence provided a patch.

Please Review.

Status: Needs review » Needs work

The last submitted patch, 6: updated_scheduler-3289475-6.patch, failed testing. View results

jatingupta40’s picture

StatusFileSize
new6.47 KB
jatingupta40’s picture

Assigned: jatingupta40 » Unassigned
dieterholvoet’s picture

Since ModuleHandler::getImplementations was removed, SchedulerManager::getHookImplementations and all places where it's invoked will need to be refactored to immediately execute the hook implementation instead of collecting them all first. Just replacing getHookImplementations with invokeAllWith - as done in the patch - is unfortunately not enough.

ModuleHandlerInterface::getImplementations() is deprecated in drupal:9.4.0 and is removed from drupal:10.0.0. Instead you should use ModuleHandlerInterface::invokeAllWith() for hook invocations, or you should use ModuleHandlerInterface::hasImplementations() to determine if hooks implementations exist. See https://www.drupal.org/node/3000490

dieterholvoet’s picture

I think a good option would be to change getHookImplementations to getHooks, like this:

public function getHooks(string $hookType, $entity) {
  $entityTypeId = (is_object($entity)) ? $entity->getEntityTypeid() : $entity;
  $hooks = [$hookType, "{$entityTypeId}_{$hookType}"];
  // For backwards compatibility the original node hook is also added.
  if ($entityTypeId == 'node') {
    $legacy_node_hooks = [
      'hide_publish_date' => 'hide_publish_on_field',
      'hide_unpublish_date' => 'hide_unpublish_on_field',
      'list' => 'nid_list',
      'list_alter' => 'nid_list_alter',
      'publish_process' => 'publish_action',
      'unpublish_process' => 'unpublish_action',
      'publishing_allowed' => 'allow_publishing',
      'unpublishing_allowed' => 'allow_unpublishing',
    ];
    $hooks[] = $legacy_node_hooks[$hookType];
  }
  // Get all modules that implement these hooks, then use array_walk to append
  // the $hook to the end of the module, thus giving the full function name.
  foreach ($hooks as &$hook) {
    $hook = "scheduler_$hook";
  }
  return $hooks;
}

and invoked like this:

// Allow other modules to add to the list of entities to be published.
$hooks = $this->getHooks('list', $entityTypeId);
foreach ($hooks as $hook) {
  $this->moduleHandler->invokeAllWith($hook, function (callable $hook, string $module) use (&$ids, $process, $entityTypeId) {
    // Cast each hook result as array, to protect from bad implementations.
    $ids = array_merge($ids, (array) $hook($process, $entityTypeId));
  });
}
project update bot’s picture

Status: Needs work » Needs review
StatusFileSize
new651 bytes
new4.77 KB

This is an automated patch generated by Drupal Rector. Please see the issue summary for more details.

It is important that any automated tests available are run with this patch and that you manually test this patch.

Drupal 10 Compatibility

According to the Upgrade Status module, even with this patch, this module is not yet compatible with Drupal 10.

Currently Drupal Rector, version 0.13.1, cannot fix all Drupal 10 compatibility problems.

This patch does not update the info.yml file for Drupal 10 compatibility.

Leaving this issue open, even after committing the current patch, will allow the Project Update Bot to post additional Drupal 10 compatibility fixes as they become available in Drupal Rector.

Debug info

Bot run #145

This patch was created using these packages:

  1. mglaman/phpstan-drupal: 1.1.25
  2. palantirnet/drupal-rector: 0.13.1
jatingupta40’s picture

Assigned: Unassigned » jatingupta40

Thanks for the suggestion @DieterHolvoet.
Will try that.

jatingupta40’s picture

Assigned: jatingupta40 » Unassigned
jonathan1055’s picture

Hi JatinGupta40 and DieterHolvoet,
I think it would be better if you raised separate issues for the things you are working on, and link them from this issue.
As far as I understand, this issue was created and will be updated by the automated Project Update Bot, so it would be better if your manual changes were isolated in other issues.
Also if we are going to take any of the fixes from the automatic patches then those should be split off into separate issues too.

  • jonathan1055 committed 1fafb8d on 2.x
    Issue #3289475 by Project Update Bot, jonathan1055: Change public static...
  • jonathan1055 committed e6f0b39 on 2.x
    Issue #3289475 by Project Update Bot, jonathan1055: Replace...
jonathan1055’s picture

I've created a separate issue for the module handler hooks
#3312069: ModuleHandlerInterface::getImplementations() is deprecated in 9.4

mmjvb’s picture

Status: Needs review » Active

Set to Active to prevent reviews as maintainer committed.

jonathan1055’s picture

Title: Automated Drupal 10 compatibility fixes » Automated Drupal 10 compatibility fixes - Scheduler 2.x

Thanks. Yes everything that can be committed from the automated patches is done. The next automated patch will again try to change the eventDispatcher->dispatch parameters. It will be interesting to see if anything else gets automated.

project update bot’s picture

project update bot’s picture

Status: Active » Needs review
StatusFileSize
new3.67 KB
new412 bytes

This is an automated patch generated by Drupal Rector. Please see the issue summary for more details.

It is important that any automated tests available are run with this patch and that you manually test this patch.

Drupal 10 Compatibility

According to the Upgrade Status module, even with this patch, this module is not yet compatible with Drupal 10.

Currently Drupal Rector, version 0.15.1, cannot fix all Drupal 10 compatibility problems.

Therefore this patch does not update the info.yml file for Drupal 10 compatibility.

Leaving this issue open, even after committing the current patch, will allow the Project Update Bot to post additional Drupal 10 compatibility fixes as they become available in Drupal Rector.

Debug info

Bot run #12554

This patch was created using these packages:

  1. mglaman/phpstan-drupal: 1.1.35
  2. palantirnet/drupal-rector: 0.15.1
jonathan1055’s picture

Issue summary: View changes
Status: Needs review » Active

As per comment in #20 the eventDispatcher->dispatch parameter is correct and must not be chnaged as per the automated patch in #22. Is there a way to state this in the code, to prevent the patch being repeatedly added?

bvoynick’s picture

The ticket description says removing a tag will work to stop all bot activity going forward:

If you want to use this issue as a starting point to remove deprecated API uses but then don't want new automated patches, remove the "ProjectUpdateBotD10" tag from the issue and use it like any other issue (the status does not matter then).

Since this was the only thing the bot found, removing the tag and marking this fixed seems fine? But I'll leave that choice to you @jonathan1055

jonathan1055’s picture

I was leaving the issue open in case the bot reports anything new. But I do not know how or if the bot is being updated to report new things. I will leave open for now, but if you have any info on whether the bot is being updated or expanded then let me know. Thanks.

jonathan1055’s picture

Status: Active » Fixed

10.x compatibility has been done

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.