Closed (fixed)
Project:
Drupal.org security advisory coverage applications
Component:
module
Priority:
Normal
Category:
Task
Assigned:
Reporter:
Created:
8 Mar 2026 at 19:06 UTC
Updated:
4 May 2026 at 16:00 UTC
Jump to comment: Most recent
Comments
Comment #2
levendclk commentedComment #3
levendclk commentedComment #4
vishal.kadamComment #5
avpadernoThank you for applying!
Before giving links helpful to understand how the review process works, what to expect from a review, and what to do to avoid a review takes more time than needed, I would like to thank all the reviewers for the work they do.
These applications are volunters-driven, which also means it is not possible to predict when an application will be marked fixed and the applicant will get the permission to opt projects into security advisory policy. While we aim to make an application as quick as possible, it is also important for us that more people review the project used for an application. In this way, we make sure applications do not miss some important points that should be instead reported.
Applications are not meant to be complete debugging sessions that eliminate every existing bug, though. I apologize if sometimes applications seem to go into too-detailed reviews.
Please read Review process for security advisory coverage: What to expect for more details and Security advisory coverage application checklist to understand what reviewers look for. Tips for ensuring a smooth review gives some hints for a smoother review.
The important notes are the following.
Keep in mind that once the project is opted into security advisory coverage, only Security Team members may change coverage.
To the reviewers
Please read How to review security advisory coverage applications, Application workflow, What to cover in an application review, and Tools to use for reviews.
The important notes are the following.
For new reviewers, I would also suggest to first read In which way the issue queue for coverage applications is different from other project queues.
Comment #6
avpadernoRemember to change status, when the project is ready to be reviewed. In this queue, projects are only reviewed when the status is Needs review.
Comment #7
levendclk commentedI’ve set up the pipeline and it appears to be running successfully. I believe it’s ready for the security review.
Comment #8
vishal.kadamA specific point may just be an example and may apply in other places.
1. FILE: api_orchestrator.module
A new module that aims to be compatible with latest Drupal releases is expected to implement hooks as class methods as described in Support for object oriented hook implementations using autowired services.
2. FILE: composer.json
There is no need to add the required Drupal version, since that is already added by the Drupal.org Composer façade.
3. FILE: src/Controller/DashboardController.php
FILE: src/Controller/PublicApiController.php
FILE: src/Controller/RequestController.php
FILE: src/Controller/RequestViewController.php
FILE: src/Controller/ResponseDownloadController.php
FILE: src/Form/ApiEndpointForm.php
New modules, which are compatible with Drupal 10 and higher versions are expected to include type declarations in property definitions, and use constructor property promotion.
4. FILE: src/Entity/ApiEndpoint.php, src/Entity/ApiRequest.php, src/Entity/ApiService.php, src/Plugin/QueueWorker/ApiRequestQueueWorker.php
Projects that are compatible with Drupal 10 or higher versions should use attributes instead of annotations.
5. FILE: src/Form/ApiOrchestratorSettingsForm.php
With Drupal 10 and Drupal 11, there is no longer need to use #default_value for each form element, when the parent class is ConfigFormBase: It is sufficient to use #config_target, as in the following code.
Using that code, it is no longer needed to save the configuration values in the form submission handler: The parent class will take care of that.
Comment #9
levendclk commentedI made the relevant changes and pushed them as a new version.
Comment #10
vishal.kadamReleases should not be created after each review done here.
It is better not to create new releases during these applications, since a review could ask for a change that is not backward compatible with the existing releases. Just using a development version avoids those BC issues.
Comment #11
levendclk commentedThanks for the information, in the future it is fit for me. I can do that
Comment #12
vishal.kadamI updated the wrong branch name in the title in Comment #4. Fixing it now.
Comment #13
vishal.kadamFILE: api_orchestrator.module
Since the module is declared compatible with Drupal 10.3, removing the function implementing the hook is not possible. The function still needs to be defined, but it calls the method defined by the service class, as described in Support for object oriented hook implementations using autowired services (Backwards-compatible Hook implementation for Drupal versions from 10.1 to 11.0).
Comment #14
levendclk commentedI removed Drupal 10 support. The project now supports Drupal 11 only. Drupal 10 support will be maintained separately in another branch and managed independently in the future.
Comment #15
levendclk commentedComment #16
vishal.kadamRest seems fine to me.
Please wait for other reviewers and Project Moderator to take a look and if everything goes fine, you will get the role.
Comment #17
levendclk commentedThank You Vishal
Comment #18
vishal.kadamI am changing priority as per Issue priorities.
Comment #19
avpadernoJust to make clear the point about not duplicating the Drupal core requirements in the composer.json file: Applicants should know that the Drupal.org Composer façade adds the Drupal core requirements for the project when the composer.json file does not contain them. Not repeating them avoids any issue caused by the composer.json file having different Drupal core requirements than the ones contained in the .info.yml file.
I cannot think of any workflow where Composer is not used, given that Composer is required by Drupal core to gather the dependencies it needs. Therefore, I cannot think of any case where the Drupal.org Composer façade is not involved when site builders are requiring the modules necessary for their sites.
Comment #20
avpadernoThank you for your contribution and for your patience with the review process!
I am going to update your account so you can opt into security advisory coverage any project you create, including the projects you already created.
These are some recommended readings to help you with maintainership:
You can find more contributors chatting on Slack or IRC in #drupal-contribute. So, come hang out and stay involved!
Anyone is welcome to participate in the review process. Please consider reviewing other projects that are pending review. I encourage you to learn more about that process and join the group of reviewers.
I thank also all the reviewers for helping with these applications.
Comment #21
levendclk commentedThanks for the clarification. Removed drupal/core (and drupal/core-dev) from composer.json in 86aaa88 so the Drupal.org Composer façade derives the core requirement from core_version_requirement in the .info.yml file, avoiding any mismatch between the two.
Comment #22
avpaderno