Skip to content

Commit

Permalink
Merge branch 'hotfix/v2.3.24'
Browse files Browse the repository at this point in the history
  • Loading branch information
ambroisemaupate committed Aug 26, 2024
2 parents 6937232 + 1b67f6e commit cc4aacd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to Roadiz will be documented in this file.

## [2.3.24](https://github.com/roadiz/core-bundle-dev-app/compare/v2.3.23...v2.3.24) - 2024-08-26

### Bug Fixes

- Do not use array reference for ConfigurableExplorerItem.php anymore - ([6a23ba0](https://github.com/roadiz/core-bundle-dev-app/commit/6a23ba032d174e58545f85bf81f2cdaf1760b154))

## [2.3.23](https://github.com/roadiz/core-bundle-dev-app/compare/v2.3.22...v2.3.23) - 2024-08-02

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion lib/RoadizCoreBundle/config/services.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
parameters:
roadiz_core.cms_version: '2.3.23'
roadiz_core.cms_version: '2.3.24'
roadiz_core.cms_version_prefix: 'main'
env(APP_NAMESPACE): "roadiz"
env(APP_VERSION): "0.1.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public function listAction(Request $request): JsonResponse
* @param array $configuration
* @return array<array>
*/
private function normalizeEntities(iterable $entities, array &$configuration): array
private function normalizeEntities(iterable $entities, array $configuration): array
{
$entitiesArray = [];

Expand Down
2 changes: 1 addition & 1 deletion lib/Rozier/src/Explorer/ConfigurableExplorerItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ final class ConfigurableExplorerItem extends AbstractExplorerItem
{
public function __construct(
private readonly PersistableInterface $entity,
private readonly array &$configuration,
private readonly array $configuration,
private readonly RendererInterface $renderer,
private readonly DocumentUrlGeneratorInterface $documentUrlGenerator,
private readonly UrlGeneratorInterface $urlGenerator,
Expand Down

0 comments on commit cc4aacd

Please sign in to comment.