v20.0.0
#1343
Replies: 1 comment 4 replies
-
We rely on the MQTT wildcards. Is the expectation that instead we need to subscribe on every possible topic that might match? The issue is the topic used to publish is dynamic and all possible topics are not known at time of subscription. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Massively simplified & improved pub/sub
Pub/sub is now a lot more predictable and always guarantees strict ordering inside topics, across topics and between WebSocket::send and WebSocket::publish / App::publish. Subscription and unsubscription is always guaranteed to be strictly ordered with respect to publish. Support for MQTT wildcards has been removed.
Backwards compatible
Unless you're relying on MQTT wildcards ('#', '+'), v20.0.0 is entirely backwards compatible with v19.9.0.
Motivation
When pub/sub was introduced in 2018, it was designed based on a few assumptions:
This discussion was created from the release v20.0.0.
Beta Was this translation helpful? Give feedback.
All reactions