Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: WordPress/sqlite-database-integration
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.2.19
Choose a base ref
...
head repository: WordPress/sqlite-database-integration
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.2.20
Choose a head ref
  • 6 commits
  • 11 files changed
  • 3 contributors

Commits on Mar 23, 2026

  1. Skip plugin auto-activation if plugin file doesn't exist (#332)

    ## What
    
    I propose adding a `file_exists()` check before calling
    `is_plugin_inactive()` in the `admin_footer` action inside `db.copy`.
    
    ## Why
    
    If the SQLite plugin is inactive for some reason but the `db.php`
    drop-in file exists, the logic automatically activates the plugin. This
    works only when the SQLite plugin is installed into the `plugins/`
    directory and throws warnings if plugin is installed into the
    `mu-plugins/` directory.
    
    The new guard ensures that the plugin is installed in `plugins/` before
    running activation logic.
    
    ## Testing
    
    1. Install WordPress
    2. Install the SQLite plugin from the .org directory
    3. Activate the plugin - confirm `db.php` drop-in is created
    4. Deactivate the plugin by bypassing normal logic:
    ```
    wp option delete active_plugins
    ```
    6. Confirm `db.php` still exists
    7. Reload WP Admin
    8. Confirm the plugin is auto-activated
    wojtekn authored Mar 23, 2026
    Configuration menu
    Copy the full SHA
    9e02903 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2026

  1. Add constant for SQLite driver loader path (#333)

    ## Summary
    Define `WP_MYSQL_ON_SQLITE_PATH` constant in
    `wp-pdo-mysql-on-sqlite.php` so that dependent projects can reliably
    determine the path to the SQLite driver loader file.
    JanJakes authored Mar 24, 2026
    Configuration menu
    Copy the full SHA
    fd7c8c5 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2026

  1. Configuration menu
    Copy the full SHA
    21827ee View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    78537bb View commit details
    Browse the repository at this point in the history
  3. Migrate database file from a possible legacy path (#336)

    Migrate the database file from a possible legacy path on connection,
    including associated WAL, SHM, and journal files.
    adamziel authored Mar 25, 2026
    Configuration menu
    Copy the full SHA
    1e24d87 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5a1f25f View commit details
    Browse the repository at this point in the history
Loading