Skip to content
Snippets Groups Projects
Unverified Commit a6d5e5b5 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3009854 by Berdir, Wim Leers, Mile23, alexpott, andypost, tedbow,...

Issue #3009854 by Berdir, Wim Leers, Mile23, alexpott, andypost, tedbow, damiankloip: Fix "The "serializer.normalizer.file_entity.hal" normalizer service is deprecated: it is obsolete, it only remains available for backwards compatibility." deprecation error
parent 9c32d316
No related branches found
No related tags found
No related merge requests found
......@@ -119,6 +119,9 @@ protected function getExpectedCacheContexts() {
/**
* @see hal_update_8501()
*
* @group legacy
* @expectedDeprecation Replacing the file uri with the URL is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use the provided url property instead and disable hal.settings:bc_file_uri_as_url_normalizer. See https://www.drupal.org/node/2925783
*/
public function testGetBcUriField() {
$this->config('hal.settings')->set('bc_file_uri_as_url_normalizer', TRUE)->save(TRUE);
......
......@@ -14,7 +14,6 @@ services:
- { name: normalizer, priority: 10 }
serializer.normalizer.file_entity.hal:
class: Drupal\hal\Normalizer\FileEntityNormalizer
deprecated: 'The "%service_id%" normalizer service is deprecated: it is obsolete, it only remains available for backwards compatibility.'
arguments: ['@entity_type.manager', '@hal.link_manager', '@module_handler', '@config.factory', '@entity_type.repository', '@entity_field.manager']
tags:
- { name: normalizer, priority: 20 }
......
......@@ -14,7 +14,7 @@
/**
* Converts the Drupal entity object structure to a HAL array structure.
*
* @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0.
* @internal
*/
class FileEntityNormalizer extends ContentEntityNormalizer {
......@@ -61,6 +61,8 @@ public function __construct(EntityTypeManagerInterface $entity_type_manager, Lin
/**
* {@inheritdoc}
*
* @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0.
*/
public function normalize($entity, $format = NULL, array $context = []) {
$data = parent::normalize($entity, $format, $context);
......@@ -70,6 +72,7 @@ public function normalize($entity, $format = NULL, array $context = []) {
if ($this->halSettings->get('bc_file_uri_as_url_normalizer')) {
// Replace the file url with a full url for the file.
$data['uri'][0]['value'] = $this->getEntityUri($entity);
@trigger_error("Replacing the file uri with the URL is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use the provided url property instead and disable hal.settings:bc_file_uri_as_url_normalizer. See https://www.drupal.org/node/2925783", E_USER_DEPRECATED);
}
return $data;
......
......@@ -141,7 +141,6 @@ public static function isDeprecationSkipped($message) {
public static function getSkippedDeprecations() {
return [
'Passing in arguments the legacy way is deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. Provide the right parameter names in the method, similar to controllers. See https://www.drupal.org/node/2894819',
'The "serializer.normalizer.file_entity.hal" normalizer service is deprecated: it is obsolete, it only remains available for backwards compatibility.',
'The Symfony\Component\ClassLoader\ApcClassLoader class is deprecated since Symfony 3.3 and will be removed in 4.0. Use `composer install --apcu-autoloader` instead.',
// The following deprecation is not triggered by DrupalCI testing since it
// is a Windows only deprecation. Remove when core no longer uses
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment