Skip to content

Releases: roadrunner-php/jobs

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

v2.9.0

20 Mar 08:03
5d7b9d2
Compare
Choose a tag to compare

What's Changed

  • Adds consume_all option to the AMQPCreateInfo DTO by @butschster in #44
  • Starting from v2023.1.0, RR requires a queue name (if the consumer is used) or/and routing key for the push operations. by @butschster in #45

Full Changelog: v2.8.1...v2.9.0

v2.8.1

14 Mar 07:59
948a452
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.8.0...v2.9.0

v2.8.0

24 Feb 09:41
47f2e1a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.7.0...v2.8.0

v2.7.0

03 Feb 13:20
a601d26
Compare
Choose a tag to compare

What's Changed

  • Adding ReceivedTaskFactory, adding KafkaReceivedTask by @msmakouz in #36

Full Changelog: v2.6.0...v2.7.0