Closed (fixed)
Project:
Drupal.org security advisory coverage applications
Component:
module
Priority:
Normal
Category:
Task
Assigned:
Reporter:
Created:
18 Apr 2024 at 16:31 UTC
Updated:
11 Sep 2024 at 15:09 UTC
Jump to comment: Most recent
Comments
Comment #2
damien laguerre commentedComment #3
avpadernoThank you for applying!
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 smother review.
The important notes are the following.
phpcs --standard=Drupal,DrupalPracticeon the project, which alone fixes most of what reviewers would report.To the reviewers
Please read How to review security advisory coverage applications, What to cover in an application review, and Drupal.org security advisory coverage application workflow.
Reviewers only describe what needs to be changed; they don't provide patches to fix what reported in a review.
Comment #4
vishal.kadam1. Fix phpcs issues.
2. FILE: ipless.libraries.yml
version: VERSIONVERSION is only used by Drupal core modules. Contributed modules should use a literal string that does not change with the Drupal core version a site is using.
3. FILE: ipless.module
The description for a .module file is Hook implementations for the [module name] module. where [module name] is the module name given in the .info.yml file.
4. FILE: src/Ipless.php
FILE: src/Asset/AssetRenderer.php
FILE: src/Commands/IplessCommands.php
FILE: src/Controller/IplessController.php
FILE: src/Event/IplessCompilationEvent.php
FILE: src/EventSubscriber/HtmlResponseIplessSubscriber.php
The documentation comment for constructors is not mandatory anymore, If it is given, the description must be Constructs a new [class name] object. where [class name] includes the class namespace.
Comment #5
damien laguerre commentedThank you for your time and sorry for the delay.
I've made all the changes. Everything is visible on the repository, I haven't made any release yet.
Comment #6
vishal.kadam1. FILE: src/Form/IpLessSettingForm.php
'#title' => t('Less compilation enabled'),'#title' => t('Enable SourceMap'),t() calls should be avoided in classes, use \Drupal\Core\StringTranslation\StringTranslationTrait and $this->t() instead
2. FILE: src/Event/IplessCompilationEvent.php
FILE: src/Event/IplessEvents.php
@author tags are not usually used in Drupal, because over time multiple contributors will touch the code anyway
Comment #7
damien laguerre commentedThanks, it's fixed.
Comment #8
vishal.kadamRest seems fine to me.
Let’s wait for other reviewers to take a look and if everything goes fine, you will get the role.
Comment #9
vishal.kadamI am changing priority as per Issue priorities.
Comment #10
avpadernoClass instances do not need both those properties. Either the first is used, and a configuration object is created on methods when it is necessary, or the configuration object is created in the constructor and the configuration factory is never stored in a class property.
Comment #11
avpadernoThank you for your contribution!
I updated your account so you can now opt into security advisory coverage for any project you created and every project you will create.
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!
Thank you for your patience with the review process. 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 the dedicated reviewers as well.
Comment #12
damien laguerre commentedThank you for your help and the time you spent on my module.
I really appreciate it!
Thanks again.