Marc Henry Schultz

Results 732 comments of Marc Henry Schultz

Yes i observed that already once in ci ... locally it works without ... probably because stuff (schema) is already warmed up?

I have encountered the bug also in the NodeTemplates Ci (see https://github.com/Flowpack/Flowpack.NodeTemplates/pull/51/commits/f37b6c4a21abd9ae4fa368a62c5a81ab01d1a152) The first error is: Neos.ContentRepository.Core/Classes/EventStore/EventPersister.php:47 RuntimeException: A transaction is active already, can't commit events! ----------- and succeeding errors:...

Since the NodeAdress is a concept that will be used frequently by the user we should definitely polish this concept. Main usecase would be to serialize a node into the...

yes separating this makes perfect sense! i think we need two (or three) main serialization formats that we would use ourselves: ### 1. uri parameter serialization `?node={workspace}__{dimensionBase64}__{nodeId}` - example: `?node=user-admin__eyJsYW5ndWFnZSI6ImVuX1VTIn0%3D__995c9174-ddd6-4d5c-cfc0-1ffc82184677`...

Just to add another note from the previous weekly (9.2.). We discussed that a simple json presentation of the `NodeIdentity` should replace the current `NodeAdress->serializeToUri`. That means we do not...

@grebaldi and me discussed this matter. We want to keep the encoding short as query param space is limited and also to reduce overhead in the redux store where we...

i like the idea of being compatible for both. what do you say about it: ```php yield 'no dimensions' => [ 'nodeAddress' => NodeAddress::create( ContentRepositoryId::fromString('default'), WorkspaceName::forLive(), DimensionSpacePoint::createWithoutDimensions(), NodeAggregateId::fromString('marcus-heinrichus') ), 'serialized'...

So we decided for json (see https://github.com/neos/neos-development-collection/issues/5072). And now back to the leftover tasks. With https://github.com/neos/neos-development-collection/pull/4892 the `Neos\Neos\FrontendRouting\NodeAddress` will be deprecated. Following things will need to be adjusted: - [...

Thanks for all the discussions over the past year. With the merge of https://github.com/neos/neos-development-collection/pull/5267 we can finally resolve the topic! The old node address is dead long live the node...

With the merge of https://github.com/neos/neos-development-collection/pull/5321 i think we can successfully close this?