Skip to content
Snippets Groups Projects
Commit 2b212d6b authored by catch's avatar catch
Browse files

Issue #3387827 by quietone: Fix change record link added in #3231341

(cherry picked from commit 6efb70cd)
parent 574e31cf
Branches
Tags
17 merge requests!11628Update file MediaLibraryWidget.php,!7564Revert "Issue #3364773 by roshnichordiya, Chris Matthews, thakurnishant_06,...,!5752Issue #3275828 by joachim, quietone, bradjones1, Berdir: document the reason...,!5627Issue #3261805: Field not saved when change of 0 on string start,!5427Issue #3338518: send credentials in ajax if configured in CORS settings.,!5395Issue #3387916 by fjgarlin, Spokje: Each GitLab job exposes user email,!5217Issue #3386607 by alexpott: Improve spell checking in commit-code-check.sh,!5064Issue #3379522 by finnsky, Gauravvvv, kostyashupenko, smustgrave, Chi: Revert...,!5040SDC ComponentElement: Transform slots scalar values to #plain_text instead of throwing an exception,!4958Issue #3392147: Whitelist IP for a Ban module.,!4894Issue #3280279: Add API to allow sites to opt in to upload SVG images in CKEditor 5,!4857Issue #3336994: StringFormatter always displays links to entity even if the user in context does not have access,!4856Issue #3336994: StringFormatter always displays links to entity even if the user in context does not have access,!3679Issue #115801: Allow password on registration without disabling e-mail verification,!3106Issue #3017548: "Filtered HTML" text format does not support manual teaser break (<!--break-->),!925Issue #2339235: Remove taxonomy hard dependency on node module,!872Draft: Issue #3221319: Race condition when creating menu links and editing content deletes menu links
Pipeline #21567 failed
Pipeline: drupal

#21579

    Pipeline: drupal

    #21578

      Pipeline: drupal

      #21577

        ......@@ -30,9 +30,9 @@
        # Skip deprecations for EditorMediaDialog, EditorImageDialog and EditorLinkDialog triggered by
        # \Drupal\Core\Entity\EntityResolverManager::setRouteOptions().
        %Drupal\\media\\Form\\EditorMediaDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/project/drupal/issues/3291493%
        %Drupal\\editor\\Form\\EditorImageDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/project/drupal/issues/3291493%
        %Drupal\\editor\\Form\\EditorLinkDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/project/drupal/issues/3291493%
        %Drupal\\media\\Form\\EditorMediaDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3291493%
        %Drupal\\editor\\Form\\EditorImageDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3291493%
        %Drupal\\editor\\Form\\EditorLinkDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3291493%
        # Symfony 7.
        %Method "Symfony\\Contracts\\Service\\ResetInterface::reset\(\)" might add "void" as a native return type declaration in the future. Do the same in implementation "Drupal\\Component\\DependencyInjection\\Container" now to avoid errors or add an explicit @return annotation to suppress this message.%
        ......@@ -20,7 +20,7 @@
        * @deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no
        * replacement.
        *
        * @see https://www.drupal.org/project/drupal/issues/3291493
        * @see https://www.drupal.org/node/3291493
        *
        * @internal
        */
        ......@@ -40,7 +40,7 @@ class EditorImageDialog extends FormBase {
        * The file storage service.
        */
        public function __construct(EntityStorageInterface $file_storage) {
        @trigger_error(__NAMESPACE__ . '\EditorImageDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/project/drupal/issues/3291493', E_USER_DEPRECATED);
        @trigger_error(__NAMESPACE__ . '\EditorImageDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3291493', E_USER_DEPRECATED);
        $this->fileStorage = $file_storage;
        }
        ......
        ......@@ -16,7 +16,7 @@
        * @deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no
        * replacement.
        *
        * @see https://www.drupal.org/project/drupal/issues/3291493
        * @see https://www.drupal.org/node/3291493
        *
        * @internal
        */
        ......@@ -26,7 +26,7 @@ class EditorLinkDialog extends FormBase {
        * Constructs a form object for link dialog.
        */
        public function __construct() {
        @trigger_error(__NAMESPACE__ . '\EditorLinkDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/project/drupal/issues/3291493', E_USER_DEPRECATED);
        @trigger_error(__NAMESPACE__ . '\EditorLinkDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3291493', E_USER_DEPRECATED);
        }
        /**
        ......
        ......@@ -25,7 +25,7 @@ class EditorDeprecationTest extends KernelTestBase {
        * @see EditorLinkDialog
        */
        public function testEditorLinkDialog(): void {
        $this->expectDeprecation('Drupal\editor\Form\EditorLinkDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/project/drupal/issues/3291493');
        $this->expectDeprecation('Drupal\editor\Form\EditorLinkDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3291493');
        new EditorLinkDialog();
        }
        ......@@ -35,7 +35,7 @@ public function testEditorLinkDialog(): void {
        * @see EditorImageDialog
        */
        public function testEditorImageDialog(): void {
        $this->expectDeprecation('Drupal\editor\Form\EditorImageDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/project/drupal/issues/3291493');
        $this->expectDeprecation('Drupal\editor\Form\EditorImageDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3291493');
        new EditorImageDialog($this->createMock('\Drupal\file\FileStorage'));
        }
        ......
        ......@@ -26,7 +26,7 @@
        * @deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no
        * replacement.
        *
        * @see https://www.drupal.org/project/drupal/issues/3291493
        * @see https://www.drupal.org/node/3291493
        *
        * @internal
        * This is an internal part of the media system in Drupal core and may be
        ......@@ -58,7 +58,7 @@ class EditorMediaDialog extends FormBase {
        * The entity display repository.
        */
        public function __construct(EntityRepositoryInterface $entity_repository, EntityDisplayRepositoryInterface $entity_display_repository) {
        @trigger_error(__NAMESPACE__ . '\EditorMediaDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/project/drupal/issues/3291493', E_USER_DEPRECATED);
        @trigger_error(__NAMESPACE__ . '\EditorMediaDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3291493', E_USER_DEPRECATED);
        $this->entityRepository = $entity_repository;
        $this->entityDisplayRepository = $entity_display_repository;
        }
        ......
        ......@@ -24,7 +24,7 @@ class MediaDeprecationTest extends KernelTestBase {
        * @see EditorMediaDialog
        */
        public function testEditorLinkDialog(): void {
        $this->expectDeprecation('Drupal\media\Form\EditorMediaDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/project/drupal/issues/3291493');
        $this->expectDeprecation('Drupal\media\Form\EditorMediaDialog is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3291493');
        new EditorMediaDialog($this->createMock('\Drupal\Core\Entity\EntityRepository'), $this->createMock('\Drupal\Core\Entity\EntityDisplayRepository'));
        }
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Please register or to comment