Skip to content

Commit 88813ff

Browse files
authored
-> v1.1.0 (#991)
* -> v1.1.0 * review changes
1 parent 98edaaf commit 88813ff

File tree

16 files changed

+25
-28
lines changed

16 files changed

+25
-28
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 1.1.0
2+
3+
## Enhancements
4+
5+
- References librdkafka v1.1.0. Refer to the [release notes](https://github.com/edenhill/librdkafka/releases/tag/v1.1.0) for more informtion. Notable improvement for Windows SSL users: You no longer need to specify a CA certificate file/directory (SslCaLocation) - librdkafka will load the CA certs by default from the Windows Root Certificate Store.
6+
7+
18
# 1.0.1.1
29

310
## Changes

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ confluent-kafka-dotnet is distributed via NuGet. We provide three packages:
4242
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:
4343

4444
```
45-
Install-Package Confluent.Kafka -Version 1.0.1.1
45+
Install-Package Confluent.Kafka -Version 1.1.0
4646
```
4747

4848
To add a reference to a dotnet core project, execute the following at the command line:
4949

5050
```
51-
dotnet add package -v 1.0.1.1 Confluent.Kafka
51+
dotnet add package -v 1.1.0 Confluent.Kafka
5252
```
5353

5454

examples/AdminClient/AdminClient.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="1.0.1.1" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="1.1.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.Kafka/Confluent.Kafka.csproj" />
1414
</ItemGroup>
1515

examples/AvroBlogExamples/AvroBlogExamples.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes" Version="1.0.1.1" /> -->
11+
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes" Version="1.1.0" /> -->
1212
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Serdes/Confluent.SchemaRegistry.Serdes.csproj" />
1313
</ItemGroup>
1414

examples/AvroGeneric/AvroGeneric.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes" Version="1.0.1.1" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes" Version="1.1.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Serdes/Confluent.SchemaRegistry.Serdes.csproj" />
1414
</ItemGroup>
1515

examples/AvroSpecific/AvroSpecific.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes" Version="1.0.1.1" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes" Version="1.1.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Serdes/Confluent.SchemaRegistry.Serdes.csproj" />
1414
</ItemGroup>
1515

examples/ConfluentCloud/ConfluentCloud.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="1.0.1.1" /> -->
10+
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="1.1.0" /> -->
1111
<ProjectReference Include="../../src/Confluent.Kafka/Confluent.Kafka.csproj" />
1212
</ItemGroup>
1313

examples/ConfluentCloud/Program.cs

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
using Confluent.Kafka;
1818
using System;
19-
using System.Collections.Generic;
20-
using System.Text;
2119

2220

2321
namespace ConfluentCloudExample
@@ -47,14 +45,8 @@ static void Main(string[] args)
4745
ApiVersionFallbackMs = 0,
4846
SaslMechanism = SaslMechanism.Plain,
4947
SecurityProtocol = SecurityProtocol.SaslSsl,
50-
// On Windows, default trusted root CA certificates are stored in the Windows Registry.
51-
// They are not automatically discovered by Confluent.Kafka and it's not possible to
52-
// reference them using the `ssl.ca.location` property. You will need to obtain these
53-
// from somewhere else, for example use the cacert.pem file distributed with curl:
54-
// https://curl.haxx.se/ca/cacert.pem and reference that file in the `ssl.ca.location`
55-
// property:
56-
SslCaLocation = "/usr/local/etc/openssl/cert.pem", // suitable configuration for linux, osx.
57-
// SslCaLocation = "c:\\path\\to\\cacert.pem", // windows
48+
// Note: If your root CA certificates are in an unusual location you
49+
// may need to specify this using the SslCaLocation property.
5850
SaslUsername = "<ccloud key>",
5951
SaslPassword = "<ccloud secret>"
6052
};
@@ -78,8 +70,6 @@ static void Main(string[] args)
7870
ApiVersionFallbackMs = 0,
7971
SaslMechanism = SaslMechanism.Plain,
8072
SecurityProtocol = SecurityProtocol.SaslSsl,
81-
SslCaLocation = "/usr/local/etc/openssl/cert.pem", // suitable configuration for linux, osx.
82-
// SslCaLocation = "c:\\path\\to\\cacert.pem", // windows
8373
SaslUsername = "<confluent cloud key>",
8474
SaslPassword = "<confluent cloud secret>",
8575
GroupId = Guid.NewGuid().ToString(),

examples/Consumer/Consumer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="1.0.1.1" /> -->
11+
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="1.1.0" /> -->
1212
<ProjectReference Include="../../src/Confluent.Kafka/Confluent.Kafka.csproj" />
1313
</ItemGroup>
1414

examples/MultiProducer/MultiProducer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="1.0.1.1" /> -->
11+
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="1.1.0" /> -->
1212
<ProjectReference Include="../../src/Confluent.Kafka/Confluent.Kafka.csproj" />
1313
</ItemGroup>
1414

0 commit comments

Comments
 (0)