Summary
- For a safe update that avoids breaking changes (like the Navigation template issue), consider pinning Drupal core to the minor release you know works (e.g.
"~10.3.0"
). - To check for updates, run
composer outdated
(orcomposer outdated --direct
for only your direct dependencies). - To update, run
composer update --with-all-dependencies
(or update only specific packages if that’s more appropriate).
Using these version constraints and commands, you can better control which versions get installed during an update and avoid unexpected changes in template behavior.
$30