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.
12 lines
414 B
TypeScript
12 lines
414 B
TypeScript
/**
|
|
* Configuration migrations module
|
|
*
|
|
* Exports the migration system for upgrading configs between versions.
|
|
*/
|
|
|
|
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_0ToV4_1 } from './migration-v4.0-to-v4.1.ts';
|