Skip to content

Commit 8151be6

Browse files
authored
v1.8.0 rc1 (#422)
1 parent ef8e9d8 commit 8151be6

File tree

8 files changed

+23
-8
lines changed

8 files changed

+23
-8
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# confluent-kafka-javascript 1.8.0
2+
3+
v1.8.0 is a feature release. It is supported for all usage.
4+
5+
## Enhancements
6+
7+
1. References librdkafka v2.13.0. Refer to the [librdkafka v2.13.0 release notes](https://github.com/confluentinc/librdkafka/releases/tag/v2.13.0) for more information.
8+
2. Export CelExecutor/CelFieldExecutor in schemaregistry index.ts (#412).
9+
3. Minor improvement to rule failure message (#419).
10+
11+
## Fixes
12+
13+
1. fix(deps): update dependency validator to v13.15.22 [security] (#413).
14+
115
# confluent-kafka-javascript 1.7.0
216

317
v1.7.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
@@ -120,6 +120,7 @@ For guidelines on contributing please see [CONTRIBUTING.md](CONTRIBUTING.md)
120120
| 1.5.0 | 2.11.1 |
121121
| 1.6.0 | 2.12.0 |
122122
| 1.7.0 | 2.12.1 |
123+
| 1.8.0 | 2.13.0 |
123124

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

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.1 file src-cpp/rdkafkacpp.h ======
31+
// ====== Generated from librdkafka 2.13.0-RC1 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.8.0-rc1';

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.8.0-rc1",
44
"description": "Node.js bindings for librdkafka",
5-
"librdkafka": "2.12.1",
6-
"librdkafka_win": "2.12.1",
5+
"librdkafka": "2.13.0-RC1",
6+
"librdkafka_win": "2.13.0-RC1",
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.8.0-rc1",
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.1 file CONFIGURATION.md ======
1+
// ====== Generated from librdkafka 2.13.0-RC1 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.1 file src-cpp/rdkafkacpp.h ======
1+
// ====== Generated from librdkafka 2.13.0-RC1 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)