On Drupal 11.4 the recipe-based standard profile ships no content types -- no Article, and so no field_image. The Tugboat demo seed (.tugboat/setup.php) configures the node.article.default form and view displays and creates an Article node with field_image, so on 11.4 it fatals immediately:
Call to a member function setComponent() on null
at EntityFormDisplay::load('node.article.default') (the display does not exist). The Tugboat image (tugboatqa/drupal:11) + minimum-stability dev now resolves core to an 11.4 pre-release, so the daily base rebuild hit this.
Fix
In .tugboat/setup.php, provision what the demo needs instead of assuming the profile supplies it: create the article content type, the field_image image field (storage + instance), and the default form/view displays if absent, before configuring the crop widget. Tugboat-only change.
Issue fork crop_or_fill-3595207
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #3
mably commentedComment #5
mably commented