This repository was archived by the owner on Oct 9, 2025. It is now read-only.
Releases: supabase/postgrest-js
Releases · supabase/postgrest-js
v1.0.0-next.7
v1.0.0-next.6
v1.0.0-next.5
1.0.0-next.5 (2022-08-12)
Bug Fixes
- allow arbitrary string on
.from()(6d90bab)
Features
- obsolete PostgrestClient.auth() (d44856d)
v1.0.0-next.4
v1.0.0-next.3
v1.0.0-next.2
1.0.0-next.2 (2022-06-17)
Features
- omit
.nullsfirst/.nullslastby default (a1012e8)
BREAKING CHANGES
- omit
.nullsfirst/.nullslastby default
v1.0.0-next.1
1.0.0-next.1 (2022-06-13)
Bug Fixes
- wrong usage of FilterOperator (e8f16d9)
Features
- types: fallback columns to
string& values tounknown(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=minimalby 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.
csvs.contains) bodyin response (vs.data)upserting thru.insert()