Skip to content

Commit bfc5959

Browse files
committed
[ksqlDb.RestApi.Client]: removed usupported .NET 7.0 target framework
1 parent e98391b commit bfc5959

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

ksqlDb.RestApi.Client.ProtoBuf/ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
- added .NET 9.0 target framework
55

66
# ⚠️ Breaking changes
7-
- removed unsupported .NET 6.0 target framework
7+
- removed unsupported .NET 6.0, and 7.0 target frameworks
88
- upgraded `ksqlDb.RestApi.Client` to v7.0.0
99

1010
# 4.0.0

ksqlDb.RestApi.Client.ProtoBuf/ksqlDb.RestApi.Client.ProtoBuf.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>net9.0</TargetFrameworks>
5-
<!-- <TargetFrameworks>net7.0;net8.0;net9.0</TargetFrameworks> -->
5+
<!-- <TargetFrameworks>net8.0;net9.0</TargetFrameworks> -->
66
<Authors>Tomas Fabian</Authors>
77
<Company />
88
<PackageProjectUrl>https://github.com/tomasfabian/ksqlDB.RestApi.Client-DotNet/tree/main/ksqlDb.RestApi.Client.ProtoBuf</PackageProjectUrl>
99
<RepositoryUrl>https://github.com/tomasfabian/ksqlDB.RestApi.Client-DotNet</RepositoryUrl>
1010
<Copyright>@tomasfabian</Copyright>
1111
<Description>
1212
ksqlDB.RestApi.Client.ProtoBuf adds support for Protobuf content type. ksqlDB.RestApi.Client is a C# LINQ-enabled client API for issuing and consuming ksqlDB push queries.
13-
Targets .NET 7, .NET 8, and .NET 9.
13+
Targets .NET 8, and .NET 9.
1414
Documentation for the library can be found at https://github.com/tomasfabian/ksqlDB.RestApi.Client-DotNet/blob/main/README.md.
1515
</Description>
1616
<PackageTags>ksql ksqlDB ProtoBuf LINQ .NET csharp push query</PackageTags>

ksqlDb.RestApi.Client/ChangeLog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
- added .NET 9.0 target framework
55

66
# ⚠️ Breaking changes
7-
- removed usupported .NET 6.0 target framework
7+
- removed usupported .NET 6.0, and 7.0 target frameworks
88
- upgraded Microsoft packages to v9.0.0: `Microsoft.Extensions.DependencyInjection`, `Microsoft.Extensions.Http`, and `Microsoft.Extensions.Logging.Abstractions`
9+
- upgraded `System.Text.Json` to v9.0.0
910

1011
# 6.5.0
1112
- added the `AsPseudoColumn` function to the Fluent API for mapping of C# fields or properties as `ksqldb` [pseudocolumns](https://docs.ksqldb.io/en/latest/reference/sql/data-definition/#pseudocolumns).

ksqlDb.RestApi.Client/ksqlDb.RestApi.Client.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net7.0;net8.0;net9.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net8.0;net9.0</TargetFrameworks>
55
<Authors>Tomas Fabian</Authors>
66
<Company />
77
<PackageProjectUrl>https://github.com/tomasfabian/ksqlDB.RestApi.Client-DotNet/tree/main/ksqlDb.RestApi.Client</PackageProjectUrl>
@@ -11,7 +11,7 @@
1111
ksqlDB.RestApi.Client is a C# LINQ-enabled client API for issuing and consuming ksqlDB push queries.
1212
You can continually process computations over unbounded streams of data.
1313
It also enables the execution of SQL statements via the Rest API such as inserting records into streams and creating tables, types, etc. or executing admin operations such as listing streams.
14-
Targets .NET 7, .NET 8, .NET 9, and .NET Standard 2.0.
14+
Targets .NET 8, .NET 9, and .NET Standard 2.0.
1515
Documentation for the library can be found at https://github.com/tomasfabian/ksqlDB.RestApi.Client-DotNet/blob/main/README.md.
1616
</Description>
1717
<PackageTags>ksql ksqlDB LINQ .NET csharp push query</PackageTags>
@@ -32,7 +32,7 @@
3232
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" />
3333
<PackageReference Include="System.Interactive.Async" Version="6.0.1" />
3434
<PackageReference Include="System.Reactive" Version="6.0.0" />
35-
<PackageReference Include="System.Text.Json" Version="8.0.5" />
35+
<PackageReference Include="System.Text.Json" Version="9.0.0" />
3636
<PackageReference Include="Pluralize.NET" Version="1.0.2" />
3737
</ItemGroup>
3838

0 commit comments

Comments
 (0)