8000 Tags · ViktorViter/php-mqtt-client · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: ViktorViter/php-mqtt-client

Tags

v1.1.2

Toggle v1.1.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add support for ^2.0 of psr/log (php-mqtt#92)

* Support ^2.0 of psr/log

* Remove --ignore-platform-reqs from CI pipeline

v1.1.1

Toggle v1.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Abort connection handshake when connection timeout is reached (php-mq…

…tt#84)

v1.1.0

Toggle v1.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add support for shared subscription topic names (php-mqtt#75)

v1.0.0

Toggle v1.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add RabbitMQ as test broker (php-mqtt#62)

* Add RabbitMQ as test broker

* Switch to released namoshek/rabbitmq-github-action

v1.0.0-rc1

Toggle v1.0.0-rc1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update README and add CHANGELOG (php-mqtt#58)

* Minor code-doc changes

* Add changelog

* Update README.md

* Change author information to real name

v0.3.0

Toggle v0.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add support for client certificates (php-mqtt#41)

* Add support for client certificates

* Fix line indentation

* move client certificate parameters into ConnectionSettings; add passphrase option

* Fix code style

* Move client certificate validation logic to client

* Trim whitespace

Co-authored-by: Marvin Mall <marvin-mall@msn.com>

v0.2.1

Toggle v0.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix: Send PUBREL in response to PUBREC (php-mqtt#37)

v0.2.0

Toggle v0.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update README.md

v0.1.5

Toggle v0.1.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Added 'retained' parameter to subscriptions callbacks for published m…

…essages (php-mqtt#19)

* Added 'retained' parameter to subscriptions callbacks for published messages

If the publisher set the retained flag, the broker will honor it and send the published messages to the subscriber as soon as they subscrib. But the subscribe callback might need to know whether the message was delivered live or if it was retained, which could mean the message is stale.

* Make $retained false by default and add PhpDoc

* Explain subscription callback in PhpDoc

Co-authored-by: Marvin Mall <marvin-mall@msn.com>

v0.1.4

Toggle v0.1.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix: use addition to increase message size (php-mqtt#7)

When using a username and password to connect to a broker, the message size has been manipulated using string concatenation instead of mathematical addition. This caused an issue with `chr()` expecting an integer and not a string. It also would have lead to wrong information being sent.
0