Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/8.2' into 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ahaeslich committed Dec 21, 2023
2 parents 5e02a17 + 31ab7e4 commit 7a30824
Show file tree
Hide file tree
Showing 24 changed files with 104 additions and 21 deletions.
3 changes: 1 addition & 2 deletions .composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
"license": ["GPL-3.0-or-later"],
"type": "neos-package-collection",
"require": {
"neos/flow-development-collection": "8.3.x-dev",
"neos/neos-setup": "^1.0"
"neos/flow-development-collection": "8.3.x-dev"
},
"replace": {
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 "<i>%s</i>" (%s), property "<i>%s</i>" (<i>%s</i>) referring to <i>%s</i>.', $nodeData->getPath(), $nodeData->getIdentifier(), $propertyName, $propertyType, $propertyValue));
$this->dispatch(self::EVENT_NOTICE, sprintf(
'Broken reference in "<i>%s</i>" (%s), property "<i>%s</i>" (<i>%s</i>)%s.',
$nodeData->getPath(),
$nodeData->getIdentifier(),
$propertyName,
$propertyType,
method_exists($propertyValue, '__toString') ?
' referring to <i>' . $propertyValue->__toString() . '</i>' :
''
));
$brokenReferencesCount ++;
}
}
Expand Down
19 changes: 19 additions & 0 deletions Neos.Neos/Documentation/Appendixes/ChangeLogs/7318.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
`7.3.18 (2023-12-13) <https://github.com/neos/neos-development-collection/releases/tag/7.3.18>`_
================================================================================================

Overview of merged pull requests
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

`BUGFIX: Filter for assets by asset collection by using constraints <https://github.com/neos/neos-development-collection/pull/4802>`_
-------------------------------------------------------------------------------------------------------------------------------------

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 <https://github.com/neos/neos-development-collection/issues/4801>`_

* Packages: ``Neos`` ``Media``

`Detailed log <https://github.com/neos/neos-development-collection/compare/7.3.17...7.3.18>`_
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19 changes: 19 additions & 0 deletions Neos.Neos/Documentation/Appendixes/ChangeLogs/8015.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
`8.0.15 (2023-12-13) <https://github.com/neos/neos-development-collection/releases/tag/8.0.15>`_
================================================================================================

Overview of merged pull requests
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

`BUGFIX: Filter for assets by asset collection by using constraints <https://github.com/neos/neos-development-collection/pull/4802>`_
-------------------------------------------------------------------------------------------------------------------------------------

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 <https://github.com/neos/neos-development-collection/issues/4801>`_

* Packages: ``Neos`` ``Media``

`Detailed log <https://github.com/neos/neos-development-collection/compare/8.0.14...8.0.15>`_
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19 changes: 19 additions & 0 deletions Neos.Neos/Documentation/Appendixes/ChangeLogs/8110.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
`8.1.10 (2023-12-13) <https://github.com/neos/neos-development-collection/releases/tag/8.1.10>`_
================================================================================================

Overview of merged pull requests
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

`BUGFIX: Filter for assets by asset collection by using constraints <https://github.com/neos/neos-development-collection/pull/4802>`_
-------------------------------------------------------------------------------------------------------------------------------------

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 <https://github.com/neos/neos-development-collection/issues/4801>`_

* Packages: ``Neos`` ``Media``

`Detailed log <https://github.com/neos/neos-development-collection/compare/8.1.9...8.1.10>`_
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19 changes: 19 additions & 0 deletions Neos.Neos/Documentation/Appendixes/ChangeLogs/8210.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
`8.2.10 (2023-12-13) <https://github.com/neos/neos-development-collection/releases/tag/8.2.10>`_
================================================================================================

Overview of merged pull requests
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

`BUGFIX: Filter for assets by asset collection by using constraints <https://github.com/neos/neos-development-collection/pull/4802>`_
-------------------------------------------------------------------------------------------------------------------------------------

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 <https://github.com/neos/neos-development-collection/issues/4801>`_

* Packages: ``Neos`` ``Media``

`Detailed log <https://github.com/neos/neos-development-collection/compare/8.2.9...8.2.10>`_
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 changes: 1 addition & 1 deletion Neos.Neos/Documentation/References/CommandReference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down
2 changes: 1 addition & 1 deletion Neos.Neos/Documentation/References/EelHelpersReference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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``)`:
Expand Down
2 changes: 1 addition & 1 deletion Neos.Neos/Documentation/References/Signals/Flow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``)`:
Expand Down
2 changes: 1 addition & 1 deletion Neos.Neos/Documentation/References/Signals/Media.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``)`:
Expand Down
2 changes: 1 addition & 1 deletion Neos.Neos/Documentation/References/Signals/Neos.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``)`:
Expand Down
2 changes: 1 addition & 1 deletion Neos.Neos/Documentation/References/Validators/Flow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down
2 changes: 1 addition & 1 deletion Neos.Neos/Documentation/References/Validators/Media.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down
2 changes: 1 addition & 1 deletion Neos.Neos/Documentation/References/Validators/Party.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down
2 changes: 1 addition & 1 deletion Neos.Neos/Documentation/References/ViewHelpers/Form.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down
2 changes: 1 addition & 1 deletion Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down
2 changes: 1 addition & 1 deletion Neos.Neos/Documentation/References/ViewHelpers/Media.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down
2 changes: 1 addition & 1 deletion Neos.Neos/Documentation/References/ViewHelpers/Neos.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"type": "neos-package-collection",
"require": {
"neos/flow-development-collection": "8.3.x-dev",
"neos/neos-setup": "^1.0",
"php": "^8.0",
"neos/flow": "*",
"neos/cache": "*",
Expand Down

0 comments on commit 7a30824

Please sign in to comment.