Skip to content

Commit 46b3d3c

Browse files
authored
Task/update to neos7 (#2)
* TASK: Apply migration Neos.SwiftMailer-20161130105617 Adjusts code to package renaming from "TYPO3.SwiftMailer" to "Neos.SwiftMailer". Note: This migration did not produce any changes, so the commit simply marks the migration as applied. This makes sure it will not be applied again. * TASK: Apply migration Neos.Flow-20190425144900 Adjusts code to FlashMessageContainer renaming from "\Neos\Flow\Mvc" to "\Neos\Flow\Mvc\FlashMessage". Note: This migration did not produce any changes, so the commit simply marks the migration as applied. This makes sure it will not be applied again. * TASK: Apply migration Neos.Flow-20190515215000 Adjust "Settings.yaml" to new PSR-3 logging settings (see neos/flow-development-collection#1574) Note: This migration did not produce any changes, so the commit simply marks the migration as applied. This makes sure it will not be applied again. * TASK: Apply migration Neos.NodeTypes-20190917101945 Adjusts code to rename nodetypes that were extracted to subpackages in fusion and nodetype definitions Note: This migration did not produce any changes, so the commit simply marks the migration as applied. This makes sure it will not be applied again. * TASK: Apply migration Networkteam.Neos.MailObfuscator-20190919145400 Move class names in namespace String because string is a reserved keyword Note: This migration did not produce any changes, so the commit simply marks the migration as applied. This makes sure it will not be applied again. * TASK: Apply migration Neos.NodeTypes-20200120114136 Adjusts code to rename nodetypes that were extracted to subpackages in fusion and nodetype definitions Note: This migration did not produce any changes, so the commit simply marks the migration as applied. This makes sure it will not be applied again. * TASK: Apply migration Neos.Flow-20200813181400 Adjust "Settings.yaml" to new naming of settings (see neos/flow-development-collection#2051) Note: This migration did not produce any changes, so the commit simply marks the migration as applied. This makes sure it will not be applied again. * TASK: Apply migration Neos.Flow-20201003165200 Make default ValueObjects embedded=false Note: This migration did not produce any changes, so the commit simply marks the migration as applied. This makes sure it will not be applied again. * TASK: Apply migration Neos.Flow-20201109224100 Adjust DB migrations to Doctrine Migrations 3.0 Note: This migration did not produce any changes, so the commit simply marks the migration as applied. This makes sure it will not be applied again. * TASK: Apply migration Neos.Flow-20201205172733 This migration does not actually change any code. It just displays a warning if a PHP file still refers to the no longer existing ComponentInterface Note: This migration did not produce any changes, so the commit simply marks the migration as applied. This makes sure it will not be applied again. * TASK: Apply migration Neos.Flow-20201207104500 Adjust code to deprecation of ComponentContext/ComponentParameters Note: This migration did not produce any changes, so the commit simply marks the migration as applied. This makes sure it will not be applied again. * TASK: Apply migration Neos.Neos-20220318111600 Replace legacy content cache tag definitions in Fusion Note: This migration did not produce any changes, so the commit simply marks the migration as applied. This makes sure it will not be applied again. * TASK: Apply migration Neos.Flow-20220318174300 Adjust "Settings.yaml" to remove legacy fluid custom error view options (see neos/flow-development-collection#2742) Note: This migration did not produce any changes, so the commit simply marks the migration as applied. This makes sure it will not be applied again. * TASK: Apply migration Neos.Fusion-20220326120900 Expand Neos.Fusion-FusionObjects without namespace to fully qualified names Note: This migration did not produce any changes, so the commit simply marks the migration as applied. This makes sure it will not be applied again. * task: cgl
1 parent 74edad3 commit 46b3d3c

File tree

2 files changed

+19
-5
lines changed

2 files changed

+19
-5
lines changed

Resources/Private/Templates/NodeTypes/Image.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<body>
77
<f:section name="Main">
88
<div{attributes -> f:format.raw()}>
9-
<f:render partial="Image" arguments="{_all}" section="Main"/>
9+
<f:render partial="Image" arguments="{_all}" section="Main"/>
1010
</div>
1111
</f:section>
1212
</body>

composer.json

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"name": "onedrop/imagesrcset",
55
"description": "Adds responsive image sizes via the the srcset attribute to the default NodeTypes",
66
"require": {
7-
"neos/neos": "~3.0 || ^4.0 || ^5.0",
8-
"neos/nodetypes": "~3.0 || ^4.0 || ^5.0"
7+
"neos/neos": "^7.0 || ^8.0",
8+
"neos/nodetypes": "^7.0 || ^8.0"
99
},
1010
"extra": {
1111
"neos": {
@@ -87,7 +87,21 @@
8787
"Neos.Fusion-20180211184832",
8888
"Neos.Flow-20180415105700",
8989
"Neos.Neos-20180907103800",
90-
"Neos.Neos.Ui-20190319094900"
90+
"Neos.Neos.Ui-20190319094900",
91+
"Neos.SwiftMailer-20161130105617",
92+
"Neos.Flow-20190425144900",
93+
"Neos.Flow-20190515215000",
94+
"Neos.NodeTypes-20190917101945",
95+
"Networkteam.Neos.MailObfuscator-20190919145400",
96+
"Neos.NodeTypes-20200120114136",
97+
"Neos.Flow-20200813181400",
98+
"Neos.Flow-20201003165200",
99+
"Neos.Flow-20201109224100",
100+
"Neos.Flow-20201205172733",
101+
"Neos.Flow-20201207104500",
102+
"Neos.Neos-20220318111600",
103+
"Neos.Flow-20220318174300",
104+
"Neos.Fusion-20220326120900"
91105
]
92106
}
93-
}
107+
}

0 commit comments

Comments
 (0)