Problem/Motivation

The upgrade status report looks like this:


CONTRIBUTED PROJECTS
--------------------------------------------------------------------------------
Order
Scanned on Thu, 08/07/2025 - 13:14.

1 warning found.

modules/contrib/order/src/Controller/ProductController.php:
+--------+------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| status | line | message                                                                                                                                                                                                                                      |
+--------+------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Ignore | 57   | Call to deprecated method loadRevision() of interface
Drupal\Core\Entity\EntityStorageInterface. Deprecated in
drupal:10.1.0 and is removed from drupal:11.0.0. Use
Drupal\Core\Entity\RevisionableStorageInterface::loadRevisio
n instead.
 |
| Ignore | 67   | Call to deprecated method loadRevision() of interface
Drupal\Core\Entity\EntityStorageInterface. Deprecated in
drupal:10.1.0 and is removed from drupal:11.0.0. Use
Drupal\Core\Entity\RevisionableStorageInterface::loadRevisio
n instead.
 |
| Ignore | 102  | Call to deprecated method loadRevision() of interface
Drupal\Core\Entity\EntityStorageInterface. Deprecated in
drupal:10.1.0 and is removed from drupal:11.0.0. Use
Drupal\Core\Entity\RevisionableStorageInterface::loadRevisio
n instead.
 |
| Ignore | 132  | Call to deprecated method renderPlain() of interface
Drupal\Core\Render\RendererInterface. Deprecated in
drupal:10.3.0 and is removed from drupal:12.0.0. Use
Drupal\Core\Render\RendererInterface::renderInIsolation()
instead.
            |
+--------+------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
modules/contrib/order/src/Form/ProductRevisionDeleteForm.php:
+--------+------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| status | line | message                                                                                                                                                                                                                                          |
+--------+------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Ignore | 97   | Call to deprecated method loadRevision() of interface
Drupal\Core\Entity\EntityStorageInterface. Deprecated in
drupal:10.1.0 and is removed from drupal:11.0.0. Use
Drupal\Core\Entity\RevisionableStorageInterface::loadRevisio
n instead.
     |
| Ignore | 107  | Call to deprecated method deleteRevision() of interface
Drupal\Core\Entity\EntityStorageInterface. Deprecated in
drupal:10.1.0 and is removed from drupal:11.0.0. Use
Drupal\Core\Entity\RevisionableStorageInterface::deleteRevis
ion instead.
 |
+--------+------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
modules/contrib/order/src/Form/ProductRevisionRevertForm.php:
+--------+------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| status | line | message                                                                                                                                                                                                                                      |
+--------+------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Ignore | 104  | Call to deprecated method loadRevision() of interface
Drupal\Core\Entity\EntityStorageInterface. Deprecated in
drupal:10.1.0 and is removed from drupal:11.0.0. Use
Drupal\Core\Entity\RevisionableStorageInterface::loadRevisio
n instead.
 |
+--------+------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
modules/contrib/order/templates/product-content-add-list.html.twig:
+--------+------+----------------------------------------------------------------------------------------------------+
| status | line | message                                                                                            |
+--------+------+----------------------------------------------------------------------------------------------------+
| Ignore | 17   | Since twig/twig 3.12: Twig Filter "spaceless" is deprecated.
See https://drupal.org/node/3071078.
 |
+--------+------+----------------------------------------------------------------------------------------------------+
modules/contrib/order/order.info.yml:
+----------------+------+--------------------------------------------------------------------------------------------------------------------------------------------------+
| status         | line | message                                                                                                                                          |
+----------------+------+--------------------------------------------------------------------------------------------------------------------------------------------------+
| Check
manually | 4    | Value of core_version_requirement: ^9 | ^10 is not
compatible with the next major version of Drupal core. See
https://drupal.org/node/3070687.
 |
+----------------+------+--------------------------------------------------------------------------------------------------------------------------------------------------+

Proposed resolution

All the load/delete revision ones appear to be false positives. The other two deprecations are for D12.

All we need is the core version requirement.

Remaining tasks

User interface changes

API changes

Data model changes

Issue fork order-3540323

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

danflanagan8 created an issue.