github MDeLuise/plant-it 0.4.3
v0.4.3

latest releases: 0.8.0, 0.7.5, 0.7.4...
6 months ago

Caution

Some users may encounter an issue where the backend constantly reboots on update from older version. Upon investigation, it has been determined that this issue may arise due to recent changes in the database schema files.
To resolve this issue, please follow the steps below:

  1. Backup Database Files: It is recommended to create a backup of the db folder before proceeding. This will allow you to rollback the changes if necessary.
  2. Execute SQL Command: Run the following command from the shell to remove all entries from the DATABASECHANGELOG table:
docker exec <db_container_name> mysql -u<db_user> -p<db_password> -e "USE bootdb; DELETE FROM DATABASECHANGELOG;"

For example, if using the default backend.env file, the command would be:

docker exec plant-it-db-1 mysql -uroot -proot -e "USE bootdb; DELETE FROM DATABASECHANGELOG;"
  1. Redeploy Docker Compose: Once the SQL command has been executed, redeploy the Docker Compose stack as necessary.

Apologize for any inconvenience this issue may have caused. If you encounter any difficulties or require further assistance, please do not hesitate to open an issue.
Thank you for your understanding and cooperation.

🚀 New features and improvements

  • Add backend unit and integration tests
  • Simplifying species creation with image on backend

🐛 Bug fixes

  • Fix rendering of reminders
  • Fix reminders dispatching
  • Fix editing of plant's fields
  • Fix signup with OTP flow

📖 Full changelog

0.4.2...0.4.3

Don't miss a new plant-it release

NewReleases is sending notifications on new releases.