The connector Docker image is:
ghcr.io/hasura/ndc-postgres:v0.4.0
Changelog
Added
- There is now a CLI plugin for the Hasura v3 CLI, which allows the CLI to
automatically introspect the database on demand.
(#307 and
#312) - Support for explaining mutations via the
/mutation/explain
endpoint.
(#283) - Support filtering using
in
by columns and variables.
(#283)
Changed
- We have upgraded to ndc-spec v0.1.0, which demands a few changes:
- Version 1 and 2 of the configuration and NDC metadata have been deprecated
and removed. - Configuration is now a file,
configuration.json
, in the specified
configuration directory. It is now version 3, but little has changed from
version 2. This brings ndc-postgres in line with the connector specification.
(#305) - When configuration is initialized, it is expected that the connection URI will
now be specified using an environment variable, instead of written directly.
This can be overridden.
(#325) - The default port was changed from 8100 to 8080. This is configurable with
theHASURA_CONNECTOR_PORT
environment variable. - Types and procedures are only supported in unqualified schemas, specified in
unqualifiedSchemasForTypesAndProcedures
.
(#271) - The configuration server has been removed in favor of a cli interface.
(#307 and
#312)
Fixed
- Fix queries including an IN operator on an empty list.
(#309)