New branch build#16
Conversation
|
The latest updates on your projects. Learn more about Boreal.
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: b241563281
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| workflows = true | ||
| data_model_v2 = true | ||
| ddl_plan = true | ||
| migrate_with_deltas = true |
There was a problem hiding this comment.
Restore the supported
ddl_plan feature flag
This change replaces ddl_plan with migrate_with_deltas under [features], but Moose feature configuration documents ddl_plan (and not migrate_with_deltas) as the migration/DDL gating flag. As a result, the previous behavior is no longer guaranteed: the setting can be ignored (falling back to defaults) or rejected by strict parsing, which changes migration safety semantics in production compared with the prior config.
Useful? React with 👍 / 👎.
| # yaml-language-server: $schema=../.moose/migration_schema.json | ||
|
|
||
| created_at: 2026-04-08T00:03:51.911046Z | ||
| operations: [] |
There was a problem hiding this comment.
Retain committed migration plan/state snapshots
Removing migrations/plan.yaml (with the matching state snapshots deleted in this commit) breaks the planned-migration workflow used by moose migrate, which applies operations from plan.yaml and performs drift checks against saved state files. Deleting these tracked artifacts removes deterministic migration input and drift protection, so CI/CD migration steps can fail or lose the reviewed-plan guarantees.
Useful? React with 👍 / 👎.
No description provided.