• v1.6.8-hotfix b4c6d40c19

    FTMahringer released this 2026-05-09 15:00:16 +02:00 | 226 commits to main since this release

    V11 Migration Conflict Fix

    V11 tried to create plugin_stats which already exists in V1 initial schema.

    Error:

    • V1__initial_schema.sql already defines plugin_stats (downloads, stars, bundle_count for marketplace stats)
    • V11__add_plugin_stats.sql tried CREATE TABLE plugin_stats — duplicate → Flyway failure

    Fix:

    • Renamed PluginStats entity table to plugin_operational_stats
    • V11 now creates plugin_operational_stats (install_count, enable_count, disable_count, last_used_at)
    • V1 plugin_stats remains unchanged for marketplace/store stats

    Followup to v1.6.5-dev.

    Downloads