-
-
Notifications
You must be signed in to change notification settings - Fork 4
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
Critical migrations #25
Comments
Ah I love it 💖. Had also tought about collecting those todos in an issue 😄 |
@mhsdesign Could you more explain the required I already found a rector migration rector/tests/ContentRepository90/Rules/FusionNodePathRector/Fixture/some_file.fusion.inc Line 8 in 618a7fd
Is this already done? Or is the migration outdated? |
okay i see, but we should also migrate |
NodeType::getName
was removed !!! RemoveNodeType::getName
neos-development-collection#4560${node.nodeType.name}
to${node.nodeTypeName.value}
(not 100% equivalent but should mostly do)$nodeType->getName()
to$nodeType->name->value
path
usage in Fusion #33q(node).property('_path')
and${node.path}
(the latter wont work either way) #34ContentContext::getCurrentRenderingMode
toRenderingModeService::findByCurrentUser
#31node.parent
doesn't work #29The text was updated successfully, but these errors were encountered: