- First commit to issue fork.
- last update
over 1 year ago 1 fail - 🇺🇸United States trackleft2 Tucson, AZ 🇺🇸
With the above patch, I get:
Error: Call to undefined method Drupal\Core\Cache\CacheableJsonResponse::create() in Drupal\decoupled_menus\Controller\Linkset->process() (line 85 of /code/web/modules/contrib/decoupled_menus/src/Controller/Linkset.php).
Adding new patch to fix the error.
- Open on Drupal.org →Core: 9.5.x + Environment: PHP 7.3 & MySQL 5.7last update
over 1 year ago Waiting for branch to pass - @trackleft2 opened merge request.
The last submitted patch, 5: 3286937-automated-drupal-10-plus-CacheableJsonResponse-fix.patch, failed testing. View results →
- 🇺🇸United States joegraduate Arizona, USA
Looks like
CacheableJsonResponse::create()
also had to be changed tonew CacheableJsonResponse()
in the Drupal 10.1 core implementation (see #3227824-87: Move the linkset functionality from the decoupled menus contributed module to core's system module → ) due to a Symfony 5 deprecation (and Symfony 6 removal) (see https://github.com/symfony/symfony/blob/5.4/src/Symfony/Component/HttpFo...) so that additional change makes sense to me as part of a D10 compatibility patch.