deps(c#): Update c##138
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/c
branch
from
February 25, 2026 16:12
ff7572e to
96e0a27
Compare
renovate
Bot
force-pushed
the
renovate/c
branch
5 times, most recently
from
March 4, 2026 10:36
60a803b to
7f8b994
Compare
renovate
Bot
force-pushed
the
renovate/c
branch
5 times, most recently
from
March 8, 2026 21:04
0955784 to
de6003c
Compare
renovate
Bot
force-pushed
the
renovate/c
branch
11 times, most recently
from
March 16, 2026 02:07
df54fda to
e1ba54c
Compare
renovate
Bot
force-pushed
the
renovate/c
branch
4 times, most recently
from
March 17, 2026 20:45
d8efb36 to
15eb79f
Compare
renovate
Bot
force-pushed
the
renovate/c
branch
7 times, most recently
from
April 2, 2026 15:34
1b75880 to
4411e89
Compare
renovate
Bot
force-pushed
the
renovate/c
branch
9 times, most recently
from
April 15, 2026 04:34
450fd41 to
7f55b85
Compare
renovate
Bot
force-pushed
the
renovate/c
branch
6 times, most recently
from
April 22, 2026 22:34
7a98332 to
ca85ea6
Compare
renovate
Bot
force-pushed
the
renovate/c
branch
6 times, most recently
from
April 30, 2026 06:18
c39a636 to
9ece8f1
Compare
Contributor
Author
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
9.0.0→9.3.110.0.0→11.0.28.4.0→8.4.22.1.66→2.1.793.33.5→3.35.13.0.1→3.0.103.0.15→3.0.12510.0.103→10.0.3029.0.13→9.0.1810.0.3→10.0.1010.0.3→10.0.1010.0.3→10.0.1017.14.15→18.7.236.1.1→6.1.44.13.0.20260222→4.13.0.202606274.13.0.20260222→4.13.0.202606273.1.0.54→3.3.1.703.0.1→3.3.13.0.1→3.3.11.31.1→1.33.33.1.12→4.0.010.19.0.132793→10.30.0.14463210.0.3→10.0.1010.0.3→10.0.109.0.311→9.0.3169.2.0→9.5.0Release Notes
autofac/Autofac (Autofac)
v9.3.1What's Changed
Fix per-resolve closure allocation in resolve pipeline (#1493) by @tillig in #1494
Full Changelog: autofac/Autofac@v9.3.0...v9.3.1
v9.3.0What's Changed
Full Changelog: autofac/Autofac@v9.2.0...v9.3.0
v9.2.0What's Changed
IStartablethrows during Build (#1392) by @tillig in #1485ExternallyOwnedownership for decorators (#1402) by @tillig in #1486Moduleregistry events when hooks are overridden (#1446) by @tillig in #1487GetRegistrationIdextension to expose a registration's unique ID (#1327) by @tillig in #1490Full Changelog: autofac/Autofac@v9.1.0...v9.2.0
v9.1.0This is a pretty big release for Autofac with some major new functionality!
AnyKey Support
First, Autofac now natively supports the concept of
AnyKey. It behaves the same wayAnyKeyworks in Microsoft.Extensions.DependencyInjection, but it is native to Autofac directly. The unit tests here show some very detailed examples of usage, but on a high level:Inject Service Key Into Constructors
The new
[ServiceKey]attribute allows you to inject the service key provided during resolution. This is handy in conjunction withAnyKey. Again, this is similar to the construct in Microsoft.Extensions.DependencyInjection, but with native Autofac.First, mark up your class to take the constructor parameter.
Then when you resolve the class, the service key will automatically be injected.
You can also make use of this in a lambda registration.
Metrics
Some metrics have been introduced that can allow you to capture counters on how long middleware is taking, how often lock contention occurs, and so on.
Set the
AUTOFAC_METRICSenvironment variable in your process totrueor1to enable this feature. You can see the set of counters that will become available here.General Performance Improvements
A pass over the whole system was made with an eye to trying to claw back some performance. Some additional caching was introduced to help reduce lookups and calculations of reflection data; and a few hot-path optimizations were made for the common situations.
Full Changelog: autofac/Autofac@v9.0.0...v9.1.0
autofac/Autofac.Extensions.DependencyInjection (Autofac.Extensions.DependencyInjection)
v11.0.2Updated Autofac reference to 9.3.1.
v11.0.1What's Changed
Autofacfrom9.1.0to9.2.0.Microsoft.Extensions.DependencyInjection.Abstractionsfrom10.0.4to10.0.9.v11.0.0Breaking Changes
AnyKeysupport to use the new native support forAnyKeyin core Autofac - this removes some of the custom internals used to support keyed services and moves that to core Autofac.Other Changes
Full Changelog: autofac/Autofac.Extensions.DependencyInjection@v10.0.0...v11.0.0
CommunityToolkit/dotnet (CommunityToolkit.Diagnostics)
v8.4.2: 8.4.2What's Changed
Full Changelog: CommunityToolkit/dotnet@v8.4.1...v8.4.2
v8.4.1: 8.4.1This release of the .NET Community Toolkit updates the MVVM Toolkit analyzers and source generator to Roslyn 5.0, so they can work with C# 14 out of the box. This means that
[ObservableProperty]on partial properties no longer needspreviewlanguage version 🎉What's Changed 🆕
--no-buildargument in dotnet test invokation by @echoix in #1132[ObservableProperty]by @Sergio0694 in #1140New Contributors
Full Changelog: CommunityToolkit/dotnet@v8.4.0...v8.4.1
DapperLib/Dapper (Dapper)
v2.1.79Compare Source
What's Changed
New Contributors
Full Changelog: DapperLib/Dapper@2.1.72...2.1.79
v2.1.72Compare Source
What's Changed
New Contributors
Full Changelog: DapperLib/Dapper@2.1.66...2.1.72
Humanizr/Humanizer (Humanizer.Core.zh-Hans)
v3.0.10Changes:
This list of changes was auto generated.
v3.0.8Changes:
Localization:
Others:
This list of changes was auto generated.
meziantou/Meziantou.Analyzer (Meziantou.Analyzer)
v3.0.125Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.125
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.124...3.0.125
v3.0.124Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.124
What's Changed
defaultliterals in named-argument checks by @meziantou with @Copilot in #1222Full Changelog: meziantou/Meziantou.Analyzer@3.0.123...3.0.124
v3.0.123Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.123
What's Changed
is-pattern detection to avoid declaration-pattern false positives by @meziantou with @Copilot in #1220Full Changelog: meziantou/Meziantou.Analyzer@3.0.122...3.0.123
v3.0.122Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.122
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.121...3.0.122
v3.0.121Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.121
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.120...3.0.121
v3.0.120Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.120
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.119...3.0.120
v3.0.119Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.119
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.118...3.0.119
v3.0.118Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.118
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.117...3.0.118
v3.0.117Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.117
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.116...3.0.117
v3.0.116Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.116
What's Changed
isexpressions by @meziantou with @Copilot in #1209Full Changelog: meziantou/Meziantou.Analyzer@3.0.115...3.0.116
v3.0.115Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.115
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.114...3.0.115
v3.0.114Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.114
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.113...3.0.114
v3.0.113Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.113
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.112...3.0.113
v3.0.112Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.112
Full Changelog: meziantou/Meziantou.Analyzer@3.0.111...3.0.112
v3.0.111Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.111
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.110...3.0.111
v3.0.110Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.110
What's Changed
partialdiagnostics by @meziantou with @Copilot in #1195Full Changelog: meziantou/Meziantou.Analyzer@3.0.109...3.0.110
v3.0.109Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.109
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.108...3.0.109
v3.0.108Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.108
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.107...3.0.108
v3.0.107Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.107
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.106...3.0.107
v3.0.106Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.106
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.105...3.0.106
v3.0.105Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.105
What's Changed
<returns>tags onvoidmethods by @meziantou in #1189Full Changelog: meziantou/Meziantou.Analyzer@3.0.104...3.0.105
v3.0.104Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.104
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.103...3.0.104
v3.0.103Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.103
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.102...3.0.103
v3.0.102Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.102
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.101...3.0.102
v3.0.101Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.101
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.100...3.0.101
v3.0.100Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.100
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.99...3.0.100
v3.0.99Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.99
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.98...3.0.99
v3.0.98Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.98
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.97...3.0.98
v3.0.97Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.97
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.96...3.0.97
v3.0.96Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.96
Full Changelog: meziantou/Meziantou.Analyzer@3.0.95...3.0.96
v3.0.95Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.95
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.94...3.0.95
v3.0.94Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.94
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.93...3.0.94
v3.0.93Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.93
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.92...3.0.93
v3.0.92Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.92
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.91...3.0.92
v3.0.91Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.91
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.90...3.0.91
v3.0.90Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.90
What's Changed
else ifchains with reachable prior branches by @Copilot in #1166Full Changelog: meziantou/Meziantou.Analyzer@3.0.89...3.0.90
v3.0.89Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.89
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.88...3.0.89
v3.0.88Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.88
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.87...3.0.88
v3.0.87Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.87
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.86...3.0.87
v3.0.86Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.86
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.85...3.0.86
v3.0.85Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.85
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.84...3.0.85
v3.0.84Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.84
What's Changed
[Experimental]overloads in MA0040 cancellation-token matching by @Copilot in #1157Full Changelog: meziantou/Meziantou.Analyzer@3.0.83...3.0.84
v3.0.83Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.83
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.82...3.0.83
v3.0.82Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.82
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.81...3.0.82
v3.0.81Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.81
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.80...3.0.81
v3.0.80Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.80
Full Changelog: meziantou/Meziantou.Analyzer@3.0.79...3.0.80
v3.0.79Compare Source
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.79
What's Changed
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.