Skip to content

Commit

Permalink
Merge pull request #144 from openeuropa/release-4.16.0
Browse files Browse the repository at this point in the history
Release-4.16.0: Update changlog.
  • Loading branch information
nagyad authored Feb 15, 2024
2 parents fad1791 + dfa408d commit b1852c6
Show file tree
Hide file tree
Showing 27 changed files with 35 additions and 26 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
# Changelog

## [4.16.0](https://github.com/openeuropa/oe_corporate_blocks/tree/4.16.0) (2024-02-15)

[Full Changelog](https://github.com/openeuropa/oe_corporate_blocks/compare/4.15.0...4.16.0)

**Merged pull requests:**

- EWPP-3950: Add Drupal 10.2.x and PHP 8.2 to matrix. [\#143](https://github.com/openeuropa/oe_corporate_blocks/pull/143) ([brummbar](https://github.com/brummbar))

## [4.15.0](https://github.com/openeuropa/oe_corporate_blocks/tree/4.15.0) (2024-01-15)

[Full Changelog](https://github.com/openeuropa/oe_corporate_blocks/compare/4.14.0...4.15.0)

**Merged pull requests:**

- EWPP-3905: Update corporate terms in tests. [\#140](https://github.com/openeuropa/oe_corporate_blocks/pull/140) ([imanoleguskiza](https://github.com/imanoleguskiza))
- Prepare release 4.15.0. [\#139](https://github.com/openeuropa/oe_corporate_blocks/pull/139) ([imanoleguskiza](https://github.com/imanoleguskiza))
- EWPP-3718: Change EC footer News link label to Press Corner. [\#138](https://github.com/openeuropa/oe_corporate_blocks/pull/138) ([22Alexandra](https://github.com/22Alexandra))

## [4.14.0](https://github.com/openeuropa/oe_corporate_blocks/tree/4.14.0) (2023-06-21)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* OpenEuropa Corporate blocks Demo post updates.
*/

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

use Drupal\block\Entity\Block;
use Drupal\Core\Config\FileStorage;
Expand Down
2 changes: 1 addition & 1 deletion oe_corporate_blocks.install
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Install, update and uninstall functions for the oe_corporate_blocks module.
*/

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

use Drupal\Core\Config\Entity\ConfigEntityType;
use Drupal\Core\Entity\EntityDefinitionUpdateManager;
Expand Down
2 changes: 1 addition & 1 deletion oe_corporate_blocks.module
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* OpenEuropa Corporate Blocks module.
*/

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

use Drupal\Core\Cache\CacheableMetadata;
use Drupal\oe_corporate_site_info\SiteInformation;
Expand Down
2 changes: 1 addition & 1 deletion oe_corporate_blocks.post_update.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* OpenEuropa Corporate blocks post updates.
*/

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

use Drupal\Component\Utility\Crypt;
use Drupal\Core\Config\FileStorage;
Expand Down
2 changes: 1 addition & 1 deletion src/Entity/FooterLinkGeneralInterface.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_corporate_blocks\Entity;

Expand Down
2 changes: 1 addition & 1 deletion src/Entity/FooterLinkInterface.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_corporate_blocks\Entity;

Expand Down
2 changes: 1 addition & 1 deletion src/Entity/FooterLinkSectionInterface.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_corporate_blocks\Entity;

Expand Down
2 changes: 1 addition & 1 deletion src/Entity/FooterLinkSocialInterface.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_corporate_blocks\Entity;

Expand Down
2 changes: 1 addition & 1 deletion src/FooterLinkGeneralListBuilder.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_corporate_blocks;

Expand Down
2 changes: 1 addition & 1 deletion src/FooterLinkManager.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_corporate_blocks;

Expand Down
2 changes: 1 addition & 1 deletion src/FooterLinkManagerInterface.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_corporate_blocks;

Expand Down
2 changes: 1 addition & 1 deletion src/FooterLinkSectionListBuilder.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_corporate_blocks;

Expand Down
2 changes: 1 addition & 1 deletion src/FooterLinkSocialListBuilder.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_corporate_blocks;

Expand Down
2 changes: 1 addition & 1 deletion src/Form/FooterLinkDeleteForm.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_corporate_blocks\Form;

Expand Down
2 changes: 1 addition & 1 deletion src/Form/FooterLinkFormBase.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_corporate_blocks\Form;

Expand Down
2 changes: 1 addition & 1 deletion src/Form/FooterLinkGeneralForm.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_corporate_blocks\Form;

Expand Down
2 changes: 1 addition & 1 deletion src/Form/FooterLinkSectionForm.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_corporate_blocks\Form;

Expand Down
2 changes: 1 addition & 1 deletion src/Form/FooterLinkSocialForm.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_corporate_blocks\Form;

Expand Down
2 changes: 1 addition & 1 deletion src/Plugin/Block/EcFooterBlock.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_corporate_blocks\Plugin\Block;

Expand Down
2 changes: 1 addition & 1 deletion src/Plugin/Block/EuFooterBlock.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_corporate_blocks\Plugin\Block;

Expand Down
2 changes: 1 addition & 1 deletion src/Plugin/Block/FooterBlockBase.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_corporate_blocks\Plugin\Block;

Expand Down
2 changes: 1 addition & 1 deletion tests/src/Behat/CorporateBlocksContext.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_corporate_blocks\Behat;

Expand Down
2 changes: 1 addition & 1 deletion tests/src/Behat/FeatureContext.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_corporate_blocks\Behat;

Expand Down
2 changes: 1 addition & 1 deletion tests/src/Functional/FooterLinkManagementTest.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_corporate_blocks\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_corporate_blocks\FunctionalJavascript;

Expand Down
2 changes: 1 addition & 1 deletion tests/src/Traits/AssertFooterLinksTrait.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_corporate_blocks\Traits;

Expand Down

0 comments on commit b1852c6

Please sign in to comment.