Skip to content

Commit d0f8df4

Browse files
authored
Update package version to 0.5.0-rc1 (#169)
* Version bump to 0.5.0-rc1 * Drop -dev from version * Update npmignore and update submodule version * update changelog
1 parent 1e4d2cd commit d0f8df4

File tree

11 files changed

+30
-25
lines changed

11 files changed

+30
-25
lines changed

.npmignore

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ deps/*
55
.gitmodules
66
Dockerfile
77
deps/librdkafka/config.h
8-
schemaregistry
9-
schemaregistry-examples
10-
build
8+
./schemaregistry
9+
./schemaregistry-examples
10+
./build
1111
.github
1212
.vscode
1313
.semaphore
14-
examples
15-
test
16-
e2e
17-
bench
18-
ci
19-
proto
14+
./examples
15+
./test
16+
./e2e
17+
./bench
18+
./ci
19+
./proto

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

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,14 @@ v0.5.0 is a limited availability feature release. It is supported for all usage.
66
## Enhancements
77

88
1. Add support for an Admin API to delete records.(#141).
9-
2. Fixes an issue with unresolved raced Promises leaking in the consumer (#151).
10-
3. Add support for an Admin API to describe topics.(#155).
11-
4. Add support for dependent Admin client (#153).
9+
2. Add support for an Admin API to describe topics.(#155).
10+
3. Add support for dependent Admin client (#153).
11+
4. References librdkafka v2.6.1. Refer to the [librdkafka v2.6.1 release notes](https://github.com/confluentinc/librdkafka/releases/tag/v2.6.1) for more information.
12+
13+
## Fixes
14+
15+
1. Fixes an issue with unresolved raced Promises leaking in the consumer (#151).
16+
2. Removes schemaregistry dependencies from root package.json to prevent issues with Node 18 (#162).
1217

1318

1419
# confluent-kafka-javascript v0.4.0

lib/error.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ LibrdKafkaError.wrap = errorWrap;
2727
* @enum {number}
2828
* @constant
2929
*/
30-
// ====== Generated from librdkafka 2.6.0 file src-cpp/rdkafkacpp.h ======
30+
// ====== Generated from librdkafka 2.6.1 file src-cpp/rdkafkacpp.h ======
3131
LibrdKafkaError.codes = {
3232

3333
/* 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 = '0.4.0';
55+
util.bindingVersion = '0.5.0-rc1';

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": "0.4.0",
3+
"version": "0.5.0-rc1",
44
"description": "Node.js bindings for librdkafka",
5-
"librdkafka": "2.6.0",
6-
"librdkafka_win": "2.6.0",
5+
"librdkafka": "2.6.1",
6+
"librdkafka_win": "2.6.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": "0.4.0",
3+
"version": "0.5.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.6.0 file CONFIGURATION.md ======
1+
// ====== Generated from librdkafka 2.6.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.6.0 file src-cpp/rdkafkacpp.h ======
1+
// ====== Generated from librdkafka 2.6.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)