Skip to content

Commit dd24681

Browse files
authored
version 1.4.1-rc1. References librdkafka 2.11.1-RC2 (#353)
1 parent 86993ac commit dd24681

File tree

11 files changed

+2260
-1305
lines changed

11 files changed

+2260
-1305
lines changed

.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.11.0
31+
- git checkout v2.11.1-RC2
3232
- cd ../../
3333
- cache clear
3434

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# confluent-kafka-javascript v1.4.1
2+
3+
v1.4.1 is a maintenance release. It is supported for all usage.
4+
5+
## Enhancements
6+
7+
1. References librdkafka v2.11.1. Refer to the [librdkafka v2.11.1 release notes](https://github.com/confluentinc/librdkafka/releases/tag/v2.11.1) for more information.
8+
9+
110
# confluent-kafka-javascript v1.4.0
211

312
v1.4.0 is a feature release. It is supported for all usage.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ For guidelines on contributing please see [CONTRIBUTING.md](CONTRIBUTING.md)
116116
| 1.3.1 | 2.10.0 |
117117
| 1.3.2 | 2.10.1 |
118118
| 1.4.0 | 2.11.0 |
119+
| 1.4.1 | 2.11.1 |
119120

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

ci/checks/librdkafka-correct-version.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,14 @@ function versionAsString(version) {
6060

6161
const librdkafkaVersion = parseLibrdkafkaVersion(defines.RD_KAFKA_VERSION);
6262
const versionString = versionAsString(librdkafkaVersion);
63+
let pjsLibrdkafka = pjs.librdkafka;
64+
const pjsIsRC = pjsLibrdkafka.match(/(.+)-RC[0-9]+$/);
65+
if (pjsIsRC) {
66+
pjsLibrdkafka = pjsIsRC[1];
67+
}
6368

6469
// If our version is a devel (early access) version, we might be on master.
65-
if (pjs.librdkafka !== versionString && !pjs.version.includes('devel')) {
70+
if (pjsLibrdkafka !== versionString && !pjs.version.includes('devel')) {
6671
console.error(`Librdkafka version of ${versionString} does not match package json: ${pjs.librdkafka}`);
6772
process.exit(1);
6873
}

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.11.0 file src-cpp/rdkafkacpp.h ======
31+
// ====== Generated from librdkafka 2.11.1-RC2 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.4.0';
55+
util.bindingVersion = '1.4.1-rc1';

0 commit comments

Comments
 (0)