Skip to main content
Version: 7.x

Upgrade Guide

Navigate between major versions of auditor-bundle

This section contains upgrade guides for major versions.

📚 Upgrade Guides

📋 Version Support

VersionStatusSupport Until
7.xActive development 🚀Current
6.xActive supportTBD
5.xEnd of Life-

✅ General Upgrade Process

IMPORTANT

Always follow these steps when upgrading:

  1. 📖 Read the upgrade guide for your target version
  2. 📦 Update dependencies in composer.json
  3. 🔄 Run Composer update
  4. 🗑️ Clear cache
  5. ⚙️ Update configuration if needed
  6. Run tests
# Update dependencies
composer update damienharper/auditor damienharper/auditor-bundle

# Clear cache
bin/console cache:clear

# Run tests
bin/phpunit

🗄️ Schema Updates

After upgrading, check if audit tables need updates:

# Preview changes
bin/console audit:schema:update --dump-sql

# Apply changes
bin/console audit:schema:update --force