Closed (fixed)
Project:
Drupal.org customizations
Version:
7.x-3.x-dev
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Reporter:
Created:
20 Sep 2023 at 19:58 UTC
Updated:
10 Jan 2024 at 16:19 UTC
Jump to comment: Most recent
Distribution packaging is no longer active with #3266927: End Install Profile Packaging on Drupal.org in August 2023
We can now:
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #2
dwwThe end of an era. 😉 Thanks for cleaning up the mess I helped create. 😅
Comment #11
drummSomehow Features is detecting drupalorg_forum as depending on this, unless the taxonomyextra field instance & base are removed. Since that field is leftover from a migration years ago, removing it is easier than figuring out why.
Comment #14
drummBefore removing the API & data for the packaging allowlist, we should make sure it is not updated. We can remove the Packaging whitelist maintainer role. For posterity, people with the role were:
No packaging allowlist entries have been updated in the past year.
Comment #21
drummThe packaging allowlist is now gone. The last piece is the “Releases missing security updates” display of the drupalorg_project_downloads View. That should no longer be needed.
Comment #23
drummI think the best thing to do is remove “Releases missing security updates.” It may be possible to simplify more in
project_release_compute_update_status()and the other displays of the project downloads, but I don’t think that would be worthwhile now.The only releases made in 2022 or later that will be removed from project pages are:
Query for the others:
SELECT n.nid, n.title, from_unixtime(n.created) FROM node n INNER JOIN field_data_field_release_update_status fdf_rus ON fdf_rus.entity_id = n.nid AND field_release_update_status_value > 1 INNER JOIN project_release_supported_versions prsv ON prsv.recommended_release = n.nid AND prsv.supported = 1 INNER JOIN field_data_field_release_category fdf_rc ON fdf_rc.entity_id = n.nid AND fdf_rc.field_release_category_value IN ('current', 'legacy') INNER JOIN field_data_field_release_build_type fdf_rbt ON fdf_rbt.entity_id = n.nid AND fdf_rbt.field_release_build_type_value = 'static';