Overview
Please don’t upgrade multiple versions at once (eg. from v5 to v7). Please upgrade one step at a time.
composer.json
file, change the statamic-rad-pack/runway
version constraint to ^7.0
:
High impact changes
Statamic support
Affects all apps using Runway The minimum version of Statamic is now 5. Please review the Statamic 5 upgrade guide.PHP support
Affects apps using PHP 8.1 The minimum version of PHP is now 8.2. We highly recommend upgrading all the way to PHP 8.3.Resource handles are now generated differently
Affects apps with Eloquent models, where the class name is multiple words Runway will now generate resource handles slightly differently for Eloquent models, where the class name is multiple words. For example: in v6, the resource handle for a model namedBlogPost
would have been blogpost
. In v7, it will now be blog_post
for easier readability.
If this affects you, you can either update all references to the old resource handle in your blueprints & templates, or manually override the handle of the resource in your Runway config:
config/runway.php
You may also view a diff of changes between v6.x and v7.0