Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 5, 2026

Updated Asp.Versioning.Mvc.ApiExplorer from 8.1.0 to 8.1.1.

Release notes

Sourced from Asp.Versioning.Mvc.ApiExplorer's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Hangfire.PostgreSql from 1.20.12 to 1.20.13.

Release notes

Sourced from Hangfire.PostgreSql's releases.

1.20.13

What's Changed

New Contributors

Full Changelog: hangfire-postgres/Hangfire.PostgreSql@1.20.12...1.20.13

Commits viewable in compare view.

Updated Microsoft.AspNetCore.Authentication.Google from 9.0.10 to 9.0.11.

Release notes

Sourced from Microsoft.AspNetCore.Authentication.Google's releases.

9.0.11

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v9.0.10...v9.0.11

Commits viewable in compare view.

Updated Microsoft.AspNetCore.Authentication.Twitter from 9.0.10 to 9.0.11.

Release notes

Sourced from Microsoft.AspNetCore.Authentication.Twitter's releases.

9.0.11

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v9.0.10...v9.0.11

Commits viewable in compare view.

Updated Microsoft.AspNetCore.DataProtection.EntityFrameworkCore from 9.0.10 to 9.0.11.

Release notes

Sourced from Microsoft.AspNetCore.DataProtection.EntityFrameworkCore's releases.

9.0.11

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v9.0.10...v9.0.11

Commits viewable in compare view.

Updated Microsoft.AspNetCore.Mvc.Testing from 9.0.10 to 9.0.11.

Release notes

Sourced from Microsoft.AspNetCore.Mvc.Testing's releases.

9.0.11

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v9.0.10...v9.0.11

Commits viewable in compare view.

Updated Microsoft.AspNetCore.SignalR.StackExchangeRedis from 9.0.10 to 9.0.11.

Release notes

Sourced from Microsoft.AspNetCore.SignalR.StackExchangeRedis's releases.

9.0.11

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v9.0.10...v9.0.11

Commits viewable in compare view.

Updated Microsoft.EntityFrameworkCore.Design from 9.0.10 to 9.0.11.

Release notes

Sourced from Microsoft.EntityFrameworkCore.Design's releases.

9.0.11

Release

What's Changed

Full Changelog: dotnet/efcore@v9.0.10...v9.0.11

Commits viewable in compare view.

Updated Microsoft.EntityFrameworkCore.Tools from 9.0.10 to 9.0.11.

Release notes

Sourced from Microsoft.EntityFrameworkCore.Tools's releases.

9.0.11

Release

What's Changed

Full Changelog: dotnet/efcore@v9.0.10...v9.0.11

Commits viewable in compare view.

Updated Microsoft.Extensions.Caching.Hybrid from 9.10.0 to 10.1.0.

Release notes

Sourced from Microsoft.Extensions.Caching.Hybrid's releases.

10.1.0

What's Changed

10.0.0

What's Changed

Commits viewable in compare view.

Updated Scalar.AspNetCore from 2.11.0 to 2.11.10.

Release notes

Sourced from Scalar.AspNetCore's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Serilog.AspNetCore from 9.0.0 to 10.0.0.

Release notes

Sourced from Serilog.AspNetCore's releases.

10.0.0

What's Changed

New Contributors

Full Changelog: serilog/serilog-aspnetcore@v9.0.0...v10.0.0

Commits viewable in compare view.

Updated Serilog.Sinks.Grafana.Loki from 8.3.1 to 8.3.2.

Release notes

Sourced from Serilog.Sinks.Grafana.Loki's releases.

8.3.2

Fixed:

Commits viewable in compare view.

Updated Swashbuckle.AspNetCore.SwaggerGen from 9.0.6 to 10.1.0.

Release notes

Sourced from Swashbuckle.AspNetCore.SwaggerGen's releases.

10.1.0

What's Changed

New Features

Bug Fixes

Miscellaneous

New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.0.1...v10.1.0

10.0.1

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.0.0...v10.0.1

10.0.0

Swashbuckle.AspNetCore v10.0.0

[!IMPORTANT]
This release contains major breaking changes.

