From 79dd5bb978125c476fa9f984c181bf37ff8e0ae0 Mon Sep 17 00:00:00 2001 From: nagyad Date: Thu, 15 Feb 2024 15:55:37 +0100 Subject: [PATCH 1/2] Release-1.15.0: Update changlog. --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19e73f7..7f65351 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.15.0](https://github.com/openeuropa/oe_contact_forms/tree/1.15.0) (2024-02-15) + +[Full Changelog](https://github.com/openeuropa/oe_contact_forms/compare/1.14.0...1.15.0) + +**Merged pull requests:** + +- EWPP-3949: Add Drupal 10.2.x and PHP 8.2 to matrix. [\#89](https://github.com/openeuropa/oe_contact_forms/pull/89) ([brummbar](https://github.com/brummbar)) + ## [1.14.0](https://github.com/openeuropa/oe_contact_forms/tree/1.14.0) (2024-01-15) [Full Changelog](https://github.com/openeuropa/oe_contact_forms/compare/1.13.0...1.14.0) @@ -7,6 +15,7 @@ **Merged pull requests:** - EWPP-3905: Patch sparql entity storage for D10.2 support. [\#88](https://github.com/openeuropa/oe_contact_forms/pull/88) ([imanoleguskiza](https://github.com/imanoleguskiza)) +- Prepare release 1.14.0. [\#87](https://github.com/openeuropa/oe_contact_forms/pull/87) ([imanoleguskiza](https://github.com/imanoleguskiza)) - EWPP-2952: Change the empty option label for language selects. [\#84](https://github.com/openeuropa/oe_contact_forms/pull/84) ([22Alexandra](https://github.com/22Alexandra)) ## [1.13.0](https://github.com/openeuropa/oe_contact_forms/tree/1.13.0) (2023-11-21) From 6ece7a5300d852c7c200b8210af0e026ac475239 Mon Sep 17 00:00:00 2001 From: nagyad Date: Thu, 15 Feb 2024 16:03:21 +0100 Subject: [PATCH 2/2] Release-1.15.0: Fix phpcs. --- .../oe_contact_forms_honeypot/oe_contact_forms_honeypot.module | 2 +- .../tests/src/Functional/HoneypotTest.php | 2 +- oe_contact_forms.install | 2 +- oe_contact_forms.module | 2 +- oe_contact_forms.post_update.php | 2 +- src/Access/ContactFormsAccessCheck.php | 2 +- src/Controller/CorporateContactFormController.php | 2 +- src/Drush/Commands/sql/ContactFormSanitizeCommand.php | 2 +- src/Form/ContactMessageForm.php | 2 +- src/Plugin/Block/CorporateFormBlock.php | 2 +- src/Plugin/ConceptSubset/ContactLanguages.php | 2 +- src/Plugin/Derivative/CorporateFormBlock.php | 2 +- src/Routing/ContactFormRouteSubscriber.php | 2 +- tests/src/Functional/ContactFormSanitizeCommandTest.php | 2 +- tests/src/FunctionalJavascript/CorporateContactFormTest.php | 2 +- tests/src/FunctionalJavascript/MessageFormTest.php | 2 +- tests/src/Kernel/AccessTest.php | 2 +- tests/src/Kernel/BaseFieldTest.php | 2 +- tests/src/Kernel/BlocksTest.php | 2 +- tests/src/Kernel/ContactFormTestBase.php | 2 +- tests/src/Kernel/ContactLanguagesSubsetTest.php | 2 +- 21 files changed, 21 insertions(+), 21 deletions(-) diff --git a/modules/oe_contact_forms_honeypot/oe_contact_forms_honeypot.module b/modules/oe_contact_forms_honeypot/oe_contact_forms_honeypot.module index 4f2b8e9..056c2f9 100644 --- a/modules/oe_contact_forms_honeypot/oe_contact_forms_honeypot.module +++ b/modules/oe_contact_forms_honeypot/oe_contact_forms_honeypot.module @@ -5,7 +5,7 @@ * Honeypot for Contact Forms module. */ -declare(strict_types = 1); +declare(strict_types=1); use Drupal\Core\Form\FormStateInterface; diff --git a/modules/oe_contact_forms_honeypot/tests/src/Functional/HoneypotTest.php b/modules/oe_contact_forms_honeypot/tests/src/Functional/HoneypotTest.php index e105ebe..d8af3ac 100644 --- a/modules/oe_contact_forms_honeypot/tests/src/Functional/HoneypotTest.php +++ b/modules/oe_contact_forms_honeypot/tests/src/Functional/HoneypotTest.php @@ -1,6 +1,6 @@