Comparing version 2.2.2 to 2.2.3
@@ -8,3 +8,7 @@ # Changelog | ||
## [2.2.3] - 2022-11-21 | ||
### Fixed | ||
- Fix regression in SASL/PLAIN authentication #1480 | ||
## [2.2.2] - 2022-10-18 | ||
@@ -11,0 +15,0 @@ |
{ | ||
"name": "kafkajs", | ||
"version": "2.2.2", | ||
"version": "2.2.3", | ||
"description": "A modern Apache Kafka client for node.js", | ||
@@ -5,0 +5,0 @@ "author": "Tulio Ornelas <ornelas.tulio@gmail.com>", |
@@ -358,3 +358,3 @@ const createSocket = require('./socket') | ||
this.failIfNotConnected() | ||
this.socket.write(requestPayload.buffer, 'binary') | ||
this.socket.write(requestPayload, 'binary') | ||
} catch (e) { | ||
@@ -361,0 +361,0 @@ reject(e) |
730984