forked from arnaud-lb/php-rdkafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.xml
756 lines (718 loc) · 24.7 KB
/
package.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
<?xml version="1.0" encoding="UTF-8"?>
<package xmlns="http://pear.php.net/dtd/package-2.1" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.1" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.1 http://pear.php.net/dtd/package-2.1.xsd">
<name>rdkafka</name>
<channel>pecl.php.net</channel>
<summary>Kafka client based on librdkafka</summary>
<description>PHP-rdkafka is a stable Kafka client for PHP based on librdkafka</description>
<lead>
<name>Arnaud Le Blanc</name>
<user>lbarnaud</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2022-07-02</date>
<time>12:26:56</time>
<version>
<release>6.0.3</release>
<api>6.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
## Improvements
- Ability to provide custom `librdkafka` path during pecl install (#526, @Wirone)
</notes>
<contents>
<dir name="/">
<file role="doc" name="CREDITS"/>
<file role="doc" name="LICENSE"/>
<file role="doc" name="README.md"/>
<file role="src" name="conf.c"/>
<file role="src" name="conf.h"/>
<file role="src" name="conf.stub.php"/>
<file role="src" name="conf_arginfo.h"/>
<file role="src" name="conf_legacy_arginfo.h"/>
<file role="src" name="config.m4"/>
<file role="src" name="config.w32"/>
<file role="src" name="fun.c"/>
<file role="src" name="fun.stub.php"/>
<file role="src" name="fun_arginfo.h"/>
<file role="src" name="fun_legacy_arginfo.h"/>
<file role="src" name="kafka_consumer.c"/>
<file role="src" name="kafka_consumer.h"/>
<file role="src" name="kafka_consumer.stub.php"/>
<file role="src" name="kafka_consumer_arginfo.h"/>
<file role="src" name="kafka_consumer_legacy_arginfo.h"/>
<file role="src" name="kafka_error_exception.c"/>
<file role="src" name="kafka_error_exception.h"/>
<file role="src" name="kafka_error_exception.stub.php"/>
<file role="src" name="kafka_error_exception_arginfo.h"/>
<file role="src" name="kafka_error_exception_legacy_arginfo.h"/>
<file role="src" name="message.c"/>
<file role="src" name="message.h"/>
<file role="src" name="message.stub.php"/>
<file role="src" name="message_arginfo.h"/>
<file role="src" name="message_legacy_arginfo.h"/>
<file role="src" name="metadata.c"/>
<file role="src" name="metadata.h"/>
<file role="src" name="metadata.stub.php"/>
<file role="src" name="metadata_arginfo.h"/>
<file role="src" name="metadata_broker.c"/>
<file role="src" name="metadata_broker.h"/>
<file role="src" name="metadata_broker.stub.php"/>
<file role="src" name="metadata_broker_arginfo.h"/>
<file role="src" name="metadata_broker_legacy_arginfo.h"/>
<file role="src" name="metadata_collection.c"/>
<file role="src" name="metadata_collection.h"/>
<file role="src" name="metadata_collection.stub.php"/>
<file role="src" name="metadata_collection_arginfo.h"/>
<file role="src" name="metadata_collection_legacy_arginfo.h"/>
<file role="src" name="metadata_legacy_arginfo.h"/>
<file role="src" name="metadata_partition.c"/>
<file role="src" name="metadata_partition.h"/>
<file role="src" name="metadata_partition.stub.php"/>
<file role="src" name="metadata_partition_arginfo.h"/>
<file role="src" name="metadata_partition_legacy_arginfo.h"/>
<file role="src" name="metadata_topic.c"/>
<file role="src" name="metadata_topic.h"/>
<file role="src" name="metadata_topic.stub.php"/>
<file role="src" name="metadata_topic_arginfo.h"/>
<file role="src" name="metadata_topic_legacy_arginfo.h"/>
<file role="src" name="php_rdkafka.h"/>
<file role="src" name="php_rdkafka_priv.h"/>
<file role="src" name="queue.c"/>
<file role="src" name="queue.h"/>
<file role="src" name="queue.stub.php"/>
<file role="src" name="queue_arginfo.h"/>
<file role="src" name="queue_legacy_arginfo.h"/>
<file role="src" name="rdkafka.c"/>
<file role="src" name="rdkafka.stub.php"/>
<file role="src" name="rdkafka_arginfo.h"/>
<file role="src" name="rdkafka_legacy_arginfo.h"/>
<file role="src" name="topic.c"/>
<file role="src" name="topic.h"/>
<file role="src" name="topic.stub.php"/>
<file role="src" name="topic_arginfo.h"/>
<file role="src" name="topic_legacy_arginfo.h"/>
<file role="src" name="topic_partition.c"/>
<file role="src" name="topic_partition.h"/>
<file role="src" name="topic_partition.stub.php"/>
<file role="src" name="topic_partition_arginfo.h"/>
<file role="src" name="topic_partition_legacy_arginfo.h"/>
<dir name="tests">
<file role="test" name="allow_null_payload_and_key.phpt"/>
<file role="test" name="allow_null_payload.phpt"/>
<file role="test" name="bug115.phpt"/>
<file role="test" name="bug330.phpt"/>
<file role="test" name="bug465.phpt"/>
<file role="test" name="bug508.phpt"/>
<file role="test" name="bug521.phpt"/>
<file role="test" name="bug74.phpt"/>
<file role="test" name="bug88.phpt"/>
<file role="test" name="bugConfSetArgument.phpt"/>
<file role="test" name="conf_callbacks_integration.phpt"/>
<file role="test" name="conf_callbacks.phpt"/>
<file role="test" name="conf.phpt"/>
<file role="test" name="conf_setDefaultTopicConf8.phpt"/>
<file role="test" name="conf_setDefaultTopicConf.phpt"/>
<file role="test" name="constants.phpt"/>
<file role="test" name="err2name.phpt"/>
<file role="test" name="init_transaction_not_configured.phpt"/>
<file role="test" name="integration-tests-check.php"/>
<file role="test" name="kafka_error_exception.phpt"/>
<file role="test" name="message_headers.phpt"/>
<file role="test" name="metadata_001.phpt"/>
<file role="test" name="metadata_broker_001.phpt"/>
<file role="test" name="metadata_collection_001.phpt"/>
<file role="test" name="metadata_partition_001.phpt"/>
<file role="test" name="metadata_topic_001.phpt"/>
<file role="test" name="new_topic_with_conf.phpt"/>
<file role="test" name="pause_resume.phpt"/>
<file role="test" name="produce_consume.phpt"/>
<file role="test" name="produce_consume_queue.phpt"/>
<file role="test" name="produce_consume_transactional.phpt"/>
<file role="test" name="produce_opaque_noconf.phpt"/>
<file role="test" name="produce_opaque_noflush_dr_callback.phpt"/>
<file role="test" name="produce_opaque_noflush.phpt"/>
<file role="test" name="produce_opaque.phpt"/>
<file role="test" name="produce_opaque_purge_dr_callback.phpt"/>
<file role="test" name="produce_opaque_purge.phpt"/>
<file role="test" name="producev_opaque.phpt"/>
<file role="test" name="rd_kafka_get_err_descs.phpt"/>
<file role="test" name="test0.phpt"/>
<file role="test" name="test_env.php.sample"/>
<file role="test" name="topic_conf.phpt"/>
<file role="test" name="topic_partition_001.phpt"/>
<file role="test" name="topic_partition_002.phpt"/>
</dir>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>7.0.0</min>
<max>8.99.99</max>
</php>
<pearinstaller>
<min>1.4.8</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>rdkafka</providesextension>
<extsrcrelease>
<configureoption name="with-rdkafka" default="autodetect" prompt="librdkafka installation path?"/>
</extsrcrelease>
<changelog>
<release>
<date>2022-06-12</date>
<time>12:00:00</time>
<version>
<release>6.0.2</release>
<api>6.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
## Bugfixes
- Fixed signature of RdKafka\KafkaConsumer::getMetadata() (#521, @arnaud-lb)
</notes>
</release>
<release>
<date>2022-02-15</date>
<time>12:00:00</time>
<version>
<release>6.0.1</release>
<api>6.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
## Bugfixes
- Always initialize Message::$headers (#508, @arnaud-lb)
</notes>
</release>
<release>
<date>2022-01-07</date>
<time>12:00:00</time>
<version>
<release>6.0.0</release>
<api>6.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
# Changes since 5.x
## Improvements
- PHP 8.1 support (@remicollet, @ruudk, @nick-zh)
- Added parameter types (when built with PHP>=8.0) (@arnaud-lb)
- Added tentative return types (when built with PHP>=8.1) (@arnaud-lb)
## Deprecations
- PHP 8.1: Overloading php-rdkafka methods without specifying a return type
will trigger a deprecation message unless annotated with
#[\ReturnTypeWillChange]
# Changes since 6.0.0RC2
## Bugfixes
- Fix newTopic() arginfo (#502, @arnaud-lb)
</notes>
</release>
<release>
<date>2021-11-27</date>
<time>15:00:00</time>
<version>
<release>6.0.0RC2</release>
<api>6.0.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
## Bugfixes
- Fix crash in RdKafka\TopicPartition::__construct() (#491, @remicollet)
</notes>
</release>
<release>
<date>2021-11-19</date>
<time>15:00:00</time>
<version>
<release>6.0.0RC1</release>
<api>6.0.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
## Enhancements
- PHP 8.1 support (@ruudk, @remicollet, @nick-zh, @arnaud-lb)
## Breaking changes
- Added tentative return types in PHP 8.1 builds
</notes>
</release>
<release>
<date>2021-11-19</date>
<time>14:00:00</time>
<version>
<release>5.0.1</release>
<api>4.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
## Enhancements
- Add pausePartitions(), resumePartitions() on RdKfaka, RdKafka\KafkaConsumer (#438, @arnaud-lb)
- Clarify error when KafkaConsumer is closed (@zoonru)
## Bugfixes
- Fix windows build (#440, @nick-zh)
- Fix crash in RdKafka\Metadata\Topic::getTopic() (#465, @arnaud-lb)
</notes>
</release>
<release>
<date>2021-01-14</date>
<time>12:00:00</time>
<version>
<release>5.0.0</release>
<api>4.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
## Enhancements
- PHP 8 support (@nick-zh, @arnaud-lb)
- Suport passing an opaque value in produce(), producev() (@arnaud-lb)
## Breaking changes
- Dropped PHP 5 support
</notes>
</release>
<release>
<date>2020-12-06</date>
<time>12:00:00</time>
<version>
<release>4.1.0</release>
<api>4.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
BREAKING CHANGE: Since version 4.0, the client no longer polls for network
events at shutdown (during object destructor). This behaviour didn't give
enough control to the user in case of server issue, and could cause the script
to hang while terminating.
Starting from 4.0, programs MUST call flush() before shutting down, otherwise
some messages and callbacks may be lost.
## Features
- Add transactional producer support (#359, @nick-zh)
</notes>
</release>
<release>
<version>
<release>4.0.4</release>
<api>4.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
BREAKING CHANGE: Since version 4.0, the client no longer polls for network
events at shutdown (during object destructor). This behaviour didn't give
enough control to the user in case of server issue, and could cause the script
to hang while terminating.
Starting from 4.0, programs MUST call flush() before shutting down, otherwise
some messages and callbacks may be lost.
## Bugfixes
- Fix crash during shurtdown (#367, @nick-zh, @sofire)
## Enhancements
- Improved CI (@Steveb-p, @arnaud-lb)
## Documentation
- Improved doc (@nick-zh, @Steveb-p)
</notes>
</release>
<release>
<date>2020-02-07</date>
<time>12:00:00</time>
<version>
<release>4.0.3</release>
<api>4.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
BREAKING CHANGE: Since version 4.0, the client no longer polls for network
events at shutdown (during object destructor). This behaviour didn't give
enough control to the user in case of server issue, and could cause the script
to hang while terminating.
Starting from 4.0, programs MUST call flush() before shutting down, otherwise
some messages and callbacks may be lost.
## Improvements
- Add partition check for offsetStore (#331, @nick-zh)
- Naming consistency for setting in tests (#339, @romainneutron)
## Bugfixes
- Fix headers containing null bytes (#338, @arnaud-lb, @dirx @nick-zh)
- Fix topic deconstruct for high level consumer (#333, @nick-zh)
## Documentation
- Fix doc example (#340, @Steveb-p)
- Remove outdated and duplicate examples (#341, @nick-zh)
</notes>
</release>
<release>
<date>2019-12-15</date>
<time>12:00:00</time>
<version>
<release>4.0.2</release>
<api>4.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
BREAKING CHANGE: Since version 4.0, the client no longer polls for network
events at shutdown (during object destructor). This behaviour didn't give
enough control to the user in case of server issue, and could cause the script
to hang while terminating.
Starting from 4.0, programs MUST call flush() before shutting down, otherwise
some messages and callbacks may be lost.
## Bugfixes
* Fix partition 0 exposed as NULL in Message (#327 reverts #321, @arnaud-lb @nick-zh)
* Fix memory leak in consume() when messages have headers (#323, @nick-zh)
</notes>
</release>
<release>
<date>2019-12-08</date>
<time>12:00:00</time>
<version>
<release>4.0.1</release>
<api>4.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
BREAKING CHANGE: Since version 4.0, the client no longer polls for network
events at shutdown (during object destructor). This behaviour didn't give
enough control to the user in case of server issue, and could cause the script
to hang while terminating.
Starting from 4.0, programs MUST call flush() before shutting down, otherwise
some messages and callbacks may be lost.
## Features
* Added RdKafka\ConsumerTopic::consumeCallback() (#310, @nick-zh)
## Enhancements
* Run integration tests in CI (#223, @Steveb-p)
* Improved README (#295 #297 #298, #307 @Steveb-p @sndsgd @nick-zh)
* Fix windows test cases (#296, @cmb69)
* Add testsuite in pecl archive (#291, @remicollet)
* Add editor config (#308, @Steveb-p)
## Bugfixes
* Fix build (#290, @nick-zh)
* Fix segfault during module shutdown (#293, @arnaud-lb @nick-zh)
* Fix RdKafka\Topic visibility in PHP 7.4 (#316, @nick-zh)
* Fix headers memory management in producev (#318 , @nick-zh)
* Fix partition number in error (#321, @nick-zh)
</notes>
</release>
<release>
<date>2019-10-04</date>
<time>12:00:00</time>
<version>
<release>4.0.0</release>
<api>4.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
BREAKING CHANGE: Since version 4.0, the client longer polls for network events
at shutdown (during object destructor). This behaviour didn't give enought
control to the user in case of server issue, and could cause the script to
hang while terminating.
Starting from this version, programs MUST now call flush() before shutting
down, otherwise some messages and callbacks may be lost.
## Features
* Added RdKafka\Kafka::offsetsForTimes(), RdKafka\KafkaConsumer::offsetsForTimes() (#238, #270, @nick-zh)
* Added RdKafka\KafkaConsumer::getOffsetPositions() (#244, @nick-zh)
* Added RdKafka\Kafka::purge() (#255, @nick-zh)
* Added RdKafka\Kafka::flush() (#264, @nick-zh)
* Added RdKafka\ConsumerTopic::consumeBatch() (#256, @nick-zh)
* Added RdKafka\Conf::setLogCb() (#253, @nick-zh)
* Added RdKafka\KafkaConsumer::queryWatermarkOffsets() (#271, @nick-zh)
* Added RdKafka\KafkaConsumer::close() (#144, @TiMESPLiNTER)
## Enhancements
* Support block on full producer queue (RD_KAFKA_MSG_F_BLOCK) (#245, @nick-zh)
* Add additional partitioners (#267, @nick-zh)
* Fix phpinfo output (#172, @TiMESPLiNTER)
* Don't poll in destruct anymore (#264, #278, @nick-zh)
## Bugfixes
* Fix segfault, remove Producer::newQueue (#273, @nick-zh)
## General
* Dropping support for librdkafka below 0.11 (#247, @arnaud-lb)
* Update build matrix PHP 7.3 + nightly, librdkafka 1.x + master (#249, @arnaud-lb)
* Deprecating deprecated librdkafka functions (#266, #254, #251, @nick-zh)
</notes>
</release>
<release>
<date>2019-07-08</date>
<time>12:00:00</time>
<version>
<release>3.1.2</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
* Fix build
</notes>
</release>
<release>
<date>2019-07-03</date>
<time>12:00:00</time>
<version>
<release>3.1.1</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
* Expose query watermark offsets (#219, @gytislakavicius)
* Support sending timestamp (epoch ms) in producev (#228, @lkm)
* Fix KafkaTopic::producev causing segfault on librdkafka 1.0.0 (#222, @Steveb-p)
* Fix version parsing (#224, @dariuskasiulevicius)
</notes>
</release>
<release>
<date>2019-04-18</date>
<time>12:00:00</time>
<version>
<release>3.1.0</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
* Added timestamp support (@mariam-japaridze)
* Added headers support (@martynaszaliaduonis, @dariuskasiulevicius)
* Added Rdkafka\Conf::setConsumeCb(), RdKafka\Conf::setOffsetCommitCb() (@tPl0ch)
* Added RdKafka\KafkaConsumer::getCommittedOffsets() (@dariuskasiulevicius)
* Fixed RdKafka\Message::errstr() (@JustBlackBird)
* Fixed reflection (@carusogabriel)
* Allow null key and null message (@awons)
* Dropped official PHP 5.4 / 5.5 support (@tPl0ch)
* Improved examples (@dbakiu, @Steveb-p)
</notes>
</release>
<release>
<date>2017-11-20</date>
<time>12:00:00</time>
<version>
<release>3.0.5</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
* Fixed destruction order, fixes hangs during RdKafka\Consumer destruction
</notes>
</release>
<release>
<date>2017-08-16</date>
<time>12:00:00</time>
<version>
<release>3.0.4</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
* Fixed destruction order, fixes hangs during RdKafka\Consumer destruction
* Added RdKafka\Conf::setStatsCb
</notes>
</release>
<release>
<date>2017-05-29</date>
<time>12:00:00</time>
<version>
<release>3.0.3</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
* Reduced termination times
</notes>
</release>
<release>
<date>2017-05-23</date>
<time>12:00:00</time>
<version>
<release>3.0.2</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
* Fixed ConsumerTopic::consumeStop() hanging on PHP 5
</notes>
</release>
<release>
<date>2017-01-28</date>
<time>12:00:00</time>
<version>
<release>3.0.1</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
* Fixed build on old gcc
</notes>
</release>
<release>
<date>2016-12-18</date>
<time>12:00:00</time>
<version>
<release>3.0.0</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
* Unified code for PHP versions 5 and 7. This package builds and works on
PHP 5.3 through PHP 7.x.
</notes>
</release>
<release>
<date>2016-09-09</date>
<time>12:00:00</time>
<version>
<release>1.0.0</release>
<api>1.0.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
This version of rdkafka is indented for php version 5. To compile rdkafka for
newer versions of php, use the pecl package version 2.
* Added high level consumer: Rdkafka\KafkaConsumer (librdkafka 0.9)
* RD_KAFKA_VERSION now reports the runtime librdkafka version
* Added RD_KAFKA_BUILD_VERSION
* Export runtime-provided constants from librdkafka (librdkafka 0.9)
* Added rd_kafka_get_err_descs() (librdkafka 0.9)
* Improve reflection/arginfo
* Rdkafka::metadata() is now a deprecated alias to Rdkafka::getMetadata()
* Rdkafka::outqLen() is now a deprecated alias to Rdkafka::getOutQLen()
* Rdkafka now throws Rdkafka\Exception instances
* Added Rdkafka\Conf::setDefaultTopicConf() (librdkafka 0.9)
* Added Rdkafka\Conf::setDrMsgCb() (librdkafka 0.9)
</notes>
</release>
<release>
<date>2016-01-11</date>
<time>10:30:00</time>
<version>
<release>0.9.1</release>
<api>0.9.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
* Allow to build against librdkafka master/0.9.x
</notes>
</release>
<release>
<date>2016-01-09</date>
<time>14:00:00</time>
<version>
<release>0.9.0</release>
<api>0.9.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
* Metadata API
* Consistent partitioner
* Fix ZTS build
</notes>
</release>
<release>
<date>2015-05-13</date>
<time>16:26:12</time>
<version>
<release>0.0.2</release>
<api>0.1.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<notes>Fixed package</notes>
</release>
</changelog>
</package>