Releases: hasura/ndc-postgres
v1.0.1
v1.0.0
v0.8.0
v0.7.1
The connector Docker image is:
ghcr.io/hasura/ndc-postgres:v0.7.1
Changelog
Added
- 
A default value for CONNECTION_URIfor newly initialized connector configurations.
 (#503)
- 
Support ndc-spec v0.1.4. 
 (#499)
- 
Support ndc-spec v0.1.3 and filter/order by nested fields. 
 (#486)
Changed
- Aggregate functions (except COUNT) are now all marked as having nullable
 return types, as they will return null for empty row sets.
 (#498)
Fixed
- Rows and aggregates parts of the query should operate on the same query parameters (where, order by, limit and offset).
 (#471)
v0.7.0
The connector Docker image is:
ghcr.io/hasura/ndc-postgres:v0.7.0
Changelog
Added
- Support for qualifying scalar types by their schema. This updates the
 metadata configuration format version number from"3"to"4".
 (#471)
Changed
- When acquiring a connection, ping the db only if it has been idle.
 (#450)
Fixed
- Return at most a single instance of a root table row when filtering, empty rows of a column relationship should not necessarily filter a row.
 (#463)
v0.6.0
The connector Docker image is:
ghcr.io/hasura/ndc-postgres:v0.6.0
Changelog
Added
- Support nested field selection.
 (#404)
 (#409)
- Expose the type representation of base types and domain types.
 (#398)
- Expose the type representation of enums via the ndc schema.
 (#397)
Changed
- Support ndc-spec v0.1.2 and change the type representation of types accordingly.
 (#408)
- int8and- numericcolumns will now emit a string json representation by default.
 (#416)
- Enforce read-onlyness without transactions.
 (#421)
Fixed
v0.5.2
The connector Docker image is:
ghcr.io/hasura/ndc-postgres:v0.5.2
Changelog
Added
- Make operators of domain types available via implicit casts.
 (#392)
- Support introspection composite types.
 (#391)
- Support enum types in the configuration.
 (#387)
- Make aggregation functions available through implicit casts in the configuration.
 (#381)
- Support for introspecting domain types.
 (#380)
Changed
- Support ndc-spec 0.1.1.
 (#390)
Fixed
v0.5.1
v0.5.0
The connector Docker image is:
ghcr.io/hasura/ndc-postgres:v0.5.0
Changelog
Added
- The CLI plugin now integrates with the DDN CLI's watchfunctionality.
 (#360)
Changed
- 
The default connection pool settings will now be written to the configuration file 
 upon initialization
 (#351)
- 
The ndc-postgres-cli initializecommand will now generate
 the jsonschema of the configuration format as well.
 (#361)
- 
The ndc-postgres-cli updatecommand will check that the configuration file has
 not changed in the middle of the introspection process, will retry if it did,
 and will not write the introspection result to file if the configuration file is already up to date.
 (#362)
- 
A few fields in the configuration format has been changed: - configureOptionswas renamed to- introspectionOptions
- connectionUri,- poolSettingsand- isolationLevelare now nested under- connectionSettings
- mutationsVersionwas moved from- configureOptionsto the top-level
- A new field was added: $schemareferences the jsonschema of the configuration format
 (#361)