Marc Henry Schultz
Marc Henry Schultz
... as we rely on the content stream projection being up to date which might not be the case for a dev system in error state https://github.com/neos/neos-development-collection/blob/ad1e315e27cfd401c7d6af1780dc494e6765e106/Neos.ContentRepository.Core/Classes/Service/ContentStreamPruner.php#L89 maybe we need...
`flow cr:export --path resource://Neos.Demo/Private/Content` results in: > Warning: file_put_contents(): Exclusive locks may only be set for regular files in core/neos-manufacture-90/Packages/Libraries/league/flysystem-local/LocalFilesystemAdapter.php line 128 So we have to transform the path first...
As discussed here https://github.com/neos/neos-development-collection/pull/4322#discussion_r1501880426 its a bit confusing that there exists the possibiliy of a node having a property serialized in the db but the deserializer can return null and...
The Fusion `Runtime` is rather internal and Fusion objects should better not interact with it directly. Currently the problems with the runtime being used in the Fusion object implementations are...
- cleanup todos. There were many todo comments added from 8.3 to 9.0. Some of those are probably already resolved and were just early thoughts but i saw here and...
advanced / verbose output (using internal stuff) - shows number of total nodes across all workspaces - shows number of all content streams - detects and shows if there are...
Currently in 9.0-dev the `NodeUriBuilder` is a not well though out abstraction. It has a really shallow implementation and doest abstract the uribuilder away, but rather exposes it to be...
Currently any faulty catchup implementation can prevent a replay. As they are rather optional, maybe the should not crash the whole system? ``` flow cr:replayAll Replaying events for all projections...
The plugin view feature was removed with https://github.com/neos/neos-development-collection/pull/4330 and thus we have to update the docs at: https://docs.neos.io/guide/manual/extending-neos-with-php-flow/creating-a-plugin currently we are experimenting over here https://github.com/neos/Neos.Demo/pull/190 how to get a simple...
in neos 8 one could leverage the property mapping to write a controller like this ```php public function someAction(NodeInterface $node): {} ``` and pass as node its fully qualified serialised...