At the moment, the process for keeping JavaScript dependencies up to date is informal and dependent on individual contributors ensuring that updates have been applied on time. Ideally we would have processes in place for getting notified of security vulnerabilities in the dependency tree, and a step to make sure that dependencies get updated prior to every release to make (patch, minor and major). This would make sure that if an individual contributor is not available, the team would still be responsible for ensuring that updates have been applied on time.
For context, the total dependency tree at the moment is over 3000 packages meaning that updates are happening at a high frequency. Preparing to a new release should likely include multiple check points where lates updates get applied.
There are 2 topics, security warnings and automated dependency MR creation.
This is fairly easy, a simple gitlabci file such as https://git.drupalcode.org/project/drupal_core_gitlabci_test/-/blob/10.0... will monitor the (JS & PHP) dependencies for security updates and integrates with the gitlab UI : https://git.drupalcode.org/project/drupal_core_gitlabci_test/-/security/.... We can schedule a daily scan for this and I'm sure there are gitlab settings for sending emails or such when a new issues is picked up.
The principle for the various tools that exist is to make one PR for each package update. The only groupings that would make sense for us are doing all CKEditor 5 packages updates (execpt the @ckeditor/ckeditor5-dev-utils
) in the same MR and @bable/core
and @babel/preset-env
in the same MR since they're released in sync. All other dependencies should have their own MR.
First step is to detect packages updates, this can be done by dependabot or renovate.
This should be run on all supported branches. One package update in 3 branches would create 3 different merge requests.
Once we know what there is to update we need to
dep-update-XXX
(with XXX the name of the dependency to update)
git checkout -b dep-update-drupal-XXX dep-update-XXX
yarn
yarn build
yarn vendor-update
yarn run build:ckeditor5-types
(yarn build:ckeditor5
is already run by yarn build
above
yarn spellcheck:make-drupal-dict
When the update package is CKEditor 5 or webpack* in the dep-update-cke5
branch run the following commands:
ckeditor5-build
) branch from the core branch
yarn
yarn build:ckeditor5-dev
git checkout -b review-ckeditor5-build dep-update-XXX
yarn
yarn build:ckeditor5-dev
review-ckeditor5-build
to ckeditor5-build
to review the unminified changes (so that CI doesn't run for this MR)
The various steps involves creating 4 branches max:
dep-update-XXX
dep-update-drupal-XXX
ckeditor5-build
review-ckeditor5-build
And 2 merge requests:
dep-update-drupal-XXX
to core branch (the MR to commit)
review-ckeditor5-build
to ckeditor5-build
for review
Agree on the proposal
Needs review
10.0 ✨
It makes Drupal less vulnerable to abuse or misuse. Note, this is the preferred tag, though the Security tag has a large body of issues tagged to it. Do NOT publicly disclose security vulnerabilities; contact the security team instead. Anyone (whether security team or not) can apply this tag to security improvements that do not directly present a vulnerability e.g. hardening an API to add filtering to reduce a common mistake in contributed modules.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.