Skip to content

Commit

Permalink
feat: bump up minimal supported version of Confluent.Kafka to 2.2.0 (#27
Browse files Browse the repository at this point in the history
)

* Bump Microsoft.NET.Test.Sdk from 17.6.0 to 17.6.3

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.6.0 to 17.6.3.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.6.0...v17.6.3)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump xunit from 2.4.2 to 2.5.0

Bumps [xunit](https://github.com/xunit/xunit) from 2.4.2 to 2.5.0.
- [Commits](xunit/xunit@2.4.2...2.5.0)

---
updated-dependencies:
- dependency-name: xunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump xunit.runner.visualstudio from 2.4.5 to 2.5.0

Bumps [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) from 2.4.5 to 2.5.0.
- [Release notes](https://github.com/xunit/visualstudio.xunit/releases)
- [Commits](xunit/visualstudio.xunit@v2.4.5...2.5.0)

---
updated-dependencies:
- dependency-name: xunit.runner.visualstudio
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Confluent.Kafka from 2.0.2 to 2.2.0

Bumps [Confluent.Kafka](https://github.com/confluentinc/confluent-kafka-dotnet) from 2.0.2 to 2.2.0.
- [Release notes](https://github.com/confluentinc/confluent-kafka-dotnet/releases)
- [Changelog](https://github.com/confluentinc/confluent-kafka-dotnet/blob/master/CHANGELOG.md)
- [Commits](confluentinc/confluent-kafka-dotnet@v2.0.2...v2.2.0)

---
updated-dependencies:
- dependency-name: Confluent.Kafka
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* chore: bump up minimal Confluent.Kafka version to 2.2.0

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
vhatsura and dependabot[bot] authored Jul 27, 2023
1 parent 660fa23 commit e8fa90c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Confluent.Kafka" Version="[1.8.2, 3.0.0)"/>
<PackageReference Include="Confluent.Kafka" Version="[2.2.0, 3.0.0)"/>
<PackageReference Include="GitVersion.MsBuild" Version="5.12.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ public InstrumentedProducer(IProducer<TKey, TValue> producer)

public int AddBrokers(string brokers) => _producerImplementation.AddBrokers(brokers);

public void SetSaslCredentials(string username, string password)
{
_producerImplementation.SetSaslCredentials(username, password);
}

public Handle Handle => _producerImplementation.Handle;

public string Name => _producerImplementation.Name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Confluent.Kafka" Version="2.0.2"/>
<PackageReference Include="Confluent.Kafka" Version="2.2.0"/>
<PackageReference Include="FluentAssertions" Version="6.11.0"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.3"/>
<PackageReference Include="Snapshooter.Xunit" Version="0.13.0"/>
<PackageReference Include="TestEnvironment.Docker.Containers.Kafka" Version="2.1.4"/>
<PackageReference Include="xunit" Version="2.4.2"/>
<PackageReference Include="xunit" Version="2.5.0"/>
<PackageReference Include="Xunit.Extensions.AssemblyFixture" Version="2.4.1"/>
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down

0 comments on commit e8fa90c

Please sign in to comment.