Skip to content

Commit 1aa9055

Browse files
committed
Version bump to 0.16.0
1 parent add4411 commit 1aa9055

File tree

2 files changed

+27
-11
lines changed

2 files changed

+27
-11
lines changed

CHANGELOG.md

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,35 @@
11
# Changelog
22

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+
317
## 0.15.0 - 2024-01-08
418

519
- 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)!
822
- 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()
1025
methods by merging [#86](https://github.com/supabase-community/postgrest-csharp/pull/86).
1126
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.
1733

1834
## 0.14.0 - 2023-12-15
1935

Supabase/Supabase.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
<Summary>A C# implementation of the Supabase client</Summary>
1919
<Title>Supabase</Title>
2020
<PackageTags>supabase</PackageTags>
21-
<ReleaseVersion>0.15.0</ReleaseVersion>
22-
<PackageVersion>0.15.0</PackageVersion>
21+
<ReleaseVersion>0.16.0</ReleaseVersion>
22+
<PackageVersion>0.16.0</PackageVersion>
2323
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2424
<PackageIcon>icon.png</PackageIcon>
2525
<PackageReadmeFile>README.md</PackageReadmeFile>
@@ -29,7 +29,7 @@
2929
<GenerateDocumentationFile>true</GenerateDocumentationFile>
3030
</PropertyGroup>
3131
<PropertyGroup Condition=" '$(Version)' == '' ">
32-
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">0.15.0</VersionPrefix>
32+
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">0.16.0</VersionPrefix>
3333
<Version Condition=" '$(Version)' == '' ">$(VersionPrefix)</Version>
3434
</PropertyGroup>
3535
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">

0 commit comments

Comments
 (0)