Skip to content

Bump Ardalis.GuardClauses and 13 others #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jul 21, 2025

Updated Ardalis.GuardClauses from 4.0.1 to 5.0.0.

Release notes

Sourced from Ardalis.GuardClauses's releases.

5.0

What's Changed

Full Changelog: ardalis/GuardClauses@v4.6.0...v5.0

4.6.0

Breaking Change

NOTE: There were breaking changes in this release - see discussion in #354. A new 5.0 release has been added to make clear the breaking change (with minimal updates from 4.6).

What's Changed

New Contributors

Full Changelog: ardalis/GuardClauses@v4.5...v4.6.0

4.5

What's Changed

New Contributors

Full Changelog: ardalis/GuardClauses@v4.4.0...v4.5

4.4.0

What's Changed

New Contributors

Full Changelog: ardalis/GuardClauses@v4.3.0...v4.4.0

4.3.0

What's Changed

New Contributors

Full Changelog: ardalis/GuardClauses@v4.2.0...v4.3.0

4.2.0

What's Changed

New Contributors

Full Changelog: ardalis/GuardClauses@v4.1.1...v4.2.0

4.1.1

Attempting to include README in package so it appears on Nuget.org

4.1.0

What's Changed

New Contributors

Commits viewable in compare view.

Updated Ardalis.Result from 7.0.0 to 10.1.0.

Release notes

Sourced from Ardalis.Result's releases.

10.1.0

What's Changed

New Contributors

Full Changelog: ardalis/Result@v10.0.0...v10.1.0

10.0.0

What's Changed

New Contributors

Full Changelog: ardalis/Result@v9.1.0...v10.0.0

9.1.0

What's Changed

New Contributors

Full Changelog: ardalis/Result@v9.0.1...v9.1.0

9.0.1

What's Changed

Full Changelog: ardalis/Result@v9.0.0...v9.0.1

9.0.0

What's Changed

New Contributors

Full Changelog: ardalis/Result@v8.0.0...v9.0.0

8.0.0

What's Changed

New Contributors

Full Changelog: ardalis/Result@v7.3.0...v8.0.0

7.3.0

What's Changed

New Contributors

Full Changelog: ardalis/Result@v7.2.0...v7.3.0

7.2.0

What's Changed

New Contributors

Full Changelog: ardalis/Result@v7.1.0...v7.2.0

7.1.0

What's Changed

New Contributors

Full Changelog: ardalis/Result@v7.0.0...v7.1.0

Commits viewable in compare view.

Updated Ardalis.Specification from 7.0.0 to 9.2.0.

Release notes

Sourced from Ardalis.Specification's releases.

9.2.0

What's Changed

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

9.1.0

What's Changed

Full Changelog: ardalis/Specification@v9.0.1...v9.1.0

9.0.1

What's Changed

Full Changelog: ardalis/Specification@v9.0.0...v9.0.1

9.0.0

What's Changed

New Contributors

Full Changelog: ardalis/Specification@v8.0...v9.0.0

Breaking Changes

The "standard" use of the library remains fairly intact.

  • The obsolete GetBySpec repository methods are removed.
  • The IEntity interface is removed.
  • The Select/SelectMany are applied at the end of the chain or in a separate Query clause. These extension methods return void and no further chaining is possible.

In this version, we refactored the internals and the building blocks significantly. The "advanced" use cases are affected by these changes. Users who have custom extensions or have been relying on the internals need to migrate accordingly.

  • The expression collections no longer are initialized to a new List<T> by default and will return Enumerable.Empty<T> if empty.
  • The default value for Take and Skip properties no longer is null. They're updated to a non-nullable int type with a default value of -1.
  • The specification constructors no longer accept IInMemorySpecificationEvaluator and ISpecificationValidator parameters. The properties are still defined as virtual and can be overridden.
  • The builder infrastructure is refactored to accommodate better flow for specs with projections. All extensions should be written for both ISpecificationBuilder<T> and ISpecificationBuilder<T, TResult> builders.
  • The OrderedSpecificationBuilder and CacheSpecificationBuilder are removed.
  • The in-memory SearchEvaluator is renamed to SearchMemoryEvaluator.
  • The IncludeEvaluator.Default and IncludeEvaluator.Cached singleton instances are removed. Instead, use the IncludeEvaluator.Instance.
  • The SpecificationEvaluator no longer accepts bool cacheEnabled parameter. The caching is applied by default wherever necessary.
  • The EntityType, PropertyType, and PreviousPropertyType are removed from IncludeExpressionInfo.
  • The Update and Delete repository methods return Task<int> (the affected rows).

8.0

What's Changed

New Contributors

Full Changelog: ardalis/Specification@v7.0...v8.0

Commits viewable in compare view.

Updated Ardalis.Specification.EntityFrameworkCore from 7.0.0 to 9.2.0.

Release notes

Sourced from Ardalis.Specification.EntityFrameworkCore's releases.

9.2.0

What's Changed

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

9.1.0

What's Changed

Full Changelog: ardalis/Specification@v9.0.1...v9.1.0

9.0.1

What's Changed

Full Changelog: ardalis/Specification@v9.0.0...v9.0.1

9.0.0

What's Changed

New Contributors

Full Changelog: ardalis/Specification@v8.0...v9.0.0

Breaking Changes

The "standard" use of the library remains fairly intact.

  • The obsolete GetBySpec repository methods are removed.
  • The IEntity interface is removed.
  • The Select/SelectMany are applied at the end of the chain or in a separate Query clause. These extension methods return void and no further chaining is possible.

In this version, we refactored the internals and the building blocks significantly. The "advanced" use cases are affected by these changes. Users who have custom extensions or have been relying on the internals need to migrate accordingly.

  • The expression collections no longer are initialized to a new List<T> by default and will return Enumerable.Empty<T> if empty.
  • The default value for Take and Skip properties no longer is null. They're updated to a non-nullable int type with a default value of -1.
  • The specification constructors no longer accept IInMemorySpecificationEvaluator and ISpecificationValidator parameters. The properties are still defined as virtual and can be overridden.
  • The builder infrastructure is refactored to accommodate better flow for specs with projections. All extensions should be written for both ISpecificationBuilder<T> and ISpecificationBuilder<T, TResult> builders.
  • The OrderedSpecificationBuilder and CacheSpecificationBuilder are removed.
  • The in-memory SearchEvaluator is renamed to SearchMemoryEvaluator.
  • The IncludeEvaluator.Default and IncludeEvaluator.Cached singleton instances are removed. Instead, use the IncludeEvaluator.Instance.
  • The SpecificationEvaluator no longer accepts bool cacheEnabled parameter. The caching is applied by default wherever necessary.
  • The EntityType, PropertyType, and PreviousPropertyType are removed from IncludeExpressionInfo.
  • The Update and Delete repository methods return Task<int> (the affected rows).

8.0

What's Changed

New Contributors

Full Changelog: ardalis/Specification@v7.0...v8.0

Commits viewable in compare view.

Updated Azure.Extensions.AspNetCore.Configuration.Secrets from 1.3.1 to 1.4.0.

Release notes

Sourced from Azure.Extensions.AspNetCore.Configuration.Secrets's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Azure.Identity from 1.10.4 to 1.14.2.

Release notes

Sourced from Azure.Identity's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated coverlet.collector from 6.0.2 to 6.0.4.

Release notes

Sourced from coverlet.collector's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated FluentValidation from 11.9.0 to 12.0.0.

Release notes

Sourced from FluentValidation's releases.

12.0.0

Release notes

Please read the upgrade guide if you are moving from 11.x to 12.x

Changes in 12.0.0

  • Drops support for netstandard2.0, netstandard2.1, .net 5, .net 6 and .net 7. Minimum supported platform is now .net 8.
  • Add support for dependent rules for custom rules (#2170)
  • Removes deprecated DI extensions
  • Removes deprecated transform methods (#2027)
  • Remove the ability to disable the root-model null check (#2069)
  • Use Zomp.SyncMethodGenerator to clean up internal sync/async code paths and increase performance (#2136)
  • Add Serbian (Cyrillic) language; rename existing Serbian to Serbian (Latin) (#2283)

Downloads

Binaries can be downloaded from nuget:

11.11.0

Release notes

Please read the upgrade guide if you are moving from 10.x to 11.x

Changes in 11.11.0

  • Add additional overload of WithState that takes a context (#2276)

Changes in 11.10.0

  • Add WhereAsync as conterpart to Where on collection rules (#2240)
  • Create IEnumValidator to expose the targeted Enum type of EnumValidator (#2244)
  • Add Romansh language translations (#2239)

Changes in 11.9.2

  • ScalePrecisionValidator error message clarification (#2211)

Changes in 11.9.1

  • Fix issue with CascadeMode on child validators (#2207)

Changes in 11.9.0

  • Fix memory leak in NotEmptyValidator/EmptyValidator (#2174)
  • Add more descriptive error messages if a rule throws a NullReferenceException (#2152)
  • Add support for caching root parameter expressions (eg RuleFor(x => x)) (#2168)
  • Prevent AddValidatorsFromAssemblyContaining from registering validators twice (#2182)
  • Add builds for .net 8

Changes in 11.8.1

  • Fix unintentional behavioural changes in introduced in the previous release as part of #2158

Changes in 11.8.0

  • Added AbstractValidator.OnRuleAdded to allow customization of rule instances after creation (#2114)
  • Fix Serbian translation of LengthValidator (#2147)
  • Fix chinese culture codes (#2151)
  • Add Khmer translations (#2155)
  • Various performance improvements (#2158)
  • Fix ChildRules with class hierarchies (#2165)

Changes in 11.7.1

  • Resolved issue with combining multiple ValidationResult instances where RuleSetsExecuted wasn't properly set on the combined result (#2125)

Changes in 11.7.0

  • Add additional constructor for combining multiple ValidationResult instances (#2125)
  • Add PropertyPath placeholder (#2134)
  • Fix Brazilian Portuguese translation (#2131)

Changes in 11.6.0

  • Add OnFailurecCreated callback in ValidatorOptions.Global (#2120)
  • Fix typo in Russian localization (#2102)
  • Add Tajik language (#2108)
  • Fixed some typos in Validator Extension docblocks (#2118)

... (truncated)

11.10.0

Release notes

Please read the upgrade guide if you are moving from 10.x to 11.x

Note that the after 11.1.0 release, the FluentValidation.AspNetCore package has been moved to a separate repository and is now versioned and released separately. These release notes now only apply to the core FluentValidation package. For FluentValidation.AspNetCore release notes, please visit the FluentValidation.AspNetCore repository.

Changes in 11.10.0

  • Add WhereAsync as conterpart to Where on collection rules (#2240)
  • Create IEnumValidator to expose the targeted Enum type of EnumValidator (#2244)
  • Add Romansh language translations (#2239)

Changes in 11.9.2

  • ScalePrecisionValidator error message clarification (#2211)

Changes in 11.9.1

  • Fix issue with CascadeMode on child validators (#2207)

Changes in 11.9.0

  • Fix memory leak in NotEmptyValidator/EmptyValidator (#2174)
  • Add more descriptive error messages if a rule throws a NullReferenceException (#2152)
  • Add support for caching root parameter expressions (eg RuleFor(x => x)) (#2168)
  • Prevent AddValidatorsFromAssemblyContaining from registering validators twice (#2182)
  • Add builds for .net 8

Changes in 11.8.1

  • Fix unintentional behavioural changes in introduced in the previous release as part of #2158

Changes in 11.8.0

  • Added AbstractValidator.OnRuleAdded to allow customization of rule instances after creation (#2114)
  • Fix Serbian translation of LengthValidator (#2147)
  • Fix chinese culture codes (#2151)
  • Add Khmer translations (#2155)
  • Various performance improvements (#2158)
  • Fix ChildRules with class hierarchies (#2165)

Changes in 11.7.1

  • Resolved issue with combining multiple ValidationResult instances where RuleSetsExecuted wasn't properly set on the combined result (#2125)

Changes in 11.7.0

  • Add additional constructor for combining multiple ValidationResult instances (#2125)
  • Add PropertyPath placeholder (#2134)
  • Fix Brazilian Portuguese translation (#2131)

Changes in 11.6.0

  • Add OnFailurecCreated callback in ValidatorOptions.Global (#2120)
  • Fix typo in Russian localization (#2102)
  • Add Tajik language (#2108)
  • Fixed some typos in Validator Extension docblocks (#2118)

Changes in 11.5.2

... (truncated)

11.9.2

Release notes

Please read the upgrade guide if you are moving from 10.x to 11.x

Note that the after 11.1.0 release, the FluentValidation.AspNetCore package has been moved to a separate repository and is now versioned and released separately. These release notes now only apply to the core FluentValidation package. For FluentValidation.AspNetCore release notes, please visit the FluentValidation.AspNetCore repository.

Changes in 11.9.2

  • ScalePrecisionValidator error message clarification (#2211)

Changes in 11.9.1

  • Fix issue with CascadeMode on child validators (#2207)

Changes in 11.9.0

  • Fix memory leak in NotEmptyValidator/EmptyValidator (#2174)
  • Add more descriptive error messages if a rule throws a NullReferenceException (#2152)
  • Add support for caching root parameter expressions (eg RuleFor(x => x)) (#2168)
  • Prevent AddValidatorsFromAssemblyContaining from registering validators twice (#2182)
  • Add builds for .net 8

Changes in 11.8.1

  • Fix unintentional behavioural changes in introduced in the previous release as part of #2158

Changes in 11.8.0

  • Added AbstractValidator.OnRuleAdded to allow customization of rule instances after creation (#2114)
  • Fix Serbian translation of LengthValidator (#2147)
  • Fix chinese culture codes (#2151)
  • Add Khmer translations (#2155)
  • Various performance improvements (#2158)
  • Fix ChildRules with class hierarchies (#2165)

Changes in 11.7.1

  • Resolved issue with combining multiple ValidationResult instances where RuleSetsExecuted wasn't properly set on the combined result (#2125)

Changes in 11.7.0

  • Add additional constructor for combining multiple ValidationResult instances (#2125)
  • Add PropertyPath placeholder (#2134)
  • Fix Brazilian Portuguese translation (#2131)

Changes in 11.6.0

  • Add OnFailurecCreated callback in ValidatorOptions.Global (#2120)
  • Fix typo in Russian localization (#2102)
  • Add Tajik language (#2108)
  • Fixed some typos in Validator Extension docblocks (#2118)

Changes in 11.5.2

  • Resolve issue with ruleset propagation for multiple levels of child rules (#2097)

Changes in 11.5.1

  • Deprecated the ability to disable the root model null check via overriding AbstractValidator.EnsureInstanceNotNull (See #2069 for migration steps)
  • Deprecated the Transform and TransformAsync methods (See #2072 for migration steps)
    ... (truncated)

11.9.1

Release notes

Please read the upgrade guide if you are moving from 10.x to 11.x

Note that the after 11.1.0 release, the FluentValidation.AspNetCore package has been moved to a separate repository and is now versioned and released separately. These release notes now only apply to the core FluentValidation package. For FluentValidation.AspNetCore release notes, please visit the FluentValidation.AspNetCore repository.

Changes in 11.9.1

Fix issue with CascadeMode on child validators (#2207)

Changes in 11.9.0

  • Fix memory leak in NotEmptyValidator/EmptyValidator (#2174)
  • Add more descriptive error messages if a rule throws a NullReferenceException (#2152)
  • Add support for caching root parameter expressions (eg RuleFor(x => x)) (#2168)
  • Prevent AddValidatorsFromAssemblyContaining from registering validators twice (#2182)
  • Add builds for .net 8

Changes in 11.8.1

  • Fix unintentional behavioural changes in introduced in the previous release as part of #2158

Changes in 11.8.0

  • Added AbstractValidator.OnRuleAdded to allow customization of rule instances after creation (#2114)
  • Fix Serbian translation of LengthValidator (#2147)
  • Fix chinese culture codes (#2151)
  • Add Khmer translations (#2155)
  • Various performance improvements (#2158)
  • Fix ChildRules with class hierarchies (#2165)

Changes in 11.7.1

  • Resolved issue with combining multiple ValidationResult instances where RuleSetsExecuted wasn't properly set on the combined result (#2125)

Changes in 11.7.0

  • Add additional constructor for combining multiple ValidationResult instances (#2125)
  • Add PropertyPath placeholder (#2134)
  • Fix Brazilian Portuguese translation (#2131)

Changes in 11.6.0

  • Add OnFailurecCreated callback in ValidatorOptions.Global (#2120)
  • Fix typo in Russian localization (#2102)
  • Add Tajik language (#2108)
  • Fixed some typos in Validator Extension docblocks (#2118)

Changes in 11.5.2

  • Resolve issue with ruleset propagation for multiple levels of child rules (#2097)

Changes in 11.5.1

  • Deprecated the ability to disable the root model null check via overriding AbstractValidator.EnsureInstanceNotNull (See #2069 for migration steps)
  • Deprecated the Transform and TransformAsync methods (See #2072 for migration steps)

Changes in 11.5.0

  • MemberNameValidatorSelector now supports wildcard indexes in property paths (#2056)
    ... (truncated)

Commits viewable in compare view.

Updated MediatR from 12.0.1 to 13.0.0.

Release notes

Sourced from MediatR's releases.

13.0.0

Full Changelog: LuckyPennySoftware/MediatR@v12.5.0...v13.0.0

  • Added support for .NET Standard 2.0
  • Requiring license key
  • Moving from Apache license to dual commercial/OSS license

To set your license key:

services.AddMediatR(cfg => {
    cfg.LicenseKey = "<License key here>";
});

You can obtain your license key at MediatR.io

12.5.0

What's Changed

New Contributors

Full Changelog: LuckyPennySoftware/MediatR@v12.4.1...v12.5.0

12.4.1

What's Changed

Full Changelog: LuckyPennySoftware/MediatR@v12.4.0...v12.4.1

12.4.0

What's Changed

Full Changelog: LuckyPennySoftware/MediatR@v12.3.0...v12.4.0

12.3.0

What's Changed

New Contributors

Full Changelog: LuckyPennySoftware/MediatR@v12.2.0...v12.3.0

12.2.0

What's Changed

Full Changelog: LuckyPennySoftware/MediatR@v12.1.1...v12.2.0

12.1.1

What's Changed

Full Changelog: LuckyPennySoftware/MediatR@v12.1.0...v12.1.1

12.1.0

Migration Guide

https://github.com/jbogard/MediatR/wiki/Migration-Guide-12.0-to-12.1

What's Changed

New Contributors

Full Changelog: LuckyPennySoftware/MediatR@v12.0.1...v12.1.0

This release removes all scanning around behaviors, stream behaviors, and pre/post processors. That proved too problematic so you MUST register each of these explicitly with the appropriate registration methods inside AddMediatR. This also ensures that the order of behaviors and pre/post processors reflects the explicit order of registration. With the scanning approach, you couldn't control the order.

Commits viewable in compare view.

Updated Microsoft.AspNetCore.Authentication.JwtBearer from 8.0.2 to 8.0.18.

Release notes

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

8.0.18

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.17...v8.0.18

8.0.17

Bug Fixes

  • Forwarded Headers Middleware: Ignore X-Forwarded-Headers from Unknown Proxy (#61623)
    The Forwarded Headers Middleware now ignores X-Forwarded-Headers sent from unknown proxies. This change improves security by ensuring that only trusted proxies can influence the forwarded headers, preventing potential spoofing or misrouting of requests.

Dependency Updates

  • Update dependencies from dotnet/arcade (#61832)
    This update brings in the latest changes from the dotnet/arcade repository, ensuring that ASP.NET Core benefits from recent improvements, bug fixes, and security patches in the shared build infrastructure.

  • Bump src/submodules/googletest from 52204f7 to 04ee1b4 (#61761)
    The GoogleTest submodule has been updated to a newer commit, providing the latest testing features, bug fixes, and performance improvements for the project's C++ test components.

Miscellaneous

  • Update branding to 8.0.17 (#61830)
    The project version branding has been updated to reflect the new 8.0.17 release, ensuring consistency across build outputs and documentation.

  • Merging internal commits for release/8.0 (#61924)
    This change merges various internal commits into the release/8.0 branch, incorporating minor fixes, documentation updates, and other non-user-facing improvements to keep the release branch up to date.


This summary is generated and may contain inaccuracies. For complete details, please review the linked pull requests.

Full Changelog: dotnet/aspnetcore@v8.0.16...v8.0.17

8.0.16

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.15...v8.0.16

8.0.15

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.14...v8.0.15

8.0.14

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.13...v8.0.14

8.0.13

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.12...v8.0.13

8.0.12

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.11...v8.0.12

8.0.11

Release

What's Changed

Description has been truncated

Bumps Ardalis.GuardClauses from 4.0.1 to 5.0.0
Bumps Ardalis.Result from 7.0.0 to 10.1.0
Bumps Ardalis.Specification from 7.0.0 to 9.2.0
Bumps Ardalis.Specification.EntityFrameworkCore from 7.0.0 to 9.2.0
Bumps Azure.Extensions.AspNetCore.Configuration.Secrets from 1.3.1 to 1.4.0
Bumps Azure.Identity from 1.10.4 to 1.14.2
Bumps coverlet.collector from 6.0.2 to 6.0.4
Bumps FluentValidation from 11.9.0 to 12.0.0
Bumps MediatR from 12.0.1 to 13.0.0
Bumps Microsoft.AspNetCore.Authentication.JwtBearer from 8.0.2 to 8.0.18
Bumps Microsoft.EntityFrameworkCore.InMemory from 8.0.2 to 9.0.7
Bumps Microsoft.Extensions.Logging.Configuration from 8.0.0 to 9.0.7
Bumps System.IdentityModel.Tokens.Jwt from 7.3.1 to 8.13.0
Bumps System.Text.Json from 8.0.3 to 9.0.7

---
updated-dependencies:
- dependency-name: Ardalis.GuardClauses
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Ardalis.Result
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Ardalis.Specification
  dependency-version: 9.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Ardalis.Specification.EntityFrameworkCore
  dependency-version: 9.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Azure.Extensions.AspNetCore.Configuration.Secrets
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Azure.Identity
  dependency-version: 1.14.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: coverlet.collector
  dependency-version: 6.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: FluentValidation
  dependency-version: 12.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: MediatR
  dependency-version: 13.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Microsoft.AspNetCore.Authentication.JwtBearer
  dependency-version: 8.0.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.EntityFrameworkCore.InMemory
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Microsoft.Extensions.Logging.Configuration
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: System.IdentityModel.Tokens.Jwt
  dependency-version: 8.13.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: System.Text.Json
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Jul 21, 2025
Copy link

Copy link
Author

dependabot bot commented on behalf of github Aug 5, 2025

Superseded by #3.

@dependabot dependabot bot closed this Aug 5, 2025
@dependabot dependabot bot deleted the dependabot/nuget/multi-a391940128 branch August 5, 2025 20:50
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.

Unsopported Type on Created Result when using ToMinimalApiResult method
0 participants