Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "7.3.1"
".": "7.4.0"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [7.4.0](https://github.com/supabase-community/realtime-csharp/compare/v7.3.1...v7.4.0) (2026-08-06)


### Features

* add OnPostgresChange for one-call postgres_changes listeners ([#75](https://github.com/supabase-community/realtime-csharp/issues/75)) ([8ace218](https://github.com/supabase-community/realtime-csharp/commit/8ace2180be6d9c2f4be177c5e8ceaedcb60a4b50))
* enable config to set channel to private ([#61](https://github.com/supabase-community/realtime-csharp/issues/61)) ([0ebc95a](https://github.com/supabase-community/realtime-csharp/commit/0ebc95a0bdd963ec2ff989b10f3ff6b11bf974c9))


### Bug Fixes

* guard Channel against double 'realtime:' prefix ([#76](https://github.com/supabase-community/realtime-csharp/issues/76)) ([bd21604](https://github.com/supabase-community/realtime-csharp/commit/bd21604d4d5ed26c14be40bee96f04f9fd12e5d4))

## [7.3.1](https://github.com/supabase-community/realtime-csharp/compare/v7.3.0...v7.3.1) (2026-07-21)


Expand Down
6 changes: 3 additions & 3 deletions Realtime/Realtime.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<Summary>Realtime-csharp is written as a client library for supabase/realtime.</Summary>
<PackageTags>supabase, realtime, phoenix</PackageTags>
<!-- x-release-please-start-version -->
<PackageVersion>7.3.1</PackageVersion>
<ReleaseVersion>7.3.1</ReleaseVersion>
<PackageVersion>7.4.0</PackageVersion>
<ReleaseVersion>7.4.0</ReleaseVersion>
<!-- x-release-please-end -->
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageIcon>icon.png</PackageIcon>
Expand All @@ -33,7 +33,7 @@
</PropertyGroup>

<PropertyGroup Condition=" '$(Version)' == '' ">
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">7.3.1</VersionPrefix> <!-- x-release-please-version -->
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">7.4.0</VersionPrefix> <!-- x-release-please-version -->
<VersionSuffix Condition=" '$(VersionSuffix)' == '' "></VersionSuffix>
<Version Condition=" '$(VersionSuffix)' != '' ">$(VersionPrefix)-$(VersionSuffix)</Version>
<Version Condition=" '$(Version)' == '' ">$(VersionPrefix)</Version>
Expand Down