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

Releases: nhost/cli

v0.7.10

07 Sep 11:47
38f0dd7

Choose a tag to compare

Changes

🐛 Bug Fixes

  • fix: prevent changing name to lowercase @linden (#329)
  • Pull objects on remote init from all schemas except "auth", "storage", "pg_*", "hdb_*" @elephant3 (#324)
  • ensuring S3 bucket creation only if minio is running @elephant3 (#335)
  • don't generate docker-compose.yaml file in logs subcommand @elephant3 (#335)

Other changes

bump nhost/functions to 0.1.3 @elephant3 (#335)

v0.7.9

29 Aug 15:00
a6fedb3

Choose a tag to compare

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)

v0.7.8

24 Aug 12:25
864c651

Choose a tag to compare

Changes

v0.7.7

24 Aug 10:36
4b949ec

Choose a tag to compare

🐛 Bug Fixes

  • Fixed seeds apply @elephant3 (#300)
  • Fix envs override and warn about outdated docker engine @elephant3 (#304)
  • Fixed potential postgres data corruption on branch change (#300 )

v0.7.6

22 Aug 14:42
55414a6

Choose a tag to compare

Changes

v0.7.5

22 Aug 09:19
5050ac1

Choose a tag to compare

Changes

  • Added --start-timeout flag with default value of 5 minutes @elephant3 (#294)

v0.7.4

22 Aug 08:25
3e8f5a7

Choose a tag to compare

Changes

🚀 Features

  • feat: allow user to specify the path to look for/download hasura binary @dbarrosop (#286)

🐛 Bug Fixes

v0.7.3

19 Aug 13:44
b064de5

Choose a tag to compare

Changes

v0.7.2

19 Aug 12:56
eaa36c0

Choose a tag to compare

Changes

🐛 Bug Fixes

  • Fix permission issue that may occur for .nhost/project_name file @elephant3 (#285)

v0.7.1

19 Aug 10:36

Choose a tag to compare

Changes

  • All services are now running inside Docker containers. Docker Compose manages all Docker containers.
  • The custom reverse proxy has been replaced with Traefik.
  • The CLI automatically manages the Hasura CLI version.

Minor Changes

  • A lot of fixes and performance improvements.
  • Greatly improved performance and experience for functions calls

Changes in the nhost/config.yaml Config File

  • services.$service_name.version field isn't used anymore. Instead, if you want to use a custom version, use the image field, which should contain the image and tag. E.g. image: hasura/graphql-engine:1.0.0.
  • To use Mailhog to test email locally, you need to update auth.smtp.smtp.host from nhost_mailhog to mailhog.

Other Notes

  • The Hasura Console isn't available on http://localhost:1337 as before due to unresolved issues on Windows WSL2. Instead, the Hasura Console runs at http://localhost:9695.