Skip to content

Commit d9d0d7b

Browse files
committed
Release 2.9.0 (and 3.9.0 for Kafka/MQTT)
Signed-off-by: Jon Skeet <skeet@pobox.com>
1 parent 4e040cd commit d9d0d7b

3 files changed

Lines changed: 32 additions & 2 deletions

File tree

docs/history.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
11
# Version history (from 2.0)
22

3-
## 2.8.0 (2024-05-08)
3+
# 2.9.0 (2026-07-04)
4+
5+
- Add explicit .NET 10 target to all packages
6+
- Remove .NET Standard 2.1 target from all packages
7+
- Release CloudNative.CloudEvents.Kafka as 3.9.0, bumping the major
8+
version to reflect adopting a new major Confluence.Kafka version.
9+
- Changed CloudEvents.Amqp dependency from AMQPNetLite and
10+
AMQPNetLite.Serialization to just AMQPNetLite.Core
11+
- Performance improvements in both JSON packages
12+
- Dependency updates:
13+
- AMQPNetLite.Core: Effectively 2.4.11 => 2.5.3
14+
- Apache.Avro: 1.11.3 => 1.12.1
15+
- Confluent.Kafka: 1.93 => 2.14.2
16+
- Google.Protobuf: 3.27.3 => 3.35.1
17+
- MQTTnet: 4.3.6.1152 => 4.3.7.1207
18+
- Newtonsoft.Json: 13.0.3 => 13.0.4
19+
- Dependencies only for .NET Standard 2.0:
20+
- Microsoft.AspNetCore.Http: 2.1.34 => 2.3.11
21+
- System.Memory: 4.5.5 => 4.6.3
22+
- System.Text.Encodings.Web: 8.0.0 => 10.0.9
23+
- System.Text.Json: 8.0.4 => 10.0.9
24+
25+
Note on the removal of .NET Standard 2.1: we don't expect this to break users,
26+
although it may mean additional dependencies due to falling back to .NET Standard 2.0.
27+
Please file an issue if this causes problems for you, and we'll consider reinstating
28+
the target.
29+
30+
## 2.8.0 (2024-08-07)
431

532
- Add explicit .NET 8 target to all packages.
633
- Removed dependencies that are already included in the framework, for suitable targets.

src/CloudNative.CloudEvents.Kafka/CloudNative.CloudEvents.Kafka.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
<TargetFrameworks>netstandard2.0;net8.0;net10.0</TargetFrameworks>
55
<Description>Kafka extensions for CloudNative.CloudEvents</Description>
66
<PackageTags>cncf;cloudnative;cloudevents;events;kafka</PackageTags>
7+
<Version>3.$(MinorVersion).$(PatchVersion)</Version>
8+
<!-- Fix this after the first 3.x release -->
9+
<PackageValidationBaselineVersion>2.$(PackageValidationMinor).0</PackageValidationBaselineVersion>
710
<Nullable>enable</Nullable>
811
</PropertyGroup>
912

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- See RELEASING.md for details.
77
-->
88
<MajorVersion>2</MajorVersion>
9-
<MinorVersion>8</MinorVersion>
9+
<MinorVersion>9</MinorVersion>
1010
<PatchVersion>0</PatchVersion>
1111
<PackageValidationMinor>8</PackageValidationMinor>
1212
<Version>$(MajorVersion).$(MinorVersion).$(PatchVersion)</Version>

0 commit comments

Comments
 (0)