|
| 1 | +## [1.1.0] |
| 2 | + |
| 3 | +- fix: stream filter other than eq is not properly applied. [(#156)](https://github.com/supabase-community/supabase-dart/pull/156) |
| 4 | +- fix: update examples [(#157)](https://github.com/supabase-community/supabase-dart/pull/157) |
| 5 | +- feat: update gotrue to v1.1.1 |
| 6 | + - fail to getSessionFromUrl throws error on `onAuthStateChange` |
| 7 | + ```dart |
| 8 | + supabase.onAuthStateChange.listen((data) { |
| 9 | + // handle auth state change here |
| 10 | + }, onError: (error) { |
| 11 | + // handle error here |
| 12 | + }); |
| 13 | + ``` |
| 14 | +- feat: update postgrest to v1.1.0 |
| 15 | + - feat: add generic types to `.select()` |
| 16 | + ```dart |
| 17 | + // data is `List<Map<String, dynamic>>` |
| 18 | + final data = await supabase.from<List<Map<String, dynamic>>>('users').select(); |
| 19 | +
|
| 20 | + // data is `Map<String, dynamic>` |
| 21 | + final data = await supabase.from<Map<String, dynamic>>('users').select().eq('id', myId).single(); |
| 22 | + ``` |
| 23 | +
|
| 24 | +
|
1 | 25 | ## [1.0.1] |
2 | 26 |
|
3 | 27 | - fix: update sample code on readme.md |
| 28 | +
|
4 | 29 | ## [1.0.0] |
5 | 30 |
|
6 | 31 | - chore: v1.0.0 release 🚀 |
7 | | -- BREAKING: set minimum SDK of Dart at 2.15.0 ([150](https://github.com/supabase-community/supabase-dart/pull/150)) |
| 32 | +- BREAKING: set minimum SDK of Dart at 2.15.0 [(#150)](https://github.com/supabase-community/supabase-dart/pull/150) |
8 | 33 | - BREAKING: `.stream()` now takes a named parameter `primaryKey` instead of a positional argument. |
9 | 34 | ```dart |
10 | 35 | supabase.from('my_table').stream(primaryKey: ['id']); |
11 | 36 | ``` |
12 | | -- feat: `.stream()` has 5 additional filters: `neq`, `gt`, `gte`, `lt`, `lte` ([148](https://github.com/supabase-community/supabase-dart/pull/148) |
| 37 | +- feat: `.stream()` has 5 additional filters: `neq`, `gt`, `gte`, `lt`, `lte` [(#148)](https://github.com/supabase-community/supabase-dart/pull/148) |
13 | 38 | - chore: update postgrest to v1.0.0 |
14 | 39 | - chore: update realtime to v1.0.0 |
15 | 40 | - chore: update storage to v1.0.0 |
|
0 commit comments