-
-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BUGFIX: Get rid of RouteCacheAspect #3215
Closed
bwaidelich
wants to merge
163
commits into
neos:7.1
from
bwaidelich:bugfix/get-rid-of-routeCacheAspect
Closed
BUGFIX: Get rid of RouteCacheAspect #3215
bwaidelich
wants to merge
163
commits into
neos:7.1
from
bwaidelich:bugfix/get-rid-of-routeCacheAspect
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
… `Content` instead of denying `Document` This fixes a cumbersome rule that is often unexpected and hard to explain.
the node that is moved in `renamedNodeInPersonalWorkspaceDoesNotRenameInLiveWorkspace` is now of type `Acme.Demo:TeaserGroup` which inherits from `Neos.Neos:Content`, and `Neos.Neos:ContentCollection` That way it is actually allowed to be moved into another content collection.
Co-authored-by: Daniel Lienert <[email protected]>
Co-authored-by: Daniel Lienert <[email protected]>
Bumps [jquery](https://github.com/jquery/jquery) from 3.4.1 to 3.5.0. - [Release notes](https://github.com/jquery/jquery/releases) - [Commits](jquery/jquery@3.4.1...3.5.0) Signed-off-by: dependabot[bot] <[email protected]>
Bumps [acorn](https://github.com/acornjs/acorn) from 6.2.1 to 6.4.1. - [Release notes](https://github.com/acornjs/acorn/releases) - [Commits](acornjs/acorn@6.2.1...6.4.1) Signed-off-by: dependabot[bot] <[email protected]>
Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.0 to 6.5.3. - [Release notes](https://github.com/indutny/elliptic/releases) - [Commits](indutny/elliptic@v6.5.0...v6.5.3) Signed-off-by: dependabot[bot] <[email protected]>
…erator Added AfxGenerator Added FusionRecursiveDirectoryRenderer for rendering a bunch of files with one method call
…ostprocessor from NodeTypeConfigurationEnrichmentAspect This will allow to put custom NodeTypePostprocessors before those two which can still benefit from the provided services.
This allows to configure nodeType Presets via settings and apply them to nodeTypes via. Other than Mixins this allows to ensure consistent configurations across differently named properties. The presets can be applied by definining the `options.preset` for childNodes or properties. ``` Neos: Neos: nodeTypes: presets: childNods: vendor: constraintPreset: constraints: 'Neos.Neos:Content': true 'Neos.NodeTypes.BaseMixins:TitleMixin': true properties: vendor: textBlock: type: string ui: inlineEditable type: string defaultValue: '' ui: inlineEditable: true inline: editorOptions: placeholder: '(( text block ))' autoparagraph: true formatting: strong: true em: true u: false underline: false ```
…eos/acorn-6.4.1 TASK: Bump acorn from 6.2.1 to 6.4.1 in /Neos.Neos
The adjustments were applied to all nodes with constraints because the existence of the superType "Neos.Neos:ContentCollection" was not properly checked.
…ntentCollectionConstraints BUGFIX: Correct bug in migration of ContentCollectionConstraints
TASK: Apply migrations
Adjust DB migrations to Doctrine Migrations 3.0
…yped-persistence BUGFIX: Adjust to typed persistence code See neos/flow-development-collection#2231
…grations !!! TASK: Adjust to doctrine/migrations v3
The LinkingService.createNodeUri() no longer uses/accepts this parameter…
…tcuts-use TASK: Remove use of resolveShortcuts argument
TASK: Update gedmo/doctrine-extensions to 3.0
Draft because this would break custom implementations of the |
Closing in favor of #3589 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Moves logic for creating route tags to the RoutePartHandler
Related: #3216