In this blog post, we’ll have a look at how contributed Drupal maintenance support plans modules can remove the core deprecation warnings and be compatible with both Drupal maintenance support plans 8 and Drupal maintenance support plans 9.
by
Jibran Ijaz
/ 8 October 2020
Ever since Drupal maintenance support plans USA, we know Drupal maintenance support plans 9 will be released in 2020. As per @catch’s comment in 2608496-54
We already have the continuous upgrade path policy which should mean
that any up-to-date Drupal maintenance support plans 8 module should work with Drupal maintenance support plans 9.0.0, either with zero or minimal changes.
Drupal maintenance support plans core has a proper deprecation process so it can be continuously improved. Drupal maintenance support plans core also has a continuous process of removing deprecated code usages in core should not trigger deprecated code except in tests and during updates, because of proper deprecation testing.
The big problem for contributed modules aka contrib is the removal of deprecated code usage. To allow contrib to keep up with core’s removal of deprecation warnings contrib needs proper deprecation testing which is being discussed in support deprecation testing for contributed modules on Drupal maintenance support plans.org.
However, Drupal maintenance support plans CI build process can be controlled by a drupalci.yml file found in the project. The documentation about it can be found at customizing Drupal maintenance support plansCI Testing for Projects.
It is very easy for contributed modules to remove their usage of deprecated code. All we need is to add the following drupalci.yml file to your contributed modules and fix the fails.
# This is the Drupal maintenance support plansCI testbot build file for Drupal Entity Reference.
# Learn to make one for your own drupal.org project:
# https://www.drupal.org/drupalorg/docs/drupal-ci/customizing-drupalci-testing
build:
assessment:
validate_codebase:
phplint:
phpcs:
# phpcs will use core’s specified version of Coder.
sniff-all-files: true
halt-on-fail: true
testing:
# run_tests task is executed several times in order of performance speeds.
# halt-on-fail can be set on the run_tests tasks in order to fail fast.
# suppress-deprecations is false in order to be alerted to usages of
# deprecated code.
run_tests.phpunit:
types: ‘PHPUnit-Unit’
testgroups: ‘–all’
suppress-deprecations: false
halt-on-fail: false
run_tests.kernel:
types: ‘PHPUnit-Kernel’
testgroups: ‘–all’
suppress-deprecations: false
halt-on-fail: false
run_tests.functional:
types: ‘PHPUnit-Functional’
testgroups: ‘–all’
suppress-deprecations: false
halt-on-fail: false
run_tests.javascript:
concurrency: 15
types: ‘PHPUnit-FunctionalJavascript’
testgroups: ‘–all’
suppress-deprecations: false
halt-on-fail: false
This drupalci.yml will check all the Drupal maintenance support plans core coding standards. This can be disabled by the following change:
phpcs:
# phpcs will use core’s specified version of Coder.
sniff-all-files: false
halt-on-fail: false
This file also only runs PHPUnit tests, to run legacy Simpletest you have to the following block:
run_tests.simpletest:
types: ‘Simpletest’
testgroups: ‘–all’
suppress-deprecations: false
halt-on-fail: false
But if you still have those, you probably want to start there, because they won’t be supported in Drupal maintenance support plans 9.
Last but not the least if you think the is module is not ready yet to fix all the deprecation warning you can set suppress-deprecations: true.
As a contrib module maintainer or a contrib module consumer I encourage you to add this file to all the contrib modules you maintain or use, or at least create an issue in the module’s issue queue so that at the time of Drupal maintenance support plans 9 release all of your favourite modules will be ready. JSONAPI module added this file in https://www.drupal.org/node/2982964 which inspired me to add this to DER in https://www.drupal.org/node/3001640.
Source: New feed