Skip to content

Commit

Permalink
Merge pull request #90 from openeuropa/release-1.15.0
Browse files Browse the repository at this point in the history
Release-1.15.0: Update changlog.
  • Loading branch information
nagyad authored Feb 15, 2024
2 parents e62bdac + 6ece7a5 commit e6135c2
Show file tree
Hide file tree
Showing 22 changed files with 30 additions and 21 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
# 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)

**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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Honeypot for Contact Forms module.
*/

declare(strict_types = 1);
declare(strict_types=1);

use Drupal\Core\Form\FormStateInterface;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\Tests\oe_contact_forms_honeypot\Functional;

Expand Down
2 changes: 1 addition & 1 deletion oe_contact_forms.install
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* The OpenEuropa Contact Forms installation file.
*/

declare(strict_types = 1);
declare(strict_types=1);

/**
* Implements hook_install().
Expand Down
2 changes: 1 addition & 1 deletion oe_contact_forms.module
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* OpenEuropa Contact Forms module.
*/

declare(strict_types = 1);
declare(strict_types=1);

use Drupal\Component\Render\MarkupInterface;
use Drupal\contact\ContactFormInterface;
Expand Down
2 changes: 1 addition & 1 deletion oe_contact_forms.post_update.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Post update functions for OpenEuropa Contact Forms module.
*/

declare(strict_types = 1);
declare(strict_types=1);

use Drupal\Core\Field\BaseFieldDefinition;

Expand Down
2 changes: 1 addition & 1 deletion src/Access/ContactFormsAccessCheck.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\oe_contact_forms\Access;

Expand Down
2 changes: 1 addition & 1 deletion src/Controller/CorporateContactFormController.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\oe_contact_forms\Controller;

Expand Down
2 changes: 1 addition & 1 deletion src/Drush/Commands/sql/ContactFormSanitizeCommand.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\oe_contact_forms\Drush\Commands\sql;

Expand Down
2 changes: 1 addition & 1 deletion src/Form/ContactMessageForm.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\oe_contact_forms\Form;

Expand Down
2 changes: 1 addition & 1 deletion src/Plugin/Block/CorporateFormBlock.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\oe_contact_forms\Plugin\Block;

Expand Down
2 changes: 1 addition & 1 deletion src/Plugin/ConceptSubset/ContactLanguages.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\oe_contact_forms\Plugin\ConceptSubset;

Expand Down
2 changes: 1 addition & 1 deletion src/Plugin/Derivative/CorporateFormBlock.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\oe_contact_forms\Plugin\Derivative;

Expand Down
2 changes: 1 addition & 1 deletion src/Routing/ContactFormRouteSubscriber.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\oe_contact_forms\Routing;

Expand Down
2 changes: 1 addition & 1 deletion tests/src/Functional/ContactFormSanitizeCommandTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\Tests\oe_contact_forms\Functional;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\Tests\oe_contact_forms\FunctionalJavascript;

Expand Down
2 changes: 1 addition & 1 deletion tests/src/FunctionalJavascript/MessageFormTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\Tests\oe_contact_forms\FunctionalJavascript;

Expand Down
2 changes: 1 addition & 1 deletion tests/src/Kernel/AccessTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\Tests\oe_contact_forms\Kernel;

Expand Down
2 changes: 1 addition & 1 deletion tests/src/Kernel/BaseFieldTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\Tests\oe_contact_forms\Kernel;

Expand Down
2 changes: 1 addition & 1 deletion tests/src/Kernel/BlocksTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\Tests\oe_contact_forms\Kernel;

Expand Down
2 changes: 1 addition & 1 deletion tests/src/Kernel/ContactFormTestBase.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\Tests\oe_contact_forms\Kernel;

Expand Down
2 changes: 1 addition & 1 deletion tests/src/Kernel/ContactLanguagesSubsetTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\Tests\oe_contact_forms\Kernel;

Expand Down

0 comments on commit e6135c2

Please sign in to comment.