Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix OpenSSL version in Win32 nuget package #4152

Merged
merged 1 commit into from
Jan 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# librdkafka v2.0.2

librdkafka v2.0.2 is a bugfix release:

* Fix OpenSSL version in Win32 nuget package (#4152).



# librdkafka v2.0.1

librdkafka v2.0.1 is a bugfix release:
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions packaging/nuget/nugetpackage.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'},
Expand Down