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 07c914e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
- name: Use Python
uses: actions/setup-python@v5
with:
python-version: 3.12.x
python-version: 3.13.x
- name: Install dependencies
run: pip install mkdocs=='1.6.0' mkdocs-material=='9.5.22'
run: pip install mkdocs=='1.6.1' mkdocs-material=='9.5.44'
- name: Build site
run: mkdocs build --site-dir "$RUNNER_TEMP/site"
- name: Set up GitHub Pages
Expand Down
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 07c914e

Please sign in to comment.