Marc Henry Schultz
Marc Henry Schultz
**Upgrade instructions** As `AbstractController::addFlashMessage` should be used to add FlashMessages rather than interacting with the container directly this deprecation should go unnoticed. If its required, one should use the `FlashMessageService`...
This is breaking if you implemented your own ControllerInterface or overwrote or expect some of the api methods of the ActionController. We now use a direct pattern of f(ActionRequest) =>...
Was that always the case? I mean why the hell do we separate the object configuration by package LOL. But that's for another PR / ticket _Originally posted by @kitsunet...
While working on https://github.com/neos/flow-development-collection/pull/2744 and also https://github.com/neos/neos-development-collection/issues/4552 we always came to the conclusion that the `$queryParameters` merging of the psr uri is limited. This introduces a utility to do this:...
…text Resolves: https://github.com/neos/neos-development-collection/issues/4888 Related: https://github.com/neos/flow-development-collection/issues/2157 Currently, if a no absolute baseUri is set the `BaseUriProvider::getConfiguredBaseUriOrFallbackToCurrentRequest` will throw an exception. > No base URI could be provided. This probably means a...
While trying to fix https://github.com/neos/flow-development-collection/issues/3303 i noticed that my file monitor had stale caches. I deleted a file long time, but it was still present in `Cache/Data/Flow_Monitor/Flow_ClassFiles_filesAndModificationTimes`. That should not...
Is there a reason that fluids property access is slightly different than eels? In fusion/eel i would also like to call `${fooo.isSomething}` which calls the method `isSomething()` to be more...
> What about the Cookie::createFromRawSetCookieHeader(...) method? >[...] Should we deprecate and remove it or try to make actual use of it (could be in a follow-up)? This should be a...
While testing https://github.com/neos/flow-development-collection/pull/2956 i found out that flow crashes with: > `parseAutowiring`: Invalid autowiring declaration "off" in source configuration of package Neos.Flow, definition for object "DateTime". At first i was...
This introduces similar to https://github.com/neos/neos-development-collection/pull/4619 a `--level` option to `flow configuration:show`. It helps when inspecting large nested configuration parts and for scouting out only the first few keys: ``` ➜...