Skip to content

Commit

Permalink
Merge branch 'master' into improve_session_message_injection
Browse files Browse the repository at this point in the history
  • Loading branch information
chkr1011 authored Jan 2, 2025
2 parents 78966d7 + e7de2b9 commit 735f6da
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on: [push, pull_request]

env:
VERSION: "5.0.0.${{github.run_number}}"
VERSION: "5.0.1.${{github.run_number}}"
PACKAGE_SUFFIX: ""

jobs:
Expand Down
2 changes: 1 addition & 1 deletion Source/MQTTnet/MQTTnet.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<Target Name="ImportReleaseNotes" BeforeTargets="GenerateNuspec">
<ReadLinesFromFile File="..\workflows\ReleaseNotes.md">
<ReadLinesFromFile File="../ReleaseNotes.md">
<Output TaskParameter="Lines" ItemName="ReleaseNotes"/>
</ReadLinesFromFile>
<PropertyGroup>
Expand Down
19 changes: 19 additions & 0 deletions Source/ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
**! Read the migration guide (https://github.com/dotnet/MQTTnet/wiki/Upgrading-guide) before migrating to version 5!**

## Changes
* Memory usage optimizations (thanks to @mregen)
* Performance optimizations (thanks to @mregen)
* Removal of no longer supported .NET Frameworks **(BREAKING CHANGE)**
* Changed code signing and nuget certificate
* Namespace changes **(BREAKING CHANGE)**
* Removal of Managed Client **(BREAKING CHANGE)**
* Fixed missing release notes in nuget packages.


* Client: MQTT 5.0.0 is now the default version when connecting with a server **(BREAKING CHANGE)**
* Client: Fixed enhanced authentication.
* Client: Exposed WebSocket compression options in MQTT client options (thanks to @victornor, #2127)
* Server: Set default for "MaxPendingMessagesPerClient" to 1000 **(BREAKING CHANGE)**
* Server: Set SSL version to "None" which will let the OS choose the version **(BREAKING CHANGE)**
* Server: Fixed enhanced authentication.
* Server: Set default for "MaxPendingMessagesPerClient" to 1000 **(BREAKING CHANGE)**
* Server: Set SSL version to "None" which will let the OS choose the version **(BREAKING CHANGE)**
* Server: Added API for getting a single session (thanks to @AntonSmolkov, #2131)
* Server: Fixed "TryPrivate" (Mosquitto feature) handling (thanks to @victornor, #2125) **(BREAKING CHANGE)**
* Server: Fixed dead lock when awaiting a packet transmission but the packet gets dropped due to quotas (#2117, thanks to @AntonSmolkov)

0 comments on commit 735f6da

Please sign in to comment.