Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

v0.7.9

Choose a tag to compare

@github-actions github-actions released this 29 Aug 15:00
· 433 commits to refs/heads/main since this release
a6fedb3

Changes

🐛 Bug Fixes

Notes

We changed the location where we store container's data to be scoped by [branch] instead of by [container]/service:

  • before: .nhost/data/[container]/[branch]
  • now: .nhost/data/[branch]/[container]

where [container] is one of db, minio, or mailhog and [branch] is your Git branch.

To avoid loosing your data after upgrade, move it to the new directory:

  • mkdir -p .nhost/data/[branch]/db
  • mv .nhost/data/db/[branch] .nhost/data/[branch]/db/pgdata (prepend with sudo in case of permission issue)