1.7 breaks on Drupal 9 / Symfony 4.4: service jsonapi_resources.normalizer.resource_object has a dependency on a non-existent service .inner
### Problem/Motivation After updating from 8.x-1.6 to 8.x-1.7, rebuilding the container fails: The service "jsonapi_resources.normalizer.resource_object" has a dependency on a non-existent service ".inner". Reproduced on Drupal 9.5.11 (symfony/dependency-injection v4.4.49) with drush cr. In 1.7, jsonapi_resources.normalizer.resource_object gained decoration_priority: -100 and a new '@.inner' argument. The relative inner reference @.inner is only resolved by Symfony ≥ 5.1 (Drupal 10+). On Symfony 4.4 (Drupal 9), DecoratorServicePass names the inner service jsonapi_resources.normalizer.resource_object.inner, and there is no rewrite of bare .inner, so the reference stays pointing at a literal, non-existent .inner service. 1.6 did not pass @.inner at all, so it works on D9.
issue