Skip to content

Releases: technowledgy/vue-postgrest

v1.8.0

17 Jun 13:11
8e5eea4
Compare
Choose a tag to compare

Expose resetSchemaCache function.

v1.7.1

14 Jun 09:51
0ec715d
Compare
Choose a tag to compare

Avoid initial request in mixin when pgConfig is unset initially.

v1.7.0

14 May 13:21
91457d9
Compare
Choose a tag to compare

Allow nested filters on top-level

v1.6.1

27 Feb 13:04
6ca7afc
Compare
Choose a tag to compare

Fixed default headers for Prefer being overridden by other preferences.

v1.6.0

27 Feb 13:03
0cd18a6
Compare
Choose a tag to compare

Added the headers option to the Plugin to set default headers.

v1.5.1

22 Feb 11:20
0bb4346
Compare
Choose a tag to compare

Fix package.json's exports.

v1.5.0

21 Mar 11:06
6144515
Compare
Choose a tag to compare

This adds a reset of .hasReturned to false when calling ObservableFunction.clear().

v1.4.3

03 Mar 23:58
c1f9e6d
Compare
Choose a tag to compare

Fixed another regression regarding quoted values, this time values in arrays. While PostgREST doesn't parse any quotes there, PostgreSQL itelf does, so we need to quote.

v1.4.2

22 Feb 11:07
3a4a8b9
Compare
Choose a tag to compare

Fix a regression in 1.4.1 where values inside logical operator were not quoted anymore in the query string.

v1.4.1

17 Feb 12:07
c3e0090
Compare
Choose a tag to compare

Two bug fixes:

  • Passing arrays as arguments in the query string to RPC functions now works correctly. Thanks @DutchGerman.
  • String values are now quoted "properly", i.e. only when PostgREST actually supports it: That's only the case when using the in. operator and nowhere else.