Read our v10 migration guide for further information.

With this release, Swashbuckle.AspNetCore adds support for generating OpenAPI 3.1 documents and for ASP.NET Core 10.

Swashbuckle.AspNetCore v10 depends on OpenAPI.NET v2.3 which introduces many breaking changes to the public API surface. More information can be found in their OpenAPI.NET v2 Upgrade Guide.

To reduce the number of breaking behavioural changes in Swashbuckle.AspNetCore v10, generation of OpenAPI 3.1 documents is opt-in.
To generate OpenAPI 3.1 documents, change the OpenAPI version as shown in the code snippet below:

app.UseSwagger(options =>
{
    options.OpenApiVersion = OpenApiSpecVersion.OpenApi3_1;
});

[!TIP]
It is strongly recommended that you upgrade to Swashbuckle.AspNetCore v9.0.6 before upgrading to v10.

[!IMPORTANT]
Use of Swashbuckle.AspNetCore with the ASP.NET Core WithOpenApi() method is no longer supported.

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.6...v10.0.0

Commits viewable in compare view.

Updated Testcontainers.PostgreSql from 4.9.0 to 4.10.0.

Release notes

Sourced from Testcontainers.PostgreSql's releases.

4.10.0

What's Changed

Happy New Year, everyone! 🎉

