Skip to content

Commit 7350d0a

Browse files
authored
Bump version to 0.1.17-devel
1 parent 59e1c06 commit 7350d0a

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# confluent-kafka-javascript v0.1.17-devel
2+
3+
v0.1.17-devel is a pre-production, early-access release.
4+
5+
## Features
6+
7+
1. Add a commitCb method to the callback-based API which allows committing asynchronously.
8+
2. Pass assign/unassign functions to the rebalance callback in the promisified API, allowing
9+
the user to control the assignment of partitions, or pause just after a rebalance.
10+
3. Remove store from promisified API and let the library handle all the stores.
11+
4. Add JavaScript-level debug logging to the client for debugging issues within the binding.
12+
5. Various fixes for performance and robustness of the consumer cache.
13+
6. Remove `consumerGroupId` argument from the `sendOffsets` method of the transactional producer,
14+
and instead, only allow using a `consumer`.
15+
16+
## Fixes
17+
18+
1. Do not modify RegExps which don't start with a ^, instead, throw an error so
19+
that there is no unexpected behaviour for the user (Issue [#64](https://github.com/confluentinc/confluent-kafka-javascript/issues/64)).
20+
2. Do not mutate arguments in run, pause and resume (Issue [#61](https://github.com/confluentinc/confluent-kafka-javascript/issues/61)).
21+
3. Fix a segmentation fault in `listGroups` when passing `matchConsumerGroupStates` as undefined.
22+
23+
124
# confluent-kafka-javascript v0.1.16-devel
225

326
v0.1.16-devel is a pre-production, early-access release.

lib/util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ util.dictToStringList = function (mapOrObject) {
5252
return list;
5353
};
5454

55-
util.bindingVersion = 'v0.1.16-devel';
55+
util.bindingVersion = 'v0.1.17-devel';

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "@confluentinc/kafka-javascript",
3-
"version": "v0.1.16-devel",
3+
"version": "v0.1.17-devel",
44
"description": "Node.js bindings for librdkafka",
55
"librdkafka": "master",
6-
"librdkafka_win": "2.4.0",
6+
"librdkafka_win": "2.5.3",
77
"main": "lib/index.js",
88
"types": "types/index.d.ts",
99
"scripts": {

0 commit comments

Comments
 (0)