Skip to content

Commit 511538e

Browse files
authored
Version 1.2.0-rc1 (#242)
* Add size reduction changes * Version bump for librdkafka and kafka-client
1 parent 31b4eff commit 511538e

File tree

12 files changed

+832
-1791
lines changed

12 files changed

+832
-1791
lines changed

.npmignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ deps/*
22
!deps/librdkafka.gyp
33
!deps/librdkafka
44
!deps/windows-install.*
5+
deps/librdkafka/tests
6+
deps/librdkafka/examples
7+
deps/librdkafka/debian
8+
deps/librdkafka/packaging
59
.gitmodules
610
Dockerfile
711
deps/librdkafka/config.h

.semaphore/semaphore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ global_job_config:
2828
- git submodule update --init --recursive
2929
- cd deps/librdkafka
3030
- git fetch origin
31-
- git checkout v2.6.1
31+
- git checkout v2.8.0
3232
- cd ../../
3333
- cache clear
3434

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@ v1.2.0 is a feature release. It is supported for all usage.
55
## Enhancements
66

77
1. Add support for an Admin API to fetch topic offsets by timestamp (#206).
8+
2. References librdkafka v2.8.0. Refer to the [librdkafka v2.8.0 release notes](https://github.com/confluentinc/librdkafka/releases/tag/v2.8.0) for more information.
89

910
## Fixes
1011

1112
1. Fixes an issue where the `eachBatch` callback was being called for the same partition concurrently (#224).
13+
2. Uses a Debian based builder instead of an Ubuntu based builder to ensure compatibility with older, but supported versions of Linux (#228).
1214

1315

1416
# confluent-kafka-javascript v1.1.0

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ For guidelines on contributing please see [CONTRIBUTING.md](CONTRIBUTING.md)
111111
| confluent-kafka-javascript | librdkafka |
112112
| -------------------------- | ---------- |
113113
| 1.0.0 | 2.6.1 |
114+
| 1.2.0 | 2.8.0 |
114115

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

deps/librdkafka

Submodule librdkafka updated 109 files

deps/librdkafka.gyp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"deps/librdkafka/src/librdkafka.so",
3333
],
3434
"action": [
35-
"make", "-j", "-C", "librdkafka", "libs", "install"
35+
"make", "-j", "-C", "librdkafka", "libs", "install-subdirs"
3636
],
3737
"conditions": [
3838
[

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.6.1 file src-cpp/rdkafkacpp.h ======
31+
// ====== Generated from librdkafka 2.8.0 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.0.0';
55+
util.bindingVersion = '1.2.0-rc1';

0 commit comments

Comments
 (0)