Skip to content

chore(deps): update nuget packages#181

Merged
Pettor merged 2 commits intomainfrom
renovate/nuget-packages
Apr 23, 2026
Merged

chore(deps): update nuget packages#181
Pettor merged 2 commits intomainfrom
renovate/nuget-packages

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jul 6, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
Ardalis.Specification 9.2.09.3.1 age confidence
Ardalis.Specification.EntityFrameworkCore 9.2.09.3.1 age confidence
Finbuckle.MultiTenant.AspNetCore (source) 9.2.110.0.6 age confidence
Finbuckle.MultiTenant.EntityFrameworkCore (source) 9.2.110.0.6 age confidence
FluentAssertions (source) 8.4.08.9.0 age confidence
FluentValidation (source) 12.0.012.1.1 age confidence
FluentValidation.DependencyInjectionExtensions (source) 12.0.012.1.1 age confidence
Hangfire (source) 1.8.201.8.23 age confidence
Hangfire.Console.Extensions 2.0.02.1.0 age confidence
Hangfire.Console.Extensions.Serilog 2.0.02.1.0 age confidence
Hangfire.PostgreSql (source) 1.20.121.21.1 age confidence
Mapster 7.4.010.0.7 age confidence
Microsoft.AspNetCore.Authentication.JwtBearer (source) 9.0.610.0.7 age confidence
Microsoft.AspNetCore.Components.Authorization (source) 9.0.610.0.7 age confidence
Microsoft.AspNetCore.Identity (source) 2.3.12.3.9 age confidence
Microsoft.AspNetCore.Mvc.NewtonsoftJson (source) 9.0.610.0.7 age confidence
Microsoft.AspNetCore.SignalR (source) 1.2.01.2.9 age confidence
Microsoft.AspNetCore.SignalR.StackExchangeRedis (source) 9.0.610.0.7 age confidence
Microsoft.EntityFrameworkCore.Design (source) 9.0.610.0.7 age confidence
Microsoft.EntityFrameworkCore.SqlServer (source) 9.0.610.0.7 age confidence
Microsoft.EntityFrameworkCore.Tools (source) 9.0.610.0.7 age confidence
Microsoft.Extensions.Caching.Abstractions (source) 9.0.610.0.7 age confidence
Microsoft.Extensions.Caching.StackExchangeRedis (source) 9.0.610.0.7 age confidence
Microsoft.Extensions.DependencyInjection.Abstractions (source) 9.0.610.0.7 age confidence
Microsoft.Extensions.Diagnostics.HealthChecks (source) 9.0.610.0.7 age confidence
Microsoft.Extensions.Hosting.Abstractions (source) 9.0.610.0.7 age confidence
Microsoft.Extensions.Localization (source) 9.0.610.0.7 age confidence
Microsoft.Identity.Web 3.10.04.8.0 age confidence
Microsoft.NET.Test.Sdk 17.14.118.4.0 age confidence
NSwag.AspNetCore (source) 14.4.014.7.1 age confidence
Npgsql.EntityFrameworkCore.PostgreSQL 9.0.410.0.1 age confidence
RazorEngineCore 2024.4.12026.1.1 age confidence
Roslynator.Analyzers 4.13.14.15.0 age confidence
Serilog.AspNetCore 9.0.010.0.0 age confidence
Serilog.Extensions.Hosting 9.0.010.0.0 age confidence
Serilog.Settings.Configuration 9.0.010.0.0 age confidence
Serilog.Sinks.Console 6.0.06.1.1 age confidence
Serilog.Sinks.MSSqlServer 8.2.19.0.3 age confidence
System.Linq.Dynamic.Core (source) 1.6.61.7.2 age confidence
Xunit.Microsoft.DependencyInjection (source) 9.0.510.0.4 age confidence
coverlet.collector 6.0.410.0.0 age confidence
csharpier 1.0.31.2.6 age confidence
husky 0.7.20.9.1 age confidence
xunit.runner.visualstudio 3.1.13.1.5 age confidence

Release Notes

ardalis/specification (Ardalis.Specification)

v9.3.1

What's Changed

Full Changelog: ardalis/Specification@v9.3.0...v9.3.1

v9.3.0

What's Changed

Full Changelog: ardalis/Specification@v9.2.0...v9.3.0

Finbuckle/Finbuckle.MultiTenant (Finbuckle.MultiTenant.AspNetCore)

v10.0.6

Bug Fixes

v10.0.5

Bug Fixes

v10.0.4

