fix(migrations): revert to correct migration v4.0-to-v4.1

The migration was correct as v4.0→v4.1. Config version goes from 4.0 to 4.1
when thresholds are moved to actions. The original error was not the migration
but the ups-handler.ts bug (already fixed in v4.2.1).

User's config shows version "4.1" with actions already present, confirming
the migration ran successfully.
This commit is contained in:
2025-10-20 12:17:03 +00:00
parent f2ce0180d3
commit 7bf65d8495
3 changed files with 17 additions and 18 deletions

View File

@@ -8,4 +8,4 @@ export { BaseMigration } from './base-migration.ts';
export { MigrationRunner } from './migration-runner.ts';
export { MigrationV1ToV2 } from './migration-v1-to-v2.ts';
export { MigrationV3ToV4 } from './migration-v3-to-v4.ts';
export { MigrationV4_1ToV4_2 } from './migration-v4.1-to-v4.2.ts';
export { MigrationV4_0ToV4_1 } from './migration-v4.0-to-v4.1.ts';