Skip to content

Releases: hasura/ndc-postgres

v1.1.1

22 Aug 10:18
fc6a7a7
Compare
Choose a tag to compare

The connector Docker image is:

ghcr.io/hasura/ndc-postgres:v1.1.1

Changelog

Added

  • Support filtering by a nested field collection.
    #573

Changed

  • Support setting ssl client certificate information and ssl root certificate independently.
    #578

v1.1.0

16 Aug 16:16
a57c0b5
Compare
Choose a tag to compare

The connector Docker image is:

ghcr.io/hasura/ndc-postgres:v1.1.0

Changelog

Added

  • Support setting ssl client certificate information via environment variables.
    #574

Fixed

  • Make array element types nullable in the schema.
    #571

v1.0.2

12 Aug 21:35
1378805
Compare
Choose a tag to compare

The connector Docker image is:

ghcr.io/hasura/ndc-postgres:v1.0.2

Changelog

Changed

  • Upgrade ndc-sdk-rs to v0.3.0, including the following changes:

Fixed

  • Make fields of composite types nullable in the schema.
    #565
  • Allow Native Operations that end with a semicolon when it's easy to remove them.
    #566
  • Fix nested field relationships.
    #564

v1.0.1

24 Jul 13:53
e2fd651
Compare
Choose a tag to compare

The connector Docker image is:

ghcr.io/hasura/ndc-postgres:v1.0.1

Changelog

Added

  • Support network_supeq and network_subeq by default.
    #541

Changed

Fixed

  • Generate the comparison operator _neq.
    #540

v1.0.0

17 Jul 14:14
4af168d
Compare
Choose a tag to compare

The connector Docker image is:

ghcr.io/hasura/ndc-postgres:v1.0.0

Changelog

Added

  • Introduce configuration version "v5".
    #522

Changed

  • Support ndc-sdk-rs v0.2.1, including changes to error messages.
    #520
  • Warn when starting the connector with an older configuration version.
    #537

Fixed

v0.8.0

04 Jul 12:04
4513112
Compare
Choose a tag to compare

The connector Docker image is:

ghcr.io/hasura/ndc-postgres:v0.8.0

Changelog

Added

  • Add configuration version metrics.
    (#504)
  • Introduce mutationsVersion 'v2' which auto-generates update, delete, and insert point mutations.
    (#513)
  • Implement native query builder in the CLI plugin.
    (#511)

Changed

Fixed

v0.7.1

20 Jun 13:12
v0.7.1
53565d6
Compare
Choose a tag to compare

The connector Docker image is:

ghcr.io/hasura/ndc-postgres:v0.7.1

Changelog

Added

  • A default value for CONNECTION_URI for 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

23 May 13:42
v0.7.0
0c6fbad
Compare
Choose a tag to compare

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

16 Apr 11:41
582c771
Compare
Choose a tag to compare

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)
  • int8 and numeric columns will now emit a string json representation by default.
    (#416)
  • Enforce read-onlyness without transactions.
    (#421)

Fixed

  • Fix schema conflict result_type for native query mutations.
    (#405)
  • The CLI plugin no longer requires the Visual C++ Redistributable on Windows.
    (#417)
  • Include additional schemas for types by default.
    (#420)
  • Remove the 'Caused by' section in the error message of the cli.
    (#424)

v0.5.2

29 Mar 14:50
805bc53
Compare
Choose a tag to compare

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