feat: Publish version and build info to MQTT on connect - #5
Merged
Merged
Conversation
added 2 commits
November 26, 2025 12:36
- Add automatic version info publishing when MQTT client connects
- Publish JSON payload to {SendTopic}/version subtopic
- Include version, build date, git commit hash, client ID, and timestamp
- Add missing System.Linq using in VersionInfo.cs
- Set retain flag on version info message so subscribers receive it immediately - Ensures version information is always available to new subscribers
Jen42
approved these changes
Nov 26, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds automatic publishing of version and build information to MQTT when the client connects.
Changes
PublishVersionInfo()method that publishes version info as JSON to{SendTopic}/versionsubtopicConnectedAsynchandler to automatically publish version info on successful MQTT connectionSystem.Linqusing statement inVersionInfo.csVersion Info Payload
The JSON payload includes:
Example Topic
If
SendTopicis configured asDotnetMQTT/Test/out, version info will be published to:DotnetMQTT/Test/out/versionTesting
Please review: @Jen42