From a0e128df7a266c398af9b5d01ea62a78ed01ae0f Mon Sep 17 00:00:00 2001 From: nagyad Date: Thu, 15 Feb 2024 14:58:53 +0100 Subject: [PATCH 1/2] Release-2.2.0: Update changelog. --- CHANGELOG.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65aa2c6..adfe2b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,24 @@ -# ChangeLog +# Changelog + +## [2.2.0](https://github.com/openeuropa/oe_editorial/tree/2.2.0) (2024-02-15) + +[Full Changelog](https://github.com/openeuropa/oe_editorial/compare/2.1.2...2.2.0) + +**Merged pull requests:** + +- EWPP-3951: Add Drupal 10.2.x and PHP 8.2 to matrix. [\#130](https://github.com/openeuropa/oe_editorial/pull/130) ([brummbar](https://github.com/brummbar)) ## [2.1.2](https://github.com/openeuropa/oe_editorial/tree/2.1.2) (2024-01-15) + [Full Changelog](https://github.com/openeuropa/oe_editorial/compare/2.1.1...2.1.2) **Merged pull requests:** +- EWPP-0000: Preparing for release 2.1.2. [\#129](https://github.com/openeuropa/oe_editorial/pull/129) ([hernani](https://github.com/hernani)) - EWPP-3610: Use static patch instead of direct MR. [\#128](https://github.com/openeuropa/oe_editorial/pull/128) ([hernani](https://github.com/hernani)) ## [2.1.1](https://github.com/openeuropa/oe_editorial/tree/2.1.1) (2023-09-18) + [Full Changelog](https://github.com/openeuropa/oe_editorial/compare/2.1.0...2.1.1) **Merged pull requests:** From 516a237c3af39d5ce4347c511a07086bd76ed69b Mon Sep 17 00:00:00 2001 From: nagyad Date: Thu, 15 Feb 2024 15:05:10 +0100 Subject: [PATCH 2/2] Release-2.2.0: Fix phpcs. --- .../oe_editorial_content_lock/oe_editorial_content_lock.install | 2 +- .../oe_editorial_corporate_workflow.module | 2 +- .../oe_editorial_corporate_workflow.post_update.php | 2 +- .../src/CorporateWorkflowInstaller.php | 2 +- .../src/CorporateWorkflowStateTransitionValidation.php | 2 +- .../src/EntityStateTransitionBatch.php | 2 +- .../src/OeEditorialCorporateWorkflowServiceProvider.php | 2 +- .../src/Services/ShortcutRevisionHandler.php | 2 +- .../src/Services/ShortcutRevisionHandlerInterface.php | 2 +- .../oe_editorial_corporate_workflow_test.module | 2 +- .../tests/src/FunctionalJavascript/CorporateWorkflowTest.php | 2 +- .../tests/src/Traits/CorporateWorkflowTrait.php | 2 +- .../oe_editorial_entity_version.install | 2 +- .../oe_editorial_entity_version.post_update.php | 2 +- .../src/Form/NodeRevisionRevertForm.php | 2 +- .../oe_editorial_entity_version/src/Routing/RouteSubscriber.php | 2 +- .../tests/src/Functional/NodeVersionRestoreTest.php | 2 +- modules/oe_editorial_unpublish/oe_editorial_unpublish.module | 2 +- .../oe_editorial_unpublish/src/Event/UnpublishStatesEvent.php | 2 +- .../src/Form/ContentEntityUnpublishForm.php | 2 +- .../src/Plugin/Derivative/UnpublishLocalTask.php | 2 +- .../src/Plugin/Menu/UnpublishLocalTask.php | 2 +- modules/oe_editorial_unpublish/src/Routing/RouteSubscriber.php | 2 +- .../src/EventSubscriber/TestEventSubscriber.php | 2 +- .../tests/src/Functional/EditorialUnpublishTest.php | 2 +- .../tests/src/Kernel/EditorialUnpublishTest.php | 2 +- .../oe_editorial_workflow_demo.install | 2 +- oe_editorial.module | 2 +- tests/src/Behat/ContentLockContext.php | 2 +- tests/src/Behat/FeatureContext.php | 2 +- tests/src/Behat/TextFormatContext.php | 2 +- tests/src/Kernel/WorkflowInstallerTest.php | 2 +- tests/src/Traits/BatchTrait.php | 2 +- 33 files changed, 33 insertions(+), 33 deletions(-) diff --git a/modules/oe_editorial_content_lock/oe_editorial_content_lock.install b/modules/oe_editorial_content_lock/oe_editorial_content_lock.install index f70e220..89b2bc9 100755 --- a/modules/oe_editorial_content_lock/oe_editorial_content_lock.install +++ b/modules/oe_editorial_content_lock/oe_editorial_content_lock.install @@ -5,7 +5,7 @@ * OpenEuropa Editorial Content Lock module. */ -declare(strict_types = 1); +declare(strict_types=1); /** * Implements hook_install(). diff --git a/modules/oe_editorial_corporate_workflow/oe_editorial_corporate_workflow.module b/modules/oe_editorial_corporate_workflow/oe_editorial_corporate_workflow.module index 81afaee..9928e36 100644 --- a/modules/oe_editorial_corporate_workflow/oe_editorial_corporate_workflow.module +++ b/modules/oe_editorial_corporate_workflow/oe_editorial_corporate_workflow.module @@ -5,7 +5,7 @@ * OpenEuropa Editorial Corporate Workflow module. */ -declare(strict_types = 1); +declare(strict_types=1); use Drupal\Core\Batch\BatchBuilder; use Drupal\Core\Form\FormStateInterface; diff --git a/modules/oe_editorial_corporate_workflow/oe_editorial_corporate_workflow.post_update.php b/modules/oe_editorial_corporate_workflow/oe_editorial_corporate_workflow.post_update.php index f953343..035ec3b 100644 --- a/modules/oe_editorial_corporate_workflow/oe_editorial_corporate_workflow.post_update.php +++ b/modules/oe_editorial_corporate_workflow/oe_editorial_corporate_workflow.post_update.php @@ -5,7 +5,7 @@ * OpenEuropa Editorial Corporate Workflow post updates. */ -declare(strict_types = 1); +declare(strict_types=1); use Drupal\user\Entity\Role; use Drupal\user\RoleInterface; diff --git a/modules/oe_editorial_corporate_workflow/src/CorporateWorkflowInstaller.php b/modules/oe_editorial_corporate_workflow/src/CorporateWorkflowInstaller.php index a77a03b..9826720 100644 --- a/modules/oe_editorial_corporate_workflow/src/CorporateWorkflowInstaller.php +++ b/modules/oe_editorial_corporate_workflow/src/CorporateWorkflowInstaller.php @@ -1,6 +1,6 @@