This repository was archived by the owner on Sep 26, 2025. It is now read-only.
Releases: nhost/cli
Releases · nhost/cli
v0.7.10
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
Changes
🐛 Bug Fixes
- fix: permission issue with seeds.applied file @elephant3 (#314)
- Bump hasura-storage and fix presigned url issue @elephant3 (#318)
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]/dbmv .nhost/data/db/[branch] .nhost/data/[branch]/db/pgdata(prepend with sudo in case of permission issue)
v0.7.8
Changes
- Bump nhost/functions to 0.1.2 @elephant3 (#306)
v0.7.7
🐛 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
Changes
- Named volumes for node_modules @elephant3 (#296)
- Bump functions docker image to 0.1.1 @elephant3 (#295)
v0.7.5
Changes
- Added --start-timeout flag with default value of 5 minutes @elephant3 (#294)
v0.7.4
Changes
🚀 Features
- feat: allow user to specify the path to look for/download hasura binary @dbarrosop (#286)
🐛 Bug Fixes
- Lowercase the project name @elephant3 (#293)
v0.7.3
Changes
- Bump nhost/functions to 0.0.4 @elephant3 (#287)
v0.7.2
Changes
🐛 Bug Fixes
- Fix permission issue that may occur for .nhost/project_name file @elephant3 (#285)
v0.7.1
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.versionfield isn't used anymore. Instead, if you want to use a custom version, use theimagefield, 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.hostfromnhost_mailhogtomailhog.
Other Notes
- The Hasura Console isn't available on
http://localhost:1337as before due to unresolved issues on Windows WSL2. Instead, the Hasura Console runs athttp://localhost:9695.