Problem/Motivation
I have
"drupal/core-composer-scaffold": "10.6.*@stable",
"drupal/core-recommended": "10.6.*@stable",
But only the scaffold was updated to the latest release after running composer update -W
There was no dependency conflict or anything. I'm wondering if this is something related to #3612448: Widen constraints in core-recommended for 11.3.x and 10.6.x that was merged.
Comments
Comment #2
solideogloria commentedComment #3
cilefen commentedA
10.6.*is insufficient to force an upgrade to any specific 10.6 version. That on its own, isn't a bug.Comment #4
cilefen commentedcomposer why-not drupal/core 10.6.15will give you technical information as to what is preventing upgrading.Comment #5
solideogloria commentedComment #6
cilefen commentedWhat does the recommended
--dry-runflag produce?Comment #7
solideogloria commentedThis looks specifically like it's related to that issue I mentioned.
Comment #8
solideogloria commentedNot sure why it says
drupal/recommended-project[dev-master]is installed...Comment #9
solideogloria commentedMy composer.json has
"name": "drupal/recommended-project",at the top. ChatGPT says this causes the error, but this is typical for a project created from the Drupal recommended-project template. It hasn't caused any issue until now.EDIT: changing the project name did not remove the error.
Comment #10
solideogloria commentedI had to remove
These workarounds are really annoying to keep track of. Hopefully we won't need to do that anymore.