- Issue created by @mkalkbrenner
- First commit to issue fork.
- πΊπ¦Ukraine voleger Ukraine, Rivne
Because it is unsafe to use it as it has been unsupported since November 1, 2023.
But in case of some reason you still need to use this project on a Drupal 9 setup, there is a way to use it by combining a patch to the info file and the use of drupal-lenient composer plugin https://www.drupal.org/docs/develop/using-composer/using-the-drupal-leni... β -
bluegeek9 β
committed b33b037d on 2.0.x authored by
mkalkbrenner β
Issue #3541997: Declare Drupal 11 compatibility
-
bluegeek9 β
committed b33b037d on 2.0.x authored by
mkalkbrenner β
- πΊπ¦Ukraine bvakulin
Problem/Motivation
When installing the module with Composer using:composer require drupal/change_pwd_page:^2.0
Composer fetches the official tarball release (e.g.
2.0.0
) from Drupal.org.
This release is created only when a tag is added, so it does not include the latest commits in the2.0.x
branch.As a result, the code installed via Composer can be outdated compared to the current
2.0.x
branch.Steps to reproduce
Run
composer require drupal/change_pwd_page:^2.0.
Check the code β it is locked to the
2.0.0
tag.Run
git clone --branch 2.0.x https://git.drupalcode.org/project/change_pwd_page.git.
Compare the code β the cloned branch contains the latest commits that are not in the
2.0.0
release.Expected result
Composer installation should provide access to the latest code from the2.0.x
branch (e.g. using2.0.x-dev
), not only the last tagged release.Actual result
Composer installs the outdated2.0.0
release, missing recent commits from2.0.x
.