0.15.0
Backwards-incompatible changes
- Migrate the database to use
TEXT
column types where previously we usedVARCHAR
columns with a (now unnecessary) length limit. This change requires a database migration on deployment. In Postgres there is no functional or performance difference betweenVARCHAR
andTEXT
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 betimes-square
rather thantimessquare
.
Other changes
- Improved the developer documentation for database migration to concretely provide copy-and-paste-able commands for preparing and running database migrations.
What's Changed
- DM-48413: Adopt TEXT column types where useful by @jonathansick in #89
Full Changelog: 0.14.0...0.15.0