- Issue created by @proweb.ua
- Status changed to Closed: won't fix
11 months ago 4:50am 21 May 2024 - π¦πΊAustralia larowlan π¦πΊπ.au GMT+10
Drupal 9 is no longer supported, please update to Drupal 10
Thanks
- π¦πͺUnited Arab Emirates leslie.cordell Dubai
I came across this error, but from a different project, but want to add a quick resolution here.
While I agree, sites need to be upgraded 100%, in some instances where larger project migrations are still going through UAT or lengthy pauses, their existing sites still need to be maintained and kept in working order until that time comes.
One resolution to this is to back port the DeprecationHelper.php file into Drupal 9 as a composer "post-install-cmd", an example of this could be.
Download and copy the DeprecationHelper.php file to a directory at the project root i.e. ./scripts so you end up with ./scripts/DeprecationHelper.php
Make a note to remove this when upgrading to Drupal 10.
Then add the following to composer.json
"scripts": { "post-install-cmd": [ "cp ./scripts/DeprecationHelper.php ./web/core/lib/Drupal/Component/Utility" ] }
This is a nicer solution and better than patching every module. This is working for us. Just remember to pull this out during upgrade. Customize as you see fit.