Skip to content

Commit

Permalink
Version bump to 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
acupofjose committed Mar 12, 2024
1 parent add4411 commit 1aa9055
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 11 deletions.
32 changes: 24 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,35 @@
# Changelog

## 0.16.0 - 2024-03-12

- Update dependency: `[email protected]`
- Re: [#78](https://github.com/supabase-community/postgrest-csharp/issues/78), Generalize query filtering creation
in `Table` so that it matches new generic signatures.
- Move from `QueryFilter` parameters to a more generic `IPosgrestQueryFilter` to support constructing new
QueryFilters from a LINQ expression.
- Note: Lists of `QueryFilter`s will now need to be defined
as: `new List<IPostgrestQueryFilter> { new QueryFilter(), ... }`
- Adjust serialization of timestamps within a `QueryFilter` to support `DateTime` and `DateTimeOffset` using the
ISO-8601 (https://stackoverflow.com/a/115002)
- Update dependency: `[email protected]`
- 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`

## 0.15.0 - 2024-01-08

- Update Dependency: `[email protected]`
- [#83](https://github.com/supabase-community/gotrue-csharp/pull/83) Replaces JWTDecoder package with
System.IdentityModel.Tokens.Jwt. Thanks [@FantasyTeddy](https://github.com/FantasyTeddy)!
- [#83](https://github.com/supabase-community/gotrue-csharp/pull/83) Replaces JWTDecoder package with
System.IdentityModel.Tokens.Jwt. Thanks [@FantasyTeddy](https://github.com/FantasyTeddy)!
- Update Dependency: `[email protected]`
- Re: [#85](https://github.com/supabase-community/postgrest-csharp/issues/85) Fixes problem when using multiple .Order()
- Re: [#85](https://github.com/supabase-community/postgrest-csharp/issues/85) Fixes problem when using multiple
.Order()
methods by merging [#86](https://github.com/supabase-community/postgrest-csharp/pull/86).
Thanks [@hunsra](https://github.com/hunsra)!
- Re: [#81](https://github.com/supabase-community/postgrest-csharp/issues/81)
- [Minor] Removes `IgnoreOnInsert`and `IgnoreOnUpdate` from `ReferenceAttribute` as changing these properties
to `false` does not currently provide the expected functionality.
- Fixes `Insert` and `Update` not working on models that have `Reference` specified on a property with a non-null
value.
- Re: [#81](https://github.com/supabase-community/postgrest-csharp/issues/81)
- [Minor] Removes `IgnoreOnInsert`and `IgnoreOnUpdate` from `ReferenceAttribute` as changing these properties
to `false` does not currently provide the expected functionality.
- Fixes `Insert` and `Update` not working on models that have `Reference` specified on a property with a
non-null
value.

## 0.14.0 - 2023-12-15

Expand Down
6 changes: 3 additions & 3 deletions Supabase/Supabase.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
<Summary>A C# implementation of the Supabase client</Summary>
<Title>Supabase</Title>
<PackageTags>supabase</PackageTags>
<ReleaseVersion>0.15.0</ReleaseVersion>
<PackageVersion>0.15.0</PackageVersion>
<ReleaseVersion>0.16.0</ReleaseVersion>
<PackageVersion>0.16.0</PackageVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand All @@ -29,7 +29,7 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Version)' == '' ">
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">0.15.0</VersionPrefix>
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">0.16.0</VersionPrefix>
<Version Condition=" '$(Version)' == '' ">$(VersionPrefix)</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
Expand Down

0 comments on commit 1aa9055

Please sign in to comment.