Skip to content

Releases: roadrunner-php/jobs

v4.6.2

30 Nov 15:42
52ae1fb
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v4.6.1...v4.6.2

v4.6.1

21 Nov 11:00
a1777e6
Compare
Choose a tag to compare

What's Changed

  • The redelivery option in the nack method has been fixed by @msmakouz in #71

Full Changelog: v4.6.0...v4.6.1

v4.6.0

29 Jul 08:20
1df9702
Compare
Choose a tag to compare

What's Changed

  • Added support for the Google Pub/Sub driver. This driver is available since RoadRunner v2024.2.0.
  • Added support for google/protobuf v4.x.

Full Changelog: v4.5.0...v4.6.0

v4.5.0

25 Jun 08:21
9842316
Compare
Choose a tag to compare

What's Changed

  • Added support for ack, nack, and requeue methods, which were introduced in RoadRunner v2024.1.5 by @msmakouz in #66
  • Fixed the topic parameter name in the AMQP driver configuration by @realization in #65

New Contributors

Full Changelog: v4.4.0...v4.5.0

v4.4.0

11 Apr 17:39
0013e1e
Compare
Choose a tag to compare

What's Changed

Full Changelog: v4.3.1...v4.4.0

v4.3.1

02 Apr 12:30
4621491
Compare
Choose a tag to compare

What's Changed

  • Changed the default value for the prefetch option in the Memory driver by @gam6itko in #62
  • Fixed Psalm issues by @msmakouz in #63

New Contributors

Full Changelog: 4.3.0...v4.3.1

v4.3.0

28 Nov 20:00
b0903fe
Compare
Choose a tag to compare

What's Changed

  • Add additional options when creating a pipeline by @msmakouz in #60

Full Changelog: 4.1.0...4.3.0

v4.2.0

06 Oct 10:11
d031e96
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 4.0.1...4.2.0

v4.1.0

14 Sep 09:14
d031e96
Compare
Choose a tag to compare

What's Changed

  • feat(AMQP): Add Header constants for consistent AMQP header usage by @butschster in #58
  • Fixes problem with create info object serialization that contains folded serializable objects by @butschster in #57

Full Changelog: 4.0.0...4.0.1

v4.0.0

14 Apr 11:55
ce9740f
Compare
Choose a tag to compare

Features

  • Upgraded to PHP 8.1
  • Upgraded to PHPUnit 10
  • Upgraded to Psalm 5
  • Added reusable Gh Actions
  • Added metapackage spiral/roadrunner:^2023

What's Changed

Remove built-in serializers for payload serialization/deserialization.

It now allows application to implement their own serialization methods and send the payload as a string or an instance of a Stringable object.

by @butschster in #47

Updated create info Kafka driver

use Spiral\RoadRunner\Jobs\Queue\KafkaCreateInfo;
use Spiral\RoadRunner\Jobs\Queue\Kafka\ProducerOptions;
use Spiral\RoadRunner\Jobs\Queue\Kafka\ConsumerOptions;
use Spiral\RoadRunner\Jobs\Queue\Kafka\ConsumerGroupOptions;


$info = new KafkaCreateInfo(
   name: 'foo',
   priority: 10,
   autoCreateTopicsEnable: false,
   producerOptions: new ProducerOptions(...),
   consumerOptions: new ConsumerOptions(...),
   groupOptions: new ConsumerGroupOptions(...),
);

by @butschster in #51

Full Changelog: v2.6.0...4.0.0