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

v1.0.0-next.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 07 Aug 15:49

1.0.0-next.1 (2022-06-13)

Bug Fixes

  • wrong usage of FilterOperator (e8f16d9)

Features

  • types: fallback columns to string & values to unknown (23d2af7)
  • types: replace Required/Optional/Readonly w/ Row/Insert/Update (e94c8cd)
  • improved typings (a6eb6a1)
  • obsolete deprecated features (784e05e)
  • Prefer: return=minimal by default (a6f4673)
  • use undefined as bottom value instead of null (628be73)

Performance Improvements

  • nullsFirst = true by default (2305330)

BREAKING CHANGES

  • improved typings
  • use undefined as bottom value instead of null
  • nullsFirst = true by default

We previously set nullsFirst = false by default, but it caused some
perf issues: #239

  • set Prefer: return=minimal by default everywhere

We previously set returning = 'representation' by default so that
inserted/updated/deleted rows are returned. We now change the default so that
inserted/updated/deleted rows are NOT returned.

To return inserted/updated/deleted rows, call .select() at the end of
the call chain.

  • obselete the following previously-deprecated features:
  • filter shorthands (e.g. cs vs. contains)
  • body in response (vs. data)
  • upserting thru .insert()