From e3c5f7468d757ee7142cc7fadc507a04197839bd Mon Sep 17 00:00:00 2001 From: Emanuele Sabellico Date: Thu, 19 Jan 2023 17:59:12 +0100 Subject: [PATCH] Fix OpenSSL version in Win32 nuget package --- CHANGELOG.md | 12 ++++++++++-- packaging/nuget/nugetpackage.py | 4 ++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4569a8efc0..f24df99c44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# librdkafka v2.0.2 + +librdkafka v2.0.2 is a bugfix release: + +* Fix OpenSSL version in Win32 nuget package (#4150). + + + # librdkafka v2.0.1 librdkafka v2.0.1 is a bugfix release: @@ -67,7 +75,7 @@ To restore the previous behaviour, set `ssl.endpoint.identification.algorithm` t The Consumer Batch APIs `rd_kafka_consume_batch()` and `rd_kafka_consume_batch_queue()` are not thread safe if `rkmessages_size` is greater than 1 and any of the **seek**, **pause**, **resume** or **rebalancing** operation is performed in parallel with any of -the above APIs. Some of the messages might be lost, or erroneously returned to the +the above APIs. Some of the messages might be lost, or erroneously returned to the application, in the above scenario. It is strongly recommended to use the Consumer Batch APIs and the mentioned @@ -140,7 +148,7 @@ configuration property (refer [examples/rdkafka_complex_consumer_example.c] other partitions' offsets intermittently when **seek**, **pause**, **resume** or **rebalancing** is used for a partition. * Fix `rd_kafka_consume_batch()` and `rd_kafka_consume_batch_queue()` - intermittently returing incorrect partitions' messages if **rebalancing** + intermittently returing incorrect partitions' messages if **rebalancing** happens during these operations. # librdkafka v1.9.2 diff --git a/packaging/nuget/nugetpackage.py b/packaging/nuget/nugetpackage.py index 406a221571..0e7d46517a 100644 --- a/packaging/nuget/nugetpackage.py +++ b/packaging/nuget/nugetpackage.py @@ -193,12 +193,12 @@ class NugetPackage (Package): 'plat': 'win'}, 'librdkafka.redist*', 'build/native/bin/v142/Win32/Release/libcrypto-3.dll', - 'runtimes/win-x86/native/libcrypto-1_1.dll'), + 'runtimes/win-x86/native/libcrypto-3.dll'), Mapping({'arch': 'x86', 'plat': 'win'}, 'librdkafka.redist*', 'build/native/bin/v142/Win32/Release/libssl-3.dll', - 'runtimes/win-x86/native/libssl-1_1.dll'), + 'runtimes/win-x86/native/libssl-3.dll'), Mapping({'arch': 'x86', 'plat': 'win'},