Skip to content

Commit 530ad99

Browse files
authored
v1.7.0-alpha.0 (#400)
1 parent 744588a commit 530ad99

File tree

10 files changed

+17
-15
lines changed

10 files changed

+17
-15
lines changed

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@ v1.7.0 is a feature release. It is supported for all usage.
44

55
### Enhancements
66

7-
1. Configurable batch size through the `js.consumer.max.batch.size` property
7+
1. References librdkafka v2.12.1. Refer to the [librdkafka v2.12.1 release notes](https://github.com/confluentinc/librdkafka/releases/tag/v2.12.1) for more information.
8+
2. Configurable batch size through the `js.consumer.max.batch.size` property
89
and cache size through the `js.consumer.max.cache.size.per.worker.ms`
910
property (#393).
10-
2. Statistics callback now available when using the promisified API with all
11+
3. Statistics callback now available when using the promisified API with all
1112
client types (#399).
12-
3. Fix for at-least-once guarantee not ensured in case a seek happens on one
13+
4. Fix for at-least-once guarantee not ensured in case a seek happens on one
1314
partition and there are messages being fetched about other partitions (#393).
1415

1516

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ For guidelines on contributing please see [CONTRIBUTING.md](CONTRIBUTING.md)
119119
| 1.4.1 | 2.11.1 |
120120
| 1.5.0 | 2.11.1 |
121121
| 1.6.0 | 2.12.0 |
122+
| 1.7.0 | 2.12.1 |
122123

123124
This mapping is applicable if you're using a pre-built binary. Otherwise, you can check the librdkafka version with the following command:
124125

lib/error.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ LibrdKafkaError.wrap = errorWrap;
2828
* @constant
2929
* @memberof RdKafka
3030
*/
31-
// ====== Generated from librdkafka 2.12.0 file src-cpp/rdkafkacpp.h ======
31+
// ====== Generated from librdkafka 2.12.1 file src-cpp/rdkafkacpp.h ======
3232
LibrdKafkaError.codes = {
3333

3434
/* Internal errors to rdkafka: */

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 = '1.7.0';
55+
util.bindingVersion = '1.7.0-alpha.0';

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "@confluentinc/kafka-javascript",
3-
"version": "1.7.0",
3+
"version": "1.7.0-alpha.0",
44
"description": "Node.js bindings for librdkafka",
5-
"librdkafka": "2.12.0",
6-
"librdkafka_win": "2.12.0",
5+
"librdkafka": "2.12.1",
6+
"librdkafka_win": "2.12.1",
77
"main": "lib/index.js",
88
"types": "types/index.d.ts",
99
"scripts": {

schemaregistry/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@confluentinc/schemaregistry",
3-
"version": "1.7.0",
3+
"version": "1.7.0-alpha.0",
44
"description": "Node.js client for Confluent Schema Registry",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

types/config.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// ====== Generated from librdkafka 2.12.0 file CONFIGURATION.md ======
1+
// ====== Generated from librdkafka 2.12.1 file CONFIGURATION.md ======
22
// Code that generated this is a derivative work of the code from Nam Nguyen
33
// https://gist.github.com/ntgn81/066c2c8ec5b4238f85d1e9168a04e3fb
44

types/errors.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// ====== Generated from librdkafka 2.12.0 file src-cpp/rdkafkacpp.h ======
1+
// ====== Generated from librdkafka 2.12.1 file src-cpp/rdkafkacpp.h ======
22
export const CODES: { ERRORS: {
33
/* Internal errors to rdkafka: */
44
/** Begin internal error codes (**-200**) */

0 commit comments

Comments
 (0)