Skip to content

Commit af4afa9

Browse files
authored
v1.3.2-rc1 (#331)
1 parent 0a27cd8 commit af4afa9

File tree

10 files changed

+1619
-2240
lines changed

10 files changed

+1619
-2240
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.10.0
31+
- git checkout v2.10.1
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.3.2
2+
3+
v1.3.2 is a maintenance release. It is supported for all usage.
4+
5+
## Enhancements
6+
7+
1. References librdkafka v2.10.1. Refer to the [librdkafka v2.10.1 release notes](https://github.com/confluentinc/librdkafka/releases/tag/v2.10.1) for more information.
8+
9+
110
# confluent-kafka-javascript v1.3.1
211

312
v1.3.1 is a maintenance release. It is supported for all usage.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ For guidelines on contributing please see [CONTRIBUTING.md](CONTRIBUTING.md)
114114
| 1.2.0 | 2.8.0 |
115115
| 1.3.0 | 2.10.0 |
116116
| 1.3.1 | 2.10.0 |
117+
| 1.3.2 | 2.10.1 |
117118

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

deps/librdkafka

Submodule librdkafka updated 88 files

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.10.0 file src-cpp/rdkafkacpp.h ======
31+
// ====== Generated from librdkafka 2.10.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.3.1';
55+
util.bindingVersion = '1.3.2-rc1';

package-lock.json

Lines changed: 1600 additions & 2231 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.3.1",
3+
"version": "1.3.2-rc1",
44
"description": "Node.js bindings for librdkafka",
5-
"librdkafka": "2.10.0",
6-
"librdkafka_win": "2.10.0",
5+
"librdkafka": "2.10.1",
6+
"librdkafka_win": "2.10.1",
77
"main": "lib/index.js",
88
"types": "types/index.d.ts",
99
"scripts": {

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.10.0 file CONFIGURATION.md ======
1+
// ====== Generated from librdkafka 2.10.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.10.0 file src-cpp/rdkafkacpp.h ======
1+
// ====== Generated from librdkafka 2.10.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)