diff --git a/CHANGELOG.md b/CHANGELOG.md index cd09926d..cd97b7e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,22 @@ Collect fragments into this file with: scriv collect --version X.Y.Z + + +## 0.15.0 (2025-01-15) + +### Backwards-incompatible changes + +- Migrate the database to use `TEXT` column types where previously we used `VARCHAR` columns with a (now unnecessary) length limit. **This change requires a database migration on deployment**. In Postgres there is no functional or performance difference between `VARCHAR` and `TEXT` columns. This change simplifies the database schema and reduce the risk of future issues with column length limits. + +### Bug fixes + +- In the `cli` tox environment, fix the name of the executable to be `times-square` rather than `timessquare`. + +### Other changes + +- Improved the developer documentation for database migration to concretely provide copy-and-paste-able commands for preparing and running database migrations. + ## 0.14.0 (2025-01-13) diff --git a/changelog.d/20250114_114726_jsick_DM_48413.md b/changelog.d/20250114_114726_jsick_DM_48413.md deleted file mode 100644 index 5de19d4b..00000000 --- a/changelog.d/20250114_114726_jsick_DM_48413.md +++ /dev/null @@ -1,17 +0,0 @@ - - -### Backwards-incompatible changes - -- Migrate the database to use `TEXT` column types where previously we used `VARCHAR` columns with a (now unnecessary) length limit. **This change requires a database migration on deployment**. In Postgres there is no functional or performance difference between `VARCHAR` and `TEXT` columns. This change simplifies the database schema and reduce the risk of future issues with column length limits. - -### New features - -- - -### Bug fixes - -- In the `cli` tox environment, fix the name of the executable to be `times-square` rather than `timessquare`. - -### Other changes - -- Improved the developer documentation for database migration to concretely provide copy-and-paste-able commands for preparing and running database migrations.