~jan0sch/smederee
Showing details for patch 9f56177b9744c6b7ac7aed38ec814f769cacb89a.
diff -rN -u old-smederee/build.sbt new-smederee/build.sbt --- old-smederee/build.sbt 2025-01-13 01:41:54.367852118 +0000 +++ new-smederee/build.sbt 2025-01-13 01:41:54.367852118 +0000 @@ -20,7 +20,7 @@ scalaVersion := "3.3.1", organization := "de.smederee", organizationName := "Contributors as noted in the AUTHORS.md file", - version := "0.11.0-SNAPSHOT", + version := "0.11.0", scalacOptions ++= Seq( "-deprecation", "-explain", diff -rN -u old-smederee/CHANGELOG.md new-smederee/CHANGELOG.md --- old-smederee/CHANGELOG.md 2025-01-13 01:41:54.363852109 +0000 +++ new-smederee/CHANGELOG.md 2025-01-13 01:41:54.367852118 +0000 @@ -20,6 +20,32 @@ - `Fixed` for any bug fixes. - `Security` to invite users to upgrade in case of vulnerabilities. +v0.11.0 (2024-02-02) +==================== + +This release contains BREAKING CHANGES in the database structure! + +To mitigate the effect create a backup of your database first. Then follow +these instructions: + +1. stop the service +2. dump the data of your database only (`pg_dump -a dbname > data.sql`) +3. !!! Remove the `flyway_schema_history` tables from the dump !!! +4. drop the database and create a new one with the same name +5. apply the update +6. start the service +7. stop the service after the migrations have been applied +8. restore the data (`cat data.sql | psql dbname`) + +Please note that you might need additional parameters for `pg_dump` and `psql` +depending on your database configuration like username, password or prepended +`sudo` command. + +Changed +------- + +- **BREAKING CHANGE** remove unnecessary quoting in sql + v0.10.0 (2024-02-01) ====================