|
1 | 1 | # Changelog |
2 | 2 |
|
| 3 | +## 0.16.0 - 2024-03-12 |
| 4 | + |
| 5 | +- Update dependency: `postgrest-csharp@3.5.0` |
| 6 | + - Re: [#78](https://github.com/supabase-community/postgrest-csharp/issues/78), Generalize query filtering creation |
| 7 | + in `Table` so that it matches new generic signatures. |
| 8 | + - Move from `QueryFilter` parameters to a more generic `IPosgrestQueryFilter` to support constructing new |
| 9 | + QueryFilters from a LINQ expression. |
| 10 | + - Note: Lists of `QueryFilter`s will now need to be defined |
| 11 | + as: `new List<IPostgrestQueryFilter> { new QueryFilter(), ... }` |
| 12 | + - Adjust serialization of timestamps within a `QueryFilter` to support `DateTime` and `DateTimeOffset` using the |
| 13 | + ISO-8601 (https://stackoverflow.com/a/115002) |
| 14 | +- Update dependency: `functions-csharp@1.3.2` |
| 15 | + - Re: [#5](https://github.com/supabase-community/functions-csharp/issues/5) Add support for specifying Http Timeout on a function call by adding `HttpTimeout` to `InvokeFunctionOptions` |
| 16 | + |
3 | 17 | ## 0.15.0 - 2024-01-08 |
4 | 18 |
|
5 | 19 | - Update Dependency: `gotrue-csharp@4.2.6` |
6 | | - - [#83](https://github.com/supabase-community/gotrue-csharp/pull/83) Replaces JWTDecoder package with |
7 | | - System.IdentityModel.Tokens.Jwt. Thanks [@FantasyTeddy](https://github.com/FantasyTeddy)! |
| 20 | + - [#83](https://github.com/supabase-community/gotrue-csharp/pull/83) Replaces JWTDecoder package with |
| 21 | + System.IdentityModel.Tokens.Jwt. Thanks [@FantasyTeddy](https://github.com/FantasyTeddy)! |
8 | 22 | - Update Dependency: `postgrest-csharp@3.4.1` |
9 | | - - Re: [#85](https://github.com/supabase-community/postgrest-csharp/issues/85) Fixes problem when using multiple .Order() |
| 23 | + - Re: [#85](https://github.com/supabase-community/postgrest-csharp/issues/85) Fixes problem when using multiple |
| 24 | + .Order() |
10 | 25 | methods by merging [#86](https://github.com/supabase-community/postgrest-csharp/pull/86). |
11 | 26 | Thanks [@hunsra](https://github.com/hunsra)! |
12 | | - - Re: [#81](https://github.com/supabase-community/postgrest-csharp/issues/81) |
13 | | - - [Minor] Removes `IgnoreOnInsert`and `IgnoreOnUpdate` from `ReferenceAttribute` as changing these properties |
14 | | - to `false` does not currently provide the expected functionality. |
15 | | - - Fixes `Insert` and `Update` not working on models that have `Reference` specified on a property with a non-null |
16 | | - value. |
| 27 | + - Re: [#81](https://github.com/supabase-community/postgrest-csharp/issues/81) |
| 28 | + - [Minor] Removes `IgnoreOnInsert`and `IgnoreOnUpdate` from `ReferenceAttribute` as changing these properties |
| 29 | + to `false` does not currently provide the expected functionality. |
| 30 | + - Fixes `Insert` and `Update` not working on models that have `Reference` specified on a property with a |
| 31 | + non-null |
| 32 | + value. |
17 | 33 |
|
18 | 34 | ## 0.14.0 - 2023-12-15 |
19 | 35 |
|
|
0 commit comments