Looks like the automated Rector changes removed the core line from the module's info YAML file, so the module no longer installs.
You can see the removal here: https://git.drupalcode.org/project/password_policy_pwned/-/commit/b05369...
In InfoParserDynamic.php line 73:
[Drupal\Core\Extension\InfoParserException]
The 'core' or the 'core_version_requirement' key must be present in modules/contrib/password_policy_pwned/password_policy_pwned.info.yml
I think we could add the below to the info file, I'll submit a patch in a minute:
core: 8.x
core_version_requirement: ^8 || ^9
Comments
Comment #2
Phil Wolstenholme commentedWe can use both
coreandcore_version_requirementto ensure compat with older versions of Drupal 8.Comment #4
kim.pepperThanks for picking it up!
Committed and pushed to 8.x-1.x. Thanks!