Please note that going forward, we expect developers to explicitly pin the image version (testcontainers/testcontainers-dotnet#1470). We consider this a best practice and it aligns with other language implementations.

Also, due to the recent Docker Engine v29 release, TC for .NET pins the Docker Engine API version to 1.44 (see the previous release notes). You can override this default and set it to the version you're using, ideally 1.52, which corresponds to v29, if you're already running it.

⚠️ Breaking Changes

  • feat: Add Docker Engine v29 support (#​1609) @​HofmeisterAn
  • chore: Remove EventStoreDb module (#​1599) @​HofmeisterAn

🚀 Features

  • feat: Require explicit container image in Testcontainers.Xunit (#​1612) @​0xced
  • feat: Add Platform property to IImage interface (#​1610) @​HofmeisterAn
  • feat: Add Docker Engine v29 support (#​1609) @​HofmeisterAn
  • feat: Require explicit container image when creating container builder (#​1584) @​digital88
  • feat: Add connection string provider (#​1588) @​HofmeisterAn

🐛 Bug Fixes

  • fix(Kafka): Bump image version to prevent container crash on startup (#​1604) @​HofmeisterAn
  • fix(Elasticsearch): Use HTTP wait strategy (#​1593) @​digital88
  • fix(Milvus): Use healthcheck wait strategy (#​1585) @​verdie-g

📖 Documentation

  • docs: Pin the image version explicitly (#​1605) @​HofmeisterAn

🧹 Housekeeping

  • chore: Remove Sonar findings (#​1611) @​HofmeisterAn
  • chore: Pin Docker Engine API for GH workflow to 1.47 (#​1608) @​HofmeisterAn
  • chore: Set remaining container image explicit (#​1606) @​digital88
  • fix(Kafka): Bump image version to prevent container crash on startup (#​1604) @​HofmeisterAn
  • chore: Remove EventStoreDb test project from SLNX file (#​1603) @​0xced
  • chore: Skip unnecessary work for empty or null sequences (#​1601) @​HofmeisterAn
  • chore: Delegate container builder ctor string to IImage (#​1600) @​HofmeisterAn
  • chore: Remove EventStoreDb module (#​1599) @​HofmeisterAn
  • feat: Prepare next release cycle (4.10.0) (#​1586) @​HofmeisterAn

Commits viewable in compare view.

Updated Testcontainers.Redis from 4.9.0 to 4.10.0.

Release notes

Sourced from Testcontainers.Redis's releases.

4.10.0

What's Changed

Happy New Year, everyone! 🎉

Please note that going forward, we expect developers to explicitly pin the image version (testcontainers/testcontainers-dotnet#1470). We consider this a best practice and it aligns with other language implementations.

Also, due to the recent Docker Engine v29 release, TC for .NET pins the Docker Engine API version to 1.44 (see the previous release notes). You can override this default and set it to the version you're using, ideally 1.52, which corresponds to v29, if you're already running it.

⚠️ Breaking Changes

  • feat: Add Docker Engine v29 support (#​1609) @​HofmeisterAn
  • chore: Remove EventStoreDb module (#​1599) @​HofmeisterAn

🚀 Features

  • feat: Require explicit container image in Testcontainers.Xunit (#​1612) @​0xced
  • feat: Add Platform property to IImage interface (#​1610) @​HofmeisterAn
  • feat: Add Docker Engine v29 support (#​1609) @​HofmeisterAn
  • feat: Require explicit container image when creating container builder (#​1584) @​digital88
  • feat: Add connection string provider (#​1588) @​HofmeisterAn

🐛 Bug Fixes

  • fix(Kafka): Bump image version to prevent container crash on startup (#​1604) @​HofmeisterAn
  • fix(Elasticsearch): Use HTTP wait strategy (#​1593) @​digital88
  • fix(Milvus): Use healthcheck wait strategy (#​1585) @​verdie-g

📖 Documentation

  • docs: Pin the image version explicitly (#​1605) @​HofmeisterAn

🧹 Housekeeping

  • chore: Remove Sonar findings (#​1611) @​HofmeisterAn
  • chore: Pin Docker Engine API for GH workflow to 1.47 (#​1608) @​HofmeisterAn
  • chore: Set remaining container image explicit (#​1606) @​digital88
  • fix(Kafka): Bump image version to prevent container crash on startup (#​1604) @​HofmeisterAn
  • chore: Remove EventStoreDb test project from SLNX file (#​1603) @​0xced
  • chore: Skip unnecessary work for empty or null sequences (#​1601) @​HofmeisterAn
  • chore: Delegate container builder ctor string to IImage (#​1600) @​HofmeisterAn
  • chore: Remove EventStoreDb module (#​1599) @​HofmeisterAn
  • feat: Prepare next release cycle (4.10.0) (#​1586) @​HofmeisterAn

Commits viewable in compare view.

Updated TUnit from 1.3.15 to 1.9.2.

Release notes

Sourced from TUnit's releases.

1.9.2

What's Changed

Other Changes

Full Changelog: thomhurst/TUnit@v1.9.0...v1.9.2

1.9.0

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.8.9...v1.9.0

1.8.9

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.8.1...v1.8.9

1.8.1

What's Changed

Other Changes

Full Changelog: thomhurst/TUnit@v1.8.0...v1.8.1

1.8.0

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.7.20...v1.8.0

1.7.20

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.7.16...v1.7.20

1.7.16

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.7.7...v1.7.16

1.7.7

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.7.5...v1.7.7

1.7.5

What's Changed

Other Changes

Full Changelog: thomhurst/TUnit@v1.7.0...v1.7.5

1.7.0

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.6.28...v1.7.0

1.6.28

What's Changed

Other Changes

Full Changelog: thomhurst/TUnit@v1.6.27...v1.6.28

1.6.27

What's Changed

Other Changes

Full Changelog: thomhurst/TUnit@v1.6.25...v1.6.27

1.6.25

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.6.20...v1.6.25

1.6.20

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.6.15...v1.6.20

1.6.15

What's Changed

Other Changes

Dependencies

New Contributors

Full Changelog: thomhurst/TUnit@v1.6.5...v1.6.15

1.6.5

What's Changed

Dependencies

Full Changelog: thomhurst/TUnit@v1.6.0...v1.6.5

1.6.0

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.5.80...v1.6.0

1.5.80

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.5.78...v1.5.80

1.5.70

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.5.60...v1.5.70

1.5.60

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.5.53...v1.5.60

1.5.53

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.5.48...v1.5.53

1.5.48

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.5.42...v1.5.48

1.5.42

What's Changed

🏕 Changes

Full Changelog: thomhurst/TUnit@v1.5.41...v1.5.42

1.5.41

What's Changed

🏕 Changes

Full Changelog: thomhurst/TUnit@v1.5.37...v1.5.41

1.5.37

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v1.5.35...v1.5.37

1.5.35

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v1.5.33...v1.5.35

1.5.33

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v1.5.6...v1.5.33

1.5.6

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v1.5.1...v1.5.6

1.5.1

What's Changed

🏕 Changes

Full Changelog: thomhurst/TUnit@v1.5.0...v1.5.1

1.5.0

What's Changed

🏕 Changes

Full Changelog: thomhurst/TUnit@v1.4.8...v1.5.0

1.4.8

What's Changed

🏕 Changes

Full Changelog: thomhurst/TUnit@v1.4.7...v1.4.8

1.4.7

What's Changed

🏕 Changes

New Contributors

Full Changelog: thomhurst/TUnit@v1.4.5...v1.4.7

1.4.5

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v1.4.0...v1.4.5

1.4.0

What's Changed

🏕 Changes

👒 Dependencies

New...

_Description has been t...

Description has been truncated

Bumps Asp.Versioning.Mvc.ApiExplorer from 8.1.0 to 8.1.1
Bumps Hangfire.PostgreSql from 1.20.12 to 1.20.13
Bumps Microsoft.AspNetCore.Authentication.Google from 9.0.10 to 9.0.11
Bumps Microsoft.AspNetCore.Authentication.Twitter from 9.0.10 to 9.0.11
Bumps Microsoft.AspNetCore.DataProtection.EntityFrameworkCore from 9.0.10 to 9.0.11
Bumps Microsoft.AspNetCore.Mvc.Testing from 9.0.10 to 9.0.11
Bumps Microsoft.AspNetCore.SignalR.StackExchangeRedis from 9.0.10 to 9.0.11
Bumps Microsoft.EntityFrameworkCore.Design from 9.0.10 to 9.0.11
Bumps Microsoft.EntityFrameworkCore.Tools from 9.0.10 to 9.0.11
Bumps Microsoft.Extensions.Caching.Hybrid from 9.10.0 to 10.1.0
Bumps Scalar.AspNetCore from 2.11.0 to 2.11.10
Bumps Serilog.AspNetCore from 9.0.0 to 10.0.0
Bumps Serilog.Sinks.Grafana.Loki from 8.3.1 to 8.3.2
Bumps Swashbuckle.AspNetCore.SwaggerGen from 9.0.6 to 10.1.0
Bumps Testcontainers.PostgreSql from 4.9.0 to 4.10.0
Bumps Testcontainers.Redis from 4.9.0 to 4.10.0
Bumps TUnit from 1.3.15 to 1.9.2
Bumps Z.EntityFramework.Plus.EFCore from 9.104.0.1 to 9.105.2

---
updated-dependencies:
- dependency-name: Asp.Versioning.Mvc.ApiExplorer
  dependency-version: 8.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Hangfire.PostgreSql
  dependency-version: 1.20.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.AspNetCore.Authentication.Google
  dependency-version: 9.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.AspNetCore.Authentication.Twitter
  dependency-version: 9.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.AspNetCore.DataProtection.EntityFrameworkCore
  dependency-version: 9.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.AspNetCore.Mvc.Testing
  dependency-version: 9.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.AspNetCore.SignalR.StackExchangeRedis
  dependency-version: 9.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.EntityFrameworkCore.Design
  dependency-version: 9.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.EntityFrameworkCore.Tools
  dependency-version: 9.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.Extensions.Caching.Hybrid
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: Scalar.AspNetCore
  dependency-version: 2.11.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Serilog.AspNetCore
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: Serilog.Sinks.Grafana.Loki
  dependency-version: 8.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Swashbuckle.AspNetCore.SwaggerGen
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: Testcontainers.PostgreSql
  dependency-version: 4.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: Testcontainers.Redis
  dependency-version: 4.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: TUnit
  dependency-version: 1.9.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: Z.EntityFramework.Plus.EFCore
  dependency-version: 9.105.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Jan 5, 2026
@hhvrc hhvrc merged commit 8986b29 into develop Jan 5, 2026
20 checks passed
@hhvrc hhvrc deleted the dependabot/nuget/nuget-dependencies-6bbde27f78 branch January 5, 2026 07:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants