Drupal Core and Modules Update

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Drupal Core and Modules Update

Drupal uses Composer for dependency management — core and modules update via it. Without Composer (manual install) — migrate to Composer-based setup, otherwise every update is manual operation.

Preparation

# Create DB backup
drush sql:dump --result-file=/backups/drupal-$(date +%Y%m%d).sql --gzip

# Backup files (if no automatic)
tar czf /backups/files-$(date +%Y%m%d).tar.gz /var/www/site/web/sites/default/files

# Enable maintenance mode
drush state:set system.maintenance_mode 1 --input-format=integer
drush cr

Check Available Updates

# Show all available updates
composer outdated "drupal/*"

# Only security updates
drush pm:security

Update Drupal Core

# Update to latest compatible version
composer update drupal/core-recommended drupal/core-composer-scaffold --with-all-dependencies

# Or to specific version
composer require drupal/core-recommended:^10.3 --update-with-all-dependencies

# Apply DB updates
drush updatedb

# Update exported config
drush config:export
git diff config/sync/

Update Modules

# Update all modules at once
composer update "drupal/*" --with-all-dependencies

# Update specific module
composer require drupal/views:^3.14

# After module updates
drush updatedb
drush cr

Major Versions: Drupal 9 → 10 → 11

For major update use Upgrade Status:

composer require drupal/upgrade_status
drush en upgrade_status -y
drush upgrade_status:analyze

Upgrade Status analyzes all modules for target version compatibility, shows deprecated functions in custom code.

# Drupal 9 → 10
composer require drupal/core-recommended:^10 --update-with-all-dependencies

# Deprecated APIs: check via Rector
composer require --dev palantirnet/drupal-rector
vendor/bin/rector process web/modules/custom

Updating Contrib Modules with Breaking Changes

Some modules require manual actions on update:

# Check module CHANGELOG
cat vendor/drupal/webform/CHANGELOG.md | head -100

# Check hook_update_N functions
drush php-eval "print_r(drupal_get_schema_versions('webform'));"

# Apply only specific module updates
drush updatedb --module=webform

Testing After Update

# Restore normal mode
drush state:set system.maintenance_mode 0 --input-format=integer
drush cr

# Run tests (if any)
./vendor/bin/phpunit web/modules/custom

# Check logs for errors
drush watchdog:show --severity=Error --count=50

CI/CD for Automatic Updates

# .github/workflows/security-updates.yml
name: Security Updates
on:
  schedule:
    - cron: '0 9 * * 1'  # every monday

jobs:
  update:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Check security updates
        run: composer audit
      - name: Apply updates
        run: composer update --with-all-dependencies
      - name: Create PR if changes
        uses: peter-evans/create-pull-request@v6

Timeframes

Planned Drupal core and modules update with backup and testing — 2–4 hours. Major update with compatibility analysis — 1–3 days.