Skip to content

Commit

Permalink
Bump Confluent clients to 2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dstelljes committed Nov 18, 2024
1 parent 4f54702 commit 3d4caaa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Chr.Avro.Confluent/Chr.Avro.Confluent.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Confluent.Kafka" Version="[2.5.0,2.6)" />
<PackageReference Include="Confluent.SchemaRegistry" Version="[2.5.0,2.6)" />
<PackageReference Include="Confluent.Kafka" Version="[2.6.0,2.7)" />
<PackageReference Include="Confluent.SchemaRegistry" Version="[2.6.0,2.7)" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public async Task BuildsDeserializerWithSchemaSubjectAndVersion()
var subject = "test-subject";
var version = 4;

registryMock.Setup(r => r.GetRegisteredSchemaAsync(subject, version))
registryMock.Setup(r => r.GetRegisteredSchemaAsync(subject, version, true))
.ReturnsAsync(new RegisteredSchema(subject, version, id, json, SchemaType.Avro, null))
.Verifiable();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public async Task BuildsSerializerWithSchemaSubjectAndVersion()
var subject = "test-subject";
var version = 4;

registryMock.Setup(r => r.GetRegisteredSchemaAsync(subject, version))
registryMock.Setup(r => r.GetRegisteredSchemaAsync(subject, version, true))
.ReturnsAsync(new RegisteredSchema(subject, version, id, json, SchemaType.Avro, null))
.Verifiable();

Expand Down

0 comments on commit 3d4caaa

Please sign in to comment.