Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release/6.0.4 #558

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 29 additions & 4 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2022-07-02</date>
<time>12:26:56</time>
<date>2024-10-24</date>
<time>14:56:47</time>
<version>
<release>6.0.3</release>
<release>6.0.4</release>
<api>6.0.0</api>
</version>
<stability>
Expand All @@ -23,7 +23,15 @@
<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)
- Added OAUTHBEARER support. New methods: RdKafka\Conf::setOauthbearerTokenRefreshCb(), RdKafka::oauthbearerSetToken(), RdKafka::oauthbearerSetTokenFailure() (#546, #547, @cb-freddysart, @scorgn)
- Added incremental rebalance support. New methods: RdKafka\KafkaConsumer::incrementalAssign(), RdKafka\KafkaConsumer::incrementalUnassign() (#541, @ikeberlein)
- Added RdKafka::getControllerId() (#554, @qkdreyer)

## Bugfixes
- Add private constructor on Metadata classes (#531, @arnaud-lb)

## Other Changes
- Improve KafkaErrorException message (#555, @arnaud-lb)
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -169,6 +177,23 @@
<configureoption name="with-rdkafka" default="autodetect" prompt="librdkafka installation path?"/>
</extsrcrelease>
<changelog>
<release>
<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>
</release>
<release>
<date>2022-06-12</date>
<time>12:00:00</time>
Expand Down
2 changes: 1 addition & 1 deletion php_rdkafka.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ PHP_METHOD(RdKafka, __construct);
extern zend_module_entry rdkafka_module_entry;
#define phpext_rdkafka_ptr &rdkafka_module_entry

#define PHP_RDKAFKA_VERSION "6.0.3"
#define PHP_RDKAFKA_VERSION "6.0.4"

extern zend_object_handlers kafka_default_object_handlers;
extern zend_class_entry * ce_kafka_exception;
Expand Down
Loading