Releases: brianlmoon/net_gearman
Releases · brianlmoon/net_gearman
PHP 8.1 Error Fixes
This addresses some deprecation errors on PHP 8.1
Timeout fix
Fix timeout adjustment. It was not fixed correctly in 2.1.0 as intended.
Minor fixes and new callback for clients for connection status
- Add status callback to Client to passively know when connections fail
- Add a sleepConnection call in worker when no job is returned from the job server
- Initialize job params when empty to avoid notice
- Update phpunit
Timeout fix
Fix timeout adjustment. It was not fixed correctly in 2.1.0 as intended.
2.1.0
Merge pull request #48 from brianlmoon/php8-updates PHP 8 Support
2.0.1 Support for gearmand 1.1.19
Updated to support gearmand 1.1.19. In gearmand version 1.1.19 and greater, the timeout is expected to be in milliseconds. Before that version, it is expected to be in seconds.
gearman/gearmand#196
2.0.0: PHP 7, Better Connection Handling, and More
- Updated required PHP version to 7.0.0
- Fixed issue with IPv6 IP addresses in worker manager response
- Removed old PEAR related files
- Fixes for MacOS socket error handling
- Better connection closing to avoid lag closing connections
- Added PHP Unit to composer and PHP Unit config files
- Various smaller bug fixes
1.0.2: Updating license for Packagist
Update to the license in composer.json for Packagist.
1.0.1
Updating minimum PHP version and making a stable release.
1.0.0-beta
Updates:
- Better connection handling for workers
- Tasks can now use a different server list than the Client. This is handy if you have different servers for handling different jobs. This allows for that work to be done in parallel rather than having to be handled by multiple clients.