Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion advisories/currency/DRUPAL-CONTRIB-2025-110.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"affected": [
{
"package": {
"ecosystem": "Packagist",
"ecosystem": "Packagist:https://packages.drupal.org/8",
"name": "drupal/currency"
},
"severity": [],
Expand Down
8 changes: 7 additions & 1 deletion scripts/generate_osv_advisories.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,13 @@ def build_osv_advisory(
ecosystem = 'Packagist'

# record the Composer repository the affected package is sourced from
if composer_package_name not in drupal_packages_available_on_packagist:
#
# note there is a special case for drupal/currency as it was published
# on Packagist initially before later moving to the Drupal repository
if (
composer_package_name == 'drupal/currency'
or composer_package_name not in drupal_packages_available_on_packagist
):
ecosystem += ':https://packages.drupal.org/8'

osv_advisory: osv.Vulnerability = {
Expand Down
Loading