diff --git a/.composer.json b/.composer.json index e9b6bcf2304..e1ce03517de 100644 --- a/.composer.json +++ b/.composer.json @@ -4,8 +4,7 @@ "license": ["GPL-3.0-or-later"], "type": "neos-package-collection", "require": { - "neos/flow-development-collection": "8.2.x-dev", - "neos/neos-setup": "^1.0" + "neos/flow-development-collection": "8.2.x-dev" }, "replace": { }, diff --git a/Neos.ContentRepository/Classes/Command/NodeCommandControllerPlugin.php b/Neos.ContentRepository/Classes/Command/NodeCommandControllerPlugin.php index 35ff325e750..9ef4d9e7074 100644 --- a/Neos.ContentRepository/Classes/Command/NodeCommandControllerPlugin.php +++ b/Neos.ContentRepository/Classes/Command/NodeCommandControllerPlugin.php @@ -833,7 +833,16 @@ public function removeBrokenEntityReferences($workspaceName) $convertedProperty->__load(); } /** @noinspection PhpRedundantCatchClauseInspection */ catch (EntityNotFoundException $e) { $nodesWithBrokenEntityReferences[$nodeData->getIdentifier()][$propertyName] = $nodeData; - $this->dispatch(self::EVENT_NOTICE, sprintf('Broken reference in "%s" (%s), property "%s" (%s) referring to %s.', $nodeData->getPath(), $nodeData->getIdentifier(), $propertyName, $propertyType, $propertyValue)); + $this->dispatch(self::EVENT_NOTICE, sprintf( + 'Broken reference in "%s" (%s), property "%s" (%s)%s.', + $nodeData->getPath(), + $nodeData->getIdentifier(), + $propertyName, + $propertyType, + method_exists($propertyValue, '__toString') ? + ' referring to ' . $propertyValue->__toString() . '' : + '' + )); $brokenReferencesCount ++; } } diff --git a/Neos.Neos/Documentation/Appendixes/ChangeLogs/7318.rst b/Neos.Neos/Documentation/Appendixes/ChangeLogs/7318.rst new file mode 100644 index 00000000000..6ffe45df385 --- /dev/null +++ b/Neos.Neos/Documentation/Appendixes/ChangeLogs/7318.rst @@ -0,0 +1,19 @@ +`7.3.18 (2023-12-13) `_ +================================================================================================ + +Overview of merged pull requests +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +`BUGFIX: Filter for assets by asset collection by using constraints `_ +------------------------------------------------------------------------------------------------------------------------------------- + +Fixes a bug, that was introduced with: https://github.com/neos/neos-development-collection/pull/4724 + +Because of using the QueryBuilder twice, the count of the paramter and for the query is not correct anymore. + +* Fixes: `#4801 `_ + +* Packages: ``Neos`` ``Media`` + +`Detailed log `_ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/Neos.Neos/Documentation/Appendixes/ChangeLogs/8015.rst b/Neos.Neos/Documentation/Appendixes/ChangeLogs/8015.rst new file mode 100644 index 00000000000..b52021deb81 --- /dev/null +++ b/Neos.Neos/Documentation/Appendixes/ChangeLogs/8015.rst @@ -0,0 +1,19 @@ +`8.0.15 (2023-12-13) `_ +================================================================================================ + +Overview of merged pull requests +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +`BUGFIX: Filter for assets by asset collection by using constraints `_ +------------------------------------------------------------------------------------------------------------------------------------- + +Fixes a bug, that was introduced with: https://github.com/neos/neos-development-collection/pull/4724 + +Because of using the QueryBuilder twice, the count of the paramter and for the query is not correct anymore. + +* Fixes: `#4801 `_ + +* Packages: ``Neos`` ``Media`` + +`Detailed log `_ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/Neos.Neos/Documentation/Appendixes/ChangeLogs/8110.rst b/Neos.Neos/Documentation/Appendixes/ChangeLogs/8110.rst new file mode 100644 index 00000000000..26ba1ddd4c5 --- /dev/null +++ b/Neos.Neos/Documentation/Appendixes/ChangeLogs/8110.rst @@ -0,0 +1,19 @@ +`8.1.10 (2023-12-13) `_ +================================================================================================ + +Overview of merged pull requests +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +`BUGFIX: Filter for assets by asset collection by using constraints `_ +------------------------------------------------------------------------------------------------------------------------------------- + +Fixes a bug, that was introduced with: https://github.com/neos/neos-development-collection/pull/4724 + +Because of using the QueryBuilder twice, the count of the paramter and for the query is not correct anymore. + +* Fixes: `#4801 `_ + +* Packages: ``Neos`` ``Media`` + +`Detailed log `_ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/Neos.Neos/Documentation/References/CommandReference.rst b/Neos.Neos/Documentation/References/CommandReference.rst index 48cc9fa4f32..27c82ca74bd 100644 --- a/Neos.Neos/Documentation/References/CommandReference.rst +++ b/Neos.Neos/Documentation/References/CommandReference.rst @@ -19,7 +19,7 @@ commands that may be available, use:: ./flow help -The following reference was automatically generated from code on 2023-12-13 +The following reference was automatically generated from code on 2023-12-21 .. _`Neos Command Reference: NEOS.CONTENTREPOSITORY`: diff --git a/Neos.Neos/Documentation/References/EelHelpersReference.rst b/Neos.Neos/Documentation/References/EelHelpersReference.rst index 03502e49caa..64d0e93d9a9 100644 --- a/Neos.Neos/Documentation/References/EelHelpersReference.rst +++ b/Neos.Neos/Documentation/References/EelHelpersReference.rst @@ -3,7 +3,7 @@ Eel Helpers Reference ===================== -This reference was automatically generated from code on 2023-12-13 +This reference was automatically generated from code on 2023-12-21 .. _`Eel Helpers Reference: Api`: diff --git a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst index 66ffaa160fd..edf29d5e9ca 100644 --- a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst +++ b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst @@ -3,7 +3,7 @@ FlowQuery Operation Reference ============================= -This reference was automatically generated from code on 2023-12-13 +This reference was automatically generated from code on 2023-12-21 .. _`FlowQuery Operation Reference: add`: diff --git a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst index 86e66a10692..053bfa84c35 100644 --- a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository Signals Reference ==================================== -This reference was automatically generated from code on 2023-12-13 +This reference was automatically generated from code on 2023-12-21 .. _`Content Repository Signals Reference: Context (``Neos\ContentRepository\Domain\Service\Context``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Flow.rst b/Neos.Neos/Documentation/References/Signals/Flow.rst index 17d5ec2cfc2..fda54492126 100644 --- a/Neos.Neos/Documentation/References/Signals/Flow.rst +++ b/Neos.Neos/Documentation/References/Signals/Flow.rst @@ -3,7 +3,7 @@ Flow Signals Reference ====================== -This reference was automatically generated from code on 2023-12-13 +This reference was automatically generated from code on 2023-12-21 .. _`Flow Signals Reference: AbstractAdvice (``Neos\Flow\Aop\Advice\AbstractAdvice``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Media.rst b/Neos.Neos/Documentation/References/Signals/Media.rst index d10281c05b3..b05c422f4fc 100644 --- a/Neos.Neos/Documentation/References/Signals/Media.rst +++ b/Neos.Neos/Documentation/References/Signals/Media.rst @@ -3,7 +3,7 @@ Media Signals Reference ======================= -This reference was automatically generated from code on 2023-12-13 +This reference was automatically generated from code on 2023-12-21 .. _`Media Signals Reference: AssetCollectionController (``Neos\Media\Browser\Controller\AssetCollectionController``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Neos.rst b/Neos.Neos/Documentation/References/Signals/Neos.rst index 0faefaef78e..3a81a6324e1 100644 --- a/Neos.Neos/Documentation/References/Signals/Neos.rst +++ b/Neos.Neos/Documentation/References/Signals/Neos.rst @@ -3,7 +3,7 @@ Neos Signals Reference ====================== -This reference was automatically generated from code on 2023-12-13 +This reference was automatically generated from code on 2023-12-21 .. _`Neos Signals Reference: AbstractCreate (``Neos\Neos\Ui\Domain\Model\Changes\AbstractCreate``)`: diff --git a/Neos.Neos/Documentation/References/Validators/Flow.rst b/Neos.Neos/Documentation/References/Validators/Flow.rst index 48e4d5c991b..9d6d45bcda6 100644 --- a/Neos.Neos/Documentation/References/Validators/Flow.rst +++ b/Neos.Neos/Documentation/References/Validators/Flow.rst @@ -3,7 +3,7 @@ Flow Validator Reference ======================== -This reference was automatically generated from code on 2023-12-13 +This reference was automatically generated from code on 2023-12-21 .. _`Flow Validator Reference: AggregateBoundaryValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Media.rst b/Neos.Neos/Documentation/References/Validators/Media.rst index cb15488c97e..cfa8fb17367 100644 --- a/Neos.Neos/Documentation/References/Validators/Media.rst +++ b/Neos.Neos/Documentation/References/Validators/Media.rst @@ -3,7 +3,7 @@ Media Validator Reference ========================= -This reference was automatically generated from code on 2023-12-13 +This reference was automatically generated from code on 2023-12-21 .. _`Media Validator Reference: ImageOrientationValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Party.rst b/Neos.Neos/Documentation/References/Validators/Party.rst index ec414271ac2..7a839ade47c 100644 --- a/Neos.Neos/Documentation/References/Validators/Party.rst +++ b/Neos.Neos/Documentation/References/Validators/Party.rst @@ -3,7 +3,7 @@ Party Validator Reference ========================= -This reference was automatically generated from code on 2023-12-13 +This reference was automatically generated from code on 2023-12-21 .. _`Party Validator Reference: AimAddressValidator`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst index 4cd45c61fce..c2e58be37d4 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository ViewHelper Reference ####################################### -This reference was automatically generated from code on 2023-12-13 +This reference was automatically generated from code on 2023-12-21 .. _`Content Repository ViewHelper Reference: PaginateViewHelper`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst index c985b023ae0..235fc4e8fc9 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst @@ -3,7 +3,7 @@ FluidAdaptor ViewHelper Reference ################################# -This reference was automatically generated from code on 2023-12-13 +This reference was automatically generated from code on 2023-12-21 .. _`FluidAdaptor ViewHelper Reference: f:debug`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst index d91711c1f21..df8a264bae0 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst @@ -3,7 +3,7 @@ Form ViewHelper Reference ######################### -This reference was automatically generated from code on 2023-12-13 +This reference was automatically generated from code on 2023-12-21 .. _`Form ViewHelper Reference: neos.form:form`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst index 545536c47bc..86108883c9d 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst @@ -3,7 +3,7 @@ Fusion ViewHelper Reference ########################### -This reference was automatically generated from code on 2023-12-13 +This reference was automatically generated from code on 2023-12-21 .. _`Fusion ViewHelper Reference: fusion:render`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst index ce6441e11ec..6420fa70317 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst @@ -3,7 +3,7 @@ Media ViewHelper Reference ########################## -This reference was automatically generated from code on 2023-12-13 +This reference was automatically generated from code on 2023-12-21 .. _`Media ViewHelper Reference: neos.media:fileTypeIcon`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst index e3a920b6183..2eb373a7f4b 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst @@ -3,7 +3,7 @@ Neos ViewHelper Reference ######################### -This reference was automatically generated from code on 2023-12-13 +This reference was automatically generated from code on 2023-12-21 .. _`Neos ViewHelper Reference: neos:backend.authenticationProviderLabel`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst index 9b2049518c9..02ee96e470a 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst @@ -3,7 +3,7 @@ TYPO3 Fluid ViewHelper Reference ################################ -This reference was automatically generated from code on 2023-12-13 +This reference was automatically generated from code on 2023-12-21 .. _`TYPO3 Fluid ViewHelper Reference: f:alias`: diff --git a/composer.json b/composer.json index e278a09dc3a..1126aedbf9f 100644 --- a/composer.json +++ b/composer.json @@ -7,7 +7,6 @@ "type": "neos-package-collection", "require": { "neos/flow-development-collection": "8.2.x-dev", - "neos/neos-setup": "^1.0", "php": "^8.0", "neos/flow": "*", "neos/cache": "*",