Skip to content

Tags: php-mqtt/client

Tags

v2.2.0

Toggle v2.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix: PHP 8.4 - Implicitly nullable parameter declarations deprecated (#…

…192)

v2.1.0

Toggle v2.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Added support for TLS ALPN to connect via MQTT protocol to a TLS encr…

…ypted HTTP port 443 (#181)

* Update ConnectionSettings.php

added TLS ALPN option

* Update MqttClient.php

Added TLS ALPN option to the TLS options

* Update MqttClient.php

* Update README.md

Added TLS ALPN to the ConnectSettings options

v2.0.0

Toggle v2.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update to require minimum PHP 8 (#170)

* Require PHP 8.0

* Apply rector with PHP 8 defaults

* Add manual changes as needed

* Test PHP 8.2 and 8.3 instead of 7.4

v1.8.1

Toggle v1.8.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix: Allow isPublishMessageWithNullCharacter to receive messages as n…

…ull (#162)

v1.8.0

Toggle v1.8.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add connected event (handler) (#152)

* Added an connected event (handler list)

* Prevent adding duplicated subscriptions

* Fix phpcs

* Pass info to connected event handlers if is auto-reconnect

* Prevent double subscriptions in MemoryRepository

* Add tests for the new connected event handlers

* Revert "Fix phpcs"

This reverts commit 10a9d42.

* Remove trailing whitespace

---------

Co-authored-by: Marvin Mall <[email protected]>

v1.7.1

Toggle v1.7.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix: use blocking socket only during publishing if configured (#141)

v1.7.0

Toggle v1.7.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add connection setting for blocking mode of socket (#135)

* Add connection setting for blocking mode of socket

* Add warning that blocking socket is potentially dangerous

v1.6.0

Toggle v1.6.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add new connection setting for delay between reconnect attempts (#130)

v1.5.0

Toggle v1.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump sonarsource/sonarcloud-github-action from 1.6 to 1.7 (#125)

Bumps [sonarsource/sonarcloud-github-action](https://github.com/sonarsource/sonarcloud-github-action) from 1.6 to 1.7.
- [Release notes](https://github.com/sonarsource/sonarcloud-github-action/releases)
- [Commits](SonarSource/sonarcloud-github-action@v1.6...v1.7)

---
updated-dependencies:
- dependency-name: sonarsource/sonarcloud-github-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

v1.4.0

Toggle v1.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Refactor MQTT client loop implementation to allow easier integration …

…with third party event loops (#115)

* Refactor MQTT client loop implementation

This refactoring add a loopOnce method to MqttClient class. This method allows the MQTT client implementation to be integrated to an event loop (like ReactPHP - Ratchet).

* Update loopOnce documentation

* Add method to interface, refactor and reformat code

Co-authored-by: Marvin Mall <[email protected]>