You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,22 @@
1
+
# 1.7.0
2
+
3
+
## Enhancements
4
+
5
+
- References librdkafka.redist 1.7.0. Refer to the [librdkafka release notes](https://github.com/edenhill/librdkafka/releases/tag/v1.7.0) for a complete
6
+
list of changes, enhancements, fixes and upgrade considerations.
7
+
- Added OAuth support to AdminClient ([jerive](https://github.com/jerive))
8
+
9
+
10
+
## Fixes
11
+
12
+
- Resolved a schema caching bug ([#1587](https://github.com/confluentinc/confluent-kafka-dotnet/pull/1587)) in `CachedSchemaRegistryClient.GetSchemaIdAsync` ([jeremy001181](https://github.com/jeremy001181)).
13
+
- Fixed a configuration error in the Web example ([cjgalione](https://github.com/cjgalione)).
14
+
15
+
## Security
16
+
17
+
- Updated `System.Net.Http` dependency to v4.3.4 ([CVE-2018-8292](https://github.com/advisories/GHSA-7jgj-8wvc-jh57))
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,13 +44,13 @@ confluent-kafka-dotnet is distributed via NuGet. We provide five packages:
44
44
To install Confluent.Kafka from within Visual Studio, search for Confluent.Kafka in the NuGet Package Manager UI, or run the following command in the Package Manager Console:
45
45
46
46
```
47
-
Install-Package Confluent.Kafka -Version 1.6.3
47
+
Install-Package Confluent.Kafka -Version 1.7.0
48
48
```
49
49
50
50
To add a reference to a dotnet core project, execute the following at the command line:
51
51
52
52
```
53
-
dotnet add package -v 1.6.3 Confluent.Kafka
53
+
dotnet add package -v 1.7.0 Confluent.Kafka
54
54
```
55
55
56
56
Note: `Confluent.Kafka` depends on the `librdkafka.redist` package which provides a number of different builds of `librdkafka` that are compatible with [common platforms](https://github.com/edenhill/librdkafka/wiki/librdkafka.redist-NuGet-package-runtime-libraries). If you are on one of these platforms this will all work seamlessly (and you don't need to explicitly reference `librdkafka.redist`). If you are on a different platform, you may need to [build librdkafka](https://github.com/edenhill/librdkafka#building) manually (or acquire it via other means) and load it using the [Library.Load](https://docs.confluent.io/current/clients/confluent-kafka-dotnet/api/Confluent.Kafka.Library.html#Confluent_Kafka_Library_Load_System_String_) method.
0 commit comments