Skip to content

Commit a1d08dd

Browse files
committed
4.1.0
1 parent 00f6856 commit a1d08dd

File tree

2 files changed

+34
-11
lines changed

2 files changed

+34
-11
lines changed

package.xml

+33-10
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
<email>[email protected]</email>
1111
<active>yes</active>
1212
</lead>
13-
<date>2020-10-08</date>
13+
<date>2020-12-06</date>
1414
<time>12:00:00</time>
1515
<version>
16-
<release>4.0.4</release>
16+
<release>4.1.0</release>
1717
<api>4.0.0</api>
1818
</version>
1919
<stability>
@@ -30,14 +30,8 @@
3030
Starting from 4.0, programs MUST call flush() before shutting down, otherwise
3131
some messages and callbacks may be lost.
3232

33-
## Bugfixes
34-
- Fix crash during shurtdown (#367, @nick-zh, @sofire)
35-
36-
## Enhancements
37-
- Improved CI (@Steveb-p, @arnaud-lb)
38-
39-
## Documentation
40-
- Improved doc (@nick-zh, @Steveb-p)
33+
## Features
34+
- Add transactional producer support (#359, @nick-zh)
4135
</notes>
4236
<contents>
4337
<dir name="/">
@@ -117,6 +111,35 @@
117111
<providesextension>rdkafka</providesextension>
118112
<extsrcrelease/>
119113
<changelog>
114+
<release>
115+
<version>
116+
<release>4.0.4</release>
117+
<api>4.0.0</api>
118+
</version>
119+
<stability>
120+
<release>stable</release>
121+
<api>stable</api>
122+
</stability>
123+
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
124+
<notes>
125+
BREAKING CHANGE: Since version 4.0, the client no longer polls for network
126+
events at shutdown (during object destructor). This behaviour didn't give
127+
enough control to the user in case of server issue, and could cause the script
128+
to hang while terminating.
129+
130+
Starting from 4.0, programs MUST call flush() before shutting down, otherwise
131+
some messages and callbacks may be lost.
132+
133+
## Bugfixes
134+
- Fix crash during shurtdown (#367, @nick-zh, @sofire)
135+
136+
## Enhancements
137+
- Improved CI (@Steveb-p, @arnaud-lb)
138+
139+
## Documentation
140+
- Improved doc (@nick-zh, @Steveb-p)
141+
</notes>
142+
</release>
120143
<release>
121144
<date>2020-02-07</date>
122145
<time>12:00:00</time>

php_rdkafka.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ PHP_METHOD(RdKafka, __construct);
4949
extern zend_module_entry rdkafka_module_entry;
5050
#define phpext_rdkafka_ptr &rdkafka_module_entry
5151

52-
#define PHP_RDKAFKA_VERSION "4.0.5-dev"
52+
#define PHP_RDKAFKA_VERSION "4.1.0"
5353

5454
extern zend_object_handlers kafka_default_object_handlers;
5555
extern zend_class_entry * ce_kafka_exception;

0 commit comments

Comments
 (0)