Releases: php-mqtt/laravel-client
Releases · php-mqtt/laravel-client
v1.6.1
What's Changed
- Bump sonarsource/sonarqube-scan-action from 5.0.0 to 5.1.0 by @dependabot in #63
- Bump sonarsource/sonarqube-scan-action from 5.1.0 to 5.2.0 by @dependabot in #65
- Changed the implicit nullable type declaration to a nullable type declaration by @stsepelin in #66
New Contributors
- @stsepelin made their first contribution in #66
Full Changelog: v1.6.0...v1.6.1
v1.6.0
What's Changed
- Update supported PHP and Laravel versions by @Namoshek in #57
- Bump sonarsource/sonarqube-scan-action from 4.1.0 to 4.2.1 by @dependabot in #58
- Bump sonarsource/sonarqube-scan-action from 4.2.1 to 5.0.0 by @dependabot in #60
- CI: Build against PHP 8.4 and raise minimum PHP version to 8.1 by @Namoshek in #61
- Add support for Laravel 12 by @Namoshek in #62
Full Changelog: v1.5.0...v1.6.0
v1.5.0
What's Changed
- Bump actions/cache from 3 to 4 by @dependabot in #49
- Laravel 11.x Compatibility by @laravel-shift in #53
Full Changelog: v1.4.0...v1.5.0
v1.4.0
What's Changed
- Bump
actions/checkout
from 3 to 4 by @dependabot in #46 - Add support for
php-mqtt/client:^2.0
by @Namoshek in #48
Full Changelog: v1.3.0...v1.4.0
v1.3.0
v1.2.1
v1.2.0
What's Changed
- Laravel 10.x Compatibility by @laravel-shift in #35
- GitHub Actions: Run tests against PHP 8.2 by @Namoshek in #37
New Contributors
- @laravel-shift made their first contribution in #35
Full Changelog: v1.1.0...v1.2.0
Add auto-reconnect settings
This release adds new options for the auto-reconnect feature added in v1.3.0
and v1.6.0
of php-mqtt/client
.
Add support for Laravel 9
This release adds support for Laravel 9 (#22).
Fix: MQTT::connection() always returns established connection (or throws exception)
In #18 @stijn1989 described an issue where manually closing a connection would make MQTT::connection()
return an already closed connection on subsequent calls. To work around this issue, we reinitialize closed connections before returning them in MQTT::connect()
(#19).