-
-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update pubsubclient to v2.11.0 by thingsboard #683
Merged
Merged
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
0737b43
Update the PubSubClient to thingsboard/pubsubclient version 2.10
uschindler b781b86
Fix a copypaste bug in release 2.10 making connection with password f…
uschindler 76b156b
Move malloc based host/port tokenizer to actual connection, so it is …
uschindler 8fe8a2d
Improve debugging when connection fails or disconnects
uschindler ac7c3f0
Some more keepalive problems in original code
uschindler 4eda051
Revert socket timeout changes, the correct keepalive settings are eno…
uschindler a56ea52
Update pubsubclient to released version 2.11.0
uschindler c9b44ec
Merge branch 'master' of https://github.com/fredlcore/BSB-LAN into de…
uschindler File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
{ | ||
"name": "PubSubClient", | ||
"keywords": "ethernet, mqtt, m2m, iot", | ||
"name": "TBPubSubClient", | ||
"keywords": "ethernet, mqtt, m2m, iot, thingsboard, messages", | ||
"description": "A client library for MQTT messaging. MQTT is a lightweight messaging protocol ideal for small devices. This library allows you to send and receive MQTT messages. It supports the latest MQTT 3.1.1 protocol and can be configured to use the older MQTT 3.1 if needed. It supports all Arduino Ethernet Client compatible hardware, including the Intel Galileo/Edison, ESP8266 and TI CC3000.", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/knolleary/pubsubclient.git" | ||
"url": "https://github.com/thingsboard/pubsubclient.git" | ||
}, | ||
"version": "2.8", | ||
"version": "2.10.0", | ||
"exclude": "tests", | ||
"examples": "examples/*/*.ino", | ||
"frameworks": "arduino", | ||
"platforms": [ | ||
"atmelavr", | ||
"espressif8266", | ||
"espressif32" | ||
"espressif32", | ||
"rp2040" | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name=PubSubClient | ||
version=2.8 | ||
author=Nick O'Leary <[email protected]> | ||
maintainer=Nick O'Leary <[email protected]> | ||
name=TBPubSubClient | ||
version=2.10.0 | ||
author=ThingsBoard <[email protected]> | ||
maintainer=ThingsBoard Team | ||
sentence=A client library for MQTT messaging. | ||
paragraph=MQTT is a lightweight messaging protocol ideal for small devices. This library allows you to send and receive MQTT messages. It supports the latest MQTT 3.1.1 protocol and can be configured to use the older MQTT 3.1 if needed. It supports all Arduino Ethernet Client compatible hardware, including the Intel Galileo/Edison, ESP8266 and TI CC3000. | ||
category=Communication | ||
|
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for some reason they forgot to update the version number in the JSON file of release.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
they already forgot this on last release 2.10.1. I don't know for what the JSON file is used.