Bug Fixes
  • Bump Microsoft.AspNetCore.Authentication.OpenIdConnect and 15 others (#​1104) (bcaf705)

v10.0.3

Bug Fixes

v10.0.2

Bug Fixes

v10.0.1

Bug Fixes

v10.0.0

⚠ BREAKING CHANGES
  • In prior versions user provided generic types to the MultiTenantIdentityDbContext family of classes were not mult-tenant by default. This was confusing and to simplify all are now multi-tenant by default.
  • The RouteStrategy will include the tenant in the ambient route values used for link generation, similar to Controller and Action. Can be disabled via the WithRouteStrategy overload taking a boolean for useTenantAmbientRouteValue set to false.
  • General improvements in folder structure to reduce overnesting has caused namespace changes for certain types. Namely some stores and options types.
  • BasePathStrategy default behavior is changed to rebase the aspnetcore path base. This was opt in before. Can be set via BasePathStrategyOptions.
  • This was opt in before. Can be set via BasePathStrategyOptions.
  • Namespaces were standardized to match folder locations.
  • Making TenantInfo a record reduces risk of unintended changes to the current tenant. This change also removes ITenantInfo and TenantInfo should be used as the base for custom implementations. Note that EFCoreStore uses this record as an entity but takes care not to rely on tracking.
  • prior extension namespaces were inconsistent, now they are all {PackageName}.Extensions, e.g. Finbuckle.MultiTenant.Options.Extensions
  • Per-tenant options support was previously part of the Finbuckle.MultiTenant package. Projects will need to reference the Finbuckle.MultiTenant.Options package going forward.
  • Minor changes to the IMultiTenantStore interface signatures.
  • Removes the 64 character limit on Tenant ID. This also removes the max length constraint where Tenant ID is used in EF Core if applicable.
  • IMultiTenantContext and its implementations are now immutable. Changes will require assigning a new instance.
  • Prior to this change anonymous filters were used and required special consideration in advanced scenarios. The change to named filters removes these considerations, but named filters cannot be mixed with anonymous filters.
  • net8 and net9 targets were removed
  • This change better isolates dependencies. Basic interfaces and types are now in the Finbuckle.MultiTenant.Abstractions package and MultiTenantIdentityDbContext functionality is now in the Finbuckle.MultiTenant.Identity.EntityFrameworkCore package.
Features
  • add IsNotMultiTenant method to exclude entities from multi-tenancy in EF Core per-tenant data functionality. (b160826)
  • add Identity passkey multi-tenant support (7f0bf73)
  • add MultiTenantAmbientValueLinkGenerator to promote tenant route values (#​1041) (259511c)
  • all projects target net10 (#​1007) (1f02e8f)
  • BasePathStrategy will rebase the aspnetcore path base by default (bd7f0d0)
  • BasePathStrategy will rebase the aspnetcore path base by default (d107d81)
  • expose many internal types as public and adjust namespaces (#​1030) (f680843)
  • Identity entity types are all multi-tenant by default on MultiTenantIdentityDbContext variants. (4e1bd9f)
  • immutable IMultiTenantContext (#​1018) (03ddeb0)
  • improve folder structure (#​1040) (d46ce8c)
  • improved depedency structure with Finbuckle.MultiTenant.Abstractions and Finbuckle.MultiTenant.Identity.EntityFrameworkCore (#​1006) (e191d83)
  • improved store interface (#​1020) (c6a16c4)
  • improved xml comments (#​1038) (fdd59b9)
  • improved xml comments (#​1038) (8ee6597)
  • namespaces for extension methods changed (#​1026) (318fcec)
  • refactors per-tenant options into Finbuckle.MultiTenant.Options package (#​1024) (ca4877f)
  • removed max char length on TenantInfo (#​1019) (37bb15b)
  • TenantInfo is now a record and ITenantInfo is removed (#​1029) (21559da)
  • use named global query filters in EF Core (#​1016) (c3ac833)
Bug Fixes
Performance Improvements
Reverts
  • Revert "feat: BasePathStrategy will rebase the aspnetcore path base by default" (0a154e1)
  • Revert "feat: improved xml comments (#​1038)" (#​1039) (b036339)
  • Revert "feat: refactors per-tenant options into Finbuckle.MultiTenant.Options package (#​1024)" (0db79eb)

v9.4.8

Bug Fixes

v9.4.7

Bug Fixes

v9.4.6

Bug Fixes

v9.4.5

Bug Fixes

v9.4.4

Bug Fixes
  • delegate strategy correctly resolves at runtime with derived types (#​1057) (fb2a333)

v9.4.3

Bug Fixes

v9.4.2

Bug Fixes

v9.4.1

Bug Fixes

v9.4.0

Features

v9.3.1

Bug Fixes

v9.3.0

Features
  • Add a RedirectTo Uri to ShortCircuitWhenOptions, enabling the middleware to redirect the user when short circuiting. (64ad8e2)
  • Add ExcludeFromMultiTenantResolution() and ExcludeFromMultiTenantResolutionAttribute for endpoints. (5cd9d3c)
  • Add ShortCircuitWhen(Action options) and ShortCircuitWhenTenantNotResolved() (709b0de)
Bug Fixes
  • support decorated multiple registered services of same type and fix activator bugs for instance and factory based services (#​994) (0d1b68c)
  • update dependencies (#​995) (0e0440a)

v9.2.2

Bug Fixes
fluentassertions/fluentassertions (FluentAssertions)

v8.9.0

Compare Source

What's Changed

New features
Improvements
Fixes
Documentation
Others

New Contributors

Full Changelog: fluentassertions/fluentassertions@8.8.0...8.9.0

v8.8.0

Compare Source

What's Changed

New features
Improvements
Documentation
Others

Full Changelog: fluentassertions/fluentassertions@8.7.1...8.8.0

v8.7.1

Compare Source

What's Changed

Others

Full Changelog: fluentassertions/fluentassertions@8.7.0...8.7.1

v8.7.0

Compare Source

What's Changed

New features
Others

Full Changelog: fluentassertions/fluentassertions@8.6.0...8.7.0

v8.6.0

Compare Source

What's Changed

Improvements
Others

New Contributors

Full Changelog: fluentassertions/fluentassertions@8.5.0...8.6.0

v8.5.0

[Compare Source](https://re

@renovate renovate Bot added bot Created by bot dependency Update dependencies labels Jul 6, 2025
@renovate renovate Bot force-pushed the renovate/nuget-packages branch from 552ac6c to f9a539c Compare July 8, 2025 23:12
@renovate renovate Bot changed the title chore(deps): update dependency xunit.microsoft.dependencyinjection to 9.0.6 chore(deps): update nuget packages Jul 8, 2025
@renovate renovate Bot changed the title chore(deps): update nuget packages chore(deps): update nuget packages to 9.0.7 Jul 9, 2025
@renovate renovate Bot force-pushed the renovate/nuget-packages branch from f9a539c to 9895a9b Compare July 10, 2025 03:02
@renovate renovate Bot changed the title chore(deps): update nuget packages to 9.0.7 chore(deps): update nuget packages Jul 10, 2025
@renovate renovate Bot force-pushed the renovate/nuget-packages branch 5 times, most recently from 678bb87 to ee5e533 Compare July 16, 2025 22:25
@renovate renovate Bot force-pushed the renovate/nuget-packages branch 2 times, most recently from a65a638 to 7897453 Compare July 21, 2025 18:58
@renovate renovate Bot force-pushed the renovate/nuget-packages branch 3 times, most recently from 858b7eb to 7d6b0d6 Compare July 30, 2025 21:58
@renovate renovate Bot force-pushed the renovate/nuget-packages branch 8 times, most recently from 11dbb54 to 6bd2f87 Compare August 9, 2025 20:31
@renovate renovate Bot force-pushed the renovate/nuget-packages branch 4 times, most recently from abe5c1a to f8e1d17 Compare August 16, 2025 04:34
@renovate renovate Bot force-pushed the renovate/nuget-packages branch 2 times, most recently from 7a6d045 to addc2d0 Compare September 18, 2025 21:35
@renovate renovate Bot force-pushed the renovate/nuget-packages branch 6 times, most recently from 64685ba to a985fc5 Compare October 1, 2025 00:34
@renovate renovate Bot force-pushed the renovate/nuget-packages branch 2 times, most recently from 6f322dd to 9c6b54d Compare October 5, 2025 20:57
@renovate renovate Bot force-pushed the renovate/nuget-packages branch 7 times, most recently from 2f85a03 to 0dbd52f Compare October 16, 2025 04:29
@renovate renovate Bot force-pushed the renovate/nuget-packages branch 6 times, most recently from 9d1156f to e959f31 Compare October 23, 2025 06:16
@renovate renovate Bot force-pushed the renovate/nuget-packages branch 4 times, most recently from 1ff4575 to 93f9c3b Compare November 2, 2025 22:34
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Apr 23, 2026

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bot Created by bot dependency Update dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant