Skip to content

Bump the nuget-minor-and-patch group with 17 updates#5003

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/eng/build/nuget-minor-and-patch-145cccdc61
Closed

Bump the nuget-minor-and-patch group with 17 updates#5003
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/eng/build/nuget-minor-and-patch-145cccdc61

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 15, 2026

Copy link
Copy Markdown
Contributor

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Updated AccentedCommandLineParser from 2.0.0 to 2.0.1.

Updated Autofac from 4.6.2 to 4.9.4.

Release notes

Sourced from Autofac's releases.

4.9.4

  • Fix #​1006 - Issue with Entity Framework Core DI registrations
  • Fix #​1009 - Exception in ParameterCompatibleWithTypeConstraint when parameter type is interface and constraint type is class

4.9.3

  • Fix #​976 - Throw an exception if a lifetime scope is created with a duplicate tag
  • Fix #​972 - Resolving services registered as open generics with generic constraints throws ComponentNotRegisteredException
  • Fix #​999 - Support decoration of component returned from lambda expression and cast as interface
  • Faster RegisterAssemblyTypes by putting slow custom attribute check last

4.9.2

  • Reduce the verbosity of activator exception messages; reverts #​343.
  • Resolved #​932: Added serialization constructor to DependencyResolutionException for supported framework targets.
  • Fixed an issue where a decorator was only applied if the decorator interface was the first service assigned to the registration. Found while investigating #​963.
  • Resolved #​965: Do not apply the decorator if already applied, or if the registration is for an adapter.

4.9.1

  • Fix for #​960 - ExternalRegistrySource reuses ExternalComponentRegistration instances causing ObjectDisposedException
  • Made the backing field for ServiceRegistrationInfo.IsInitialized volatile to prevent the ComponentRegistry taking an avoidable lock due to reordering

4.9.0

  • Decorator enhancements
  • Switched from symbol server to SourceLink support
  • #​919: Memory optimisations
  • Reduced locking in ComponentRegistry to improve concurrency of service resolution (extracted from PR #​953)
  • Fix for #​635 SingleInstance lock. Use lock only if instance not created yet.
  • Alternative to #​924: Changed max resolve limit to static for reflection access
  • Improved performance of CollectionRegistrationSource
  • Resolved #​927: Clarified duplicate lifetime scope exception message with respect to Owned<T>
  • Fix for #​889 and #​932 - Add .NET Standard 2.0 target and make DependencyResolutionException serializable
  • Fix for #​929: Resetting resolve op activation stack on succeed or fail to allow try/catch in lambda registrations
  • Inherit Registered callback in child scopes (closes #​218)
  • Move registration source extension method to a dedicated class and make consistent with module registration
  • Fix for #​218: Module.AttachToComponentRegistration() detects registrations in nested scopes
  • Throw ObjectDisposedException on activation if activator is disposed
  • Solution upgraded to .NET Core SDK 2.2.101

4.9.0-beta1

  • Decorator enhancements
  • Switched from symbol server to SourceLink support
  • #​919: Memory optimisations
  • Solution upgraded to Upgrade to .NET Core SDK 2.1.200
  • Alternative to #​924: Changed max resolve limit to static for reflection access

4.8.1

  • Minor performance improvements.
  • Fix #​916: IStartable that creates child lifetime scope during Start() no longer tries to activate itself.

4.8.0

Reverted behavior from #​897 change to re-include internal and nested private classes for backwards compatibility. Added a new PublicOnly() filter method to enable opt-in to data encapsulation when scanning for assembly types.

builder.RegisterAssemblyTypes(asm)
       .PublicOnly()
       .Where(t => t.Name.EndsWith("Repository"))
       .Except<MyUnwantedRepository>();

4.7.1

Issues addressed in this release:

  • #​567: AutoActivate and IStartable now correctly get run if added to child lifetime scope registrations.
  • #​897: Assembly scanning registrations now properly ignore internal and private nested classes - only public classes will be found when scanning.
  • #​907: Fixed issue where AsSelf() and AsImplementedInterfaces() incorrectly ignored custom constructor finders (FindConstructorsWith()).

4.7.0

Issues addressed in this release:

  • #​624: Components registered as IStartable and AutoActivate() will be started in dependency order.
  • #​733: Building a container will fail with an exception if you RegisterType<T>() a type that doesn't have a public constructor.
  • #​824: Parameters passed to a Resolve() operation for a decorated object will pass by the decorators and only be provided to the object being decorated.
  • #​846: Parameters passed to a Resolve() operation will be provided to the constructor selector so they can be used to influence which constructor gets used (IConstructorSelector.SelectConstructorBinding()). This is a minor breaking change for the IConstructorSelector interface but very few people have implemented custom constructor selectors so a major version increment wasn't used.
  • #​882: An exception is now thrown if you try to create a new lifetime scope with a tag that has already been assigned to a parent lifetime scope.

Commits viewable in compare view.

Updated Azure.Identity from 1.17.1 to 1.21.0.

Release notes

Sourced from Azure.Identity's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Azure.Security.KeyVault.Secrets from 4.7.0 to 4.11.0.

Release notes

Sourced from Azure.Security.KeyVault.Secrets's releases.

4.11.0

4.11.0 (2026-05-05)

Other Changes

  • Updated dependency on Azure.Core to 1.54.0, which includes fixes for duplicate schema registration.

4.10.0

4.10.0 (2026-05-05)

Features Added

  • Added KeyProperties.KeySize to expose the key size in bits.

4.8.0

4.8.0 (2026-05-05)

Features Added

  • Added KeyVaultAccessControlClientSettings to support creating a KeyVaultAccessControlClient from IConfiguration, including configuration-based credential resolution and dependency injection registration.
  • Added KeyVaultRestClientSettings to support creating a KeyVaultRestClient from IConfiguration, including configuration-based credential resolution and dependency injection registration.

Commits viewable in compare view.

Updated FluentAssertions from 5.2.0 to 5.10.3.

Release notes

Sourced from FluentAssertions's releases.

5.10.3

Release Notes

5.10.2

5.10.0

https://fluentassertions.com/releases/#​5100

5.9.0

https://fluentassertions.com/releases/#​590

5.8.0

Release Notes

5.7.0

Release Notes

5.6.0

  • {New} Provide opt-out to AssertionOptions(o => o.WithStrictOrdering()) - #​974
  • {New} Add collection assertion ContainEquivalentOf - #​950
  • {New} Add Should().NotThrowAfter assertion for actions - #​942

Kudos to @​BrunoJuchli, @​matthiaslischka and @​frederik-h for these amazing additions.

5.5.3

  • {Fix} Performance fixes in BeEquivalenTo - #​935
  • {Fix} Reverted 5.5.0 changes to AssertionScope to ensure binary compatibility - #​977

5.5.2

  • {Fix} Allows BeEquivalentTo to handle a non-generic collection as the SUT - #​975, #​973
  • {Fix} Optimized performance of IncludeMemberByPathSelectionRule - #​969

5.5.1

  • {New} Now provides a hint when strings differ in length and contain differences - #​915, #​907
  • {New} Added ThrowAsync, ThrowExactlyAsync and NotThrowAsync - #​931
  • {New} Added support for Should().Throw and Should().NotThrow for Func<T> - #​951
  • {New} Added support for private protected access modifier - #​932
  • {New} Updated BeApproximately to support nullable types for both the subject and the expectation nullable - #​934
  • {New} Added async version of ExecutionTime to - #​938
  • {New} Updated NotBeApproximately to accepting nullable subject and expectation - #​939
  • {New} type.Should().Be(type) now support open generics - #​954, #​955
  • {Fix} Minor performance improvements to prevent rendering messages if a test did not fail - #​921, #​915
  • {Fix} Improve performance of Should().AllBeEquivalentTo() - #​920, #​914
  • {Fix} Improve the presentation of enums to include the value and the number - #​923, #​897
  • {Fix} BeEquivalentTo with WithStrictOrdering produced messy failure message - #​918
  • {Fix} Fixes detecting checking equivalency of a null subject to a dictionary - #​933
  • {Fix} Fixes duplicate conversions being mentioned in the output of the equivalency API - #​941
  • {Fix} Comparing an object graph against IEnumerable now works now as expected - #​911
  • {Fix} Selecting members during object graph assertions now better handles new overrides -#​960, #​956

Note In versions prior to 5.5, FA may have skipped certain properties in the equivalency comparison. #​960 fixes this, so this may cause some breaking changes.

Lots of kudos @​jnyrup and @​krajek for a majority for the work in this release.

5.5.0

  • {Breaking Change} Since the addition of Should().Throw and Should().NotThrow for Func<T>, assertions Should().Be and Should().NotBe can't be used on Func<T> objects anymore, so this may cause breaking changes. These instances can easily be replaced with Should().BeSameAs and Should().NotBeSameAs as these types are compared by references.

5.4.2

  • {Fix} Limits the depth of rendering an object to a max of 5 to prevent OOM exceptions - #​898
  • {Fix} Show the entire exception instead of just the message when an async function throws - #​892
  • {Fix} Fixed a StackOverflow while comparing an self-returning enumerable - #​887
  • {Fix} Custom rules (Using().WhenTypeIs()) were not executed on dictionary equivalency assertions - #​886
  • {Fix} The failure message of HaveOffset returned the seconds instead of the offset - #​883

5.4.1

  • {Fix} Make GetEqualityStrategy thread-safe again - #​864

5.4.0

  • {Fix} Fixes the dependency on the unlisted System.Reflection.Emit by adding direct support for .NET Core - #​861
  • {Potentially Breaking} Restricted the Event assertion API to the run-time .NET platforms only - #​861

5.3.2

  • {Fix} AssertionScope did not work with GenericCollectionAssertions - #​835
  • {Fix} Improved the performance of asserting large arrays for equivalency - #​840
  • {Fix} Handle an edge case that only seems to happen under NCrunch - #​841
  • {Fix} Resolved potential deadlocks and long-running threads in the execution time assertions - #​842

Kudos to @​peterekepeter and @​jnyrup for those fixes.

5.3.0

  • {Fix} Fix String.ContainAll param documentation - #​810
  • {Fix} Test framework detection didn't always work under .NET Core 2.0 - #​825
  • {New} MethodImplAttribute now works with (Not)BeDecoratedWith - #​804
  • {New} Added support for integral types to [Not]BeCloseTo - #​803
  • {New} Increased the accuracy of [Not]BeCloseTo for DateTime[Offset] to Tick precision instead of milliseconds - #​820
  • {New} Many performance improvements to BeEquivalentTo - #​817

Kudos to @​jnyrup for making this release possible. Thanks to @​melchiork for contributing #​825.

Commits viewable in compare view.

Updated Microsoft.Build from 17.0.0 to 17.11.48.

Release notes

Sourced from Microsoft.Build's releases.

17.11.4

What's Changed

17.11.0-preview-24318-05

Release

17.11.0-preview-24279-02

Release

17.11.0-preview-24225-01

Release

17.11.0-preview-24178-16

Release

17.10.4

What's Changed

17.10.0-preview-24127-03

[Release[(https://github.com/dotnet/core/releases/tag/v9.0.0-preview.2)

17.9.5

What's Changed

17.8.3

What's Changed

17.8.0-preview-23472-04

Release

17.8.0-preview-23367-03

Release

17.7.0

What's Changed

17.7.0-preview-23323-05

Release

17.7.0-preview-23281-03

Release

17.6.0-preview-23174-01

Release

17.6.0-preview-23152-03

Release

17.6.0-preview-23108-10

Release

17.5.1

What's Changed

Full Changelog: dotnet/msbuild@v17.5.0...v17.5.1

17.4.0-preview-22428-01

Release

17.4.0-preview-22368-02

Release

17.3.0-preview-22329-01

Release

17.3.0-preview-22306-01

Release

17.3.0-preview-22226-04

Release

17.2.1

This version of MSBuild shipped in Visual Studio 2022 version 17.2.0. It has a single bugfix over 17.2.0.

What's Changed

Full Changelog: dotnet/msbuild@v17.2.0...v17.2.1

17.2.0

This version of MSBuild shipped in .NET SDK 6.0.300.

Auto-generated release notes:

What's Changed

17.2.0-preview-22175-02

Release

17.2.0-preview-22152-03

Release

17.2.0-preview-22104-01

Release

17.1.1

This version of MSBuild shipped with .NET SDK 6.0.202 and includes a fix for dotnet/sdk#23498.

What's Changed

Full Changelog: dotnet/msbuild@v17.1.0...v17.1.1

17.1.0

This version of MSBuild shipped with Visual Studio 2022 17.1.0 and .NET SDK 6.0.200.

What's Changed (auto-generated)

Commits viewable in compare view.

Updated Microsoft.Build.NoTargets from 3.7.56 to 3.7.134.

Release notes

Sourced from Microsoft.Build.NoTargets's releases.

3.7.134

What's Changed

  • NoTargets: Exclude NoTargets projects from solution file by @​mruxmohan4 in #​641

Full Changelog: microsoft/MSBuildSdks@Microsoft.Build.UniversalPackages.1.0.366...Microsoft.Build.NoTargets.3.7.134

Commits viewable in compare view.

Updated Microsoft.Build.Traversal from 4.1.0 to 4.1.82.

Release notes

Sourced from Microsoft.Build.Traversal's releases.

4.1.82

What's Changed

Full Changelog: microsoft/MSBuildSdks@Microsoft.Build.Traversal.4.1.0...Microsoft.Build.Traversal.4.1.82

Commits viewable in compare view.

Updated Microsoft.Extensions.DependencyInjection from 9.0.2 to 9.0.16.

Release notes

Sourced from Microsoft.Extensions.DependencyInjection's releases.

9.0.16

Release

9.0.15

Release

9.0.14

Release

9.0.13

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.12...v9.0.13

9.0.12

Release

9.0.11

Release

What's Changed

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

9.0.10

Release

What's Changed

Description has been truncated

Bumps AccentedCommandLineParser from 2.0.0 to 2.0.1
Bumps Autofac from 4.6.2 to 4.9.4
Bumps Azure.Identity from 1.17.1 to 1.21.0
Bumps Azure.Security.KeyVault.Secrets from 4.7.0 to 4.11.0
Bumps FluentAssertions from 5.2.0 to 5.10.3
Bumps Microsoft.Build from 17.0.0 to 17.11.48
Bumps Microsoft.Build.NoTargets from 3.7.56 to 3.7.134
Bumps Microsoft.Build.Traversal from 4.1.0 to 4.1.82
Bumps Microsoft.Extensions.DependencyInjection from 9.0.2 to 9.0.16
Bumps Microsoft.Identity.Client from 4.78.0 to 4.84.0
Bumps Microsoft.NETCore.DotNetAppHost from 8.0.8 to 8.0.27
Bumps Newtonsoft.Json from 13.0.3 to 13.0.4
Bumps NuGet.Packaging from 5.11.6 to 5.11.7
Bumps System.CommandLine from 2.0.0-beta5.25306.101 to 2.0.8
Bumps WindowsAzure.Storage from 9.3.1 to 9.3.3
Bumps xunit from 2.4.0 to 2.9.3
Bumps YamlDotNet from 6.0.0 to 6.1.2

---
updated-dependencies:
- dependency-name: AccentedCommandLineParser
  dependency-version: 2.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Autofac
  dependency-version: 4.9.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Azure.Identity
  dependency-version: 1.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Azure.Security.KeyVault.Secrets
  dependency-version: 4.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: FluentAssertions
  dependency-version: 5.10.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.Build
  dependency-version: 17.11.48
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.Build.NoTargets
  dependency-version: 3.7.134
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.Build.Traversal
  dependency-version: 4.1.82
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-version: 9.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.Identity.Client
  dependency-version: 4.84.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.NETCore.DotNetAppHost
  dependency-version: 8.0.27
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: Newtonsoft.Json
  dependency-version: 13.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: NuGet.Packaging
  dependency-version: 5.11.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: System.CommandLine
  dependency-version: 2.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: WindowsAzure.Storage
  dependency-version: 9.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: xunit
  dependency-version: 2.9.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: YamlDotNet
  dependency-version: 6.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github May 18, 2026

Copy link
Copy Markdown
Contributor Author

Dependabot received an unexpected response from a private package registry. Because of this, Dependabot cannot update this pull request.

@dependabot @github

dependabot Bot commented on behalf of github May 19, 2026

Copy link
Copy Markdown
Contributor Author

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot Bot deleted the dependabot/nuget/eng/build/nuget-minor-and-patch-145cccdc61 branch May 19, 2026 16:35
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.

1 participant