From cf712aa5acf34a334d31f0ab088dc60b741673b5 Mon Sep 17 00:00:00 2001 From: Bill Guowei Yang Date: Wed, 8 Jul 2026 19:10:01 -0400 Subject: [PATCH] Remove temporary configstore out-of-order migration bridge --- controlplane/configstore/migrations.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/controlplane/configstore/migrations.go b/controlplane/configstore/migrations.go index 9bcfa5c8..8a58490c 100644 --- a/controlplane/configstore/migrations.go +++ b/controlplane/configstore/migrations.go @@ -38,10 +38,6 @@ func runConfigStoreMigrations(db *gorm.DB) error { migrationFS, goose.WithSessionLocker(locker), goose.WithSlog(slog.Default()), - // Compatibility bridge for the 000018/000019 ordering bug shipped on - // 2026-07-08. Remove this once every environment has recorded 000018 so - // future out-of-order configstore migrations fail at startup again. - goose.WithAllowOutofOrder(true), ) if err != nil { return fmt.Errorf("configstore migration provider: %w", err)