File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change
1
+ # confluent-kafka-javascript v0.5.1
2
+
3
+ v0.5.1 is a limited availability maintenance release. It is supported for all usage.
4
+
5
+ ## Fixes
6
+
7
+ 1 . Fix an issue where ` sendOffsets ` wasn't working correctly in the transactional
8
+ producer (#172 ).
9
+
1
10
2
11
# confluent-kafka-javascript v0.5.0
3
12
4
13
v0.5.0 is a limited availability feature release. It is supported for all usage.
5
14
15
+ Note: v0.5.0 was not released because of the bug mentioned in v0.5.1 section. Instead,
16
+ v0.5.1 was released with the fix directly.
17
+
6
18
## Enhancements
7
19
8
20
1 . Add support for an Admin API to delete records.(#141 ).
Original file line number Diff line number Diff line change @@ -513,7 +513,7 @@ class Producer {
513
513
return new Promise ( ( resolve , reject ) => {
514
514
this . #internalClient. sendOffsetsToTransaction (
515
515
this . #flattenTopicPartitionOffsets( topics ) . map ( topicPartitionOffsetToRdKafka ) ,
516
- consumer . _getInternalConsumer ( ) ,
516
+ consumer . _getInternalClient ( ) ,
517
517
async err => {
518
518
if ( err )
519
519
reject ( createKafkaJsErrorFromLibRdKafkaError ( err ) ) ;
You can’t perform that action at this time.
0 commit comments