Skip to content
Merged
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
29 changes: 28 additions & 1 deletion docs/history.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
# Version history (from 2.0)

## 2.8.0 (2024-05-08)
# 2.9.0 (2026-07-04)

- Add explicit .NET 10 target to all packages
- Remove .NET Standard 2.1 target from all packages
- Release CloudNative.CloudEvents.Kafka as 3.9.0, bumping the major
version to reflect adopting a new major Confluence.Kafka version.
- Changed CloudEvents.Amqp dependency from AMQPNetLite and
AMQPNetLite.Serialization to just AMQPNetLite.Core
- Performance improvements in both JSON packages
- Dependency updates:
- AMQPNetLite.Core: Effectively 2.4.11 => 2.5.3
- Apache.Avro: 1.11.3 => 1.12.1
- Confluent.Kafka: 1.93 => 2.14.2
- Google.Protobuf: 3.27.3 => 3.35.1
- MQTTnet: 4.3.6.1152 => 4.3.7.1207
- Newtonsoft.Json: 13.0.3 => 13.0.4
- Dependencies only for .NET Standard 2.0:
- Microsoft.AspNetCore.Http: 2.1.34 => 2.3.11
- System.Memory: 4.5.5 => 4.6.3
- System.Text.Encodings.Web: 8.0.0 => 10.0.9
- System.Text.Json: 8.0.4 => 10.0.9

Note on the removal of .NET Standard 2.1: we don't expect this to break users,
although it may mean additional dependencies due to falling back to .NET Standard 2.0.
Please file an issue if this causes problems for you, and we'll consider reinstating
the target.

## 2.8.0 (2024-08-07)

- Add explicit .NET 8 target to all packages.
- Removed dependencies that are already included in the framework, for suitable targets.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
<TargetFrameworks>netstandard2.0;net8.0;net10.0</TargetFrameworks>
<Description>Kafka extensions for CloudNative.CloudEvents</Description>
<PackageTags>cncf;cloudnative;cloudevents;events;kafka</PackageTags>
<Version>3.$(MinorVersion).$(PatchVersion)</Version>
<!-- Fix this after the first 3.x release -->
<PackageValidationBaselineVersion>2.$(PackageValidationMinor).0</PackageValidationBaselineVersion>
<Nullable>enable</Nullable>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- See RELEASING.md for details.
-->
<MajorVersion>2</MajorVersion>
<MinorVersion>8</MinorVersion>
<MinorVersion>9</MinorVersion>
<PatchVersion>0</PatchVersion>
<PackageValidationMinor>8</PackageValidationMinor>
<Version>$(MajorVersion).$(MinorVersion).$(PatchVersion)</Version>
Expand Down