Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2025

Updated Autofac from 8.3.0 to 8.4.0.

Release notes

Sourced from Autofac's releases.

8.4.0

Minor breaking change: The shim RequiresUnreferencedCodeAttribute has been changed from public to internal (#​1462/#​1463 - thanks @​prochnowc!). This will only affect people targeting older/lower .NET standard frameworks who also rely on the shim attribute in Autofac. While it's technically breaking, it didn't seem like a great reason to do a full major release due to the edge case nature of the set of applications/users affected.

Commits viewable in compare view.

Updated AWSSDK.CloudWatchLogs from 4.0.5.1 to 4.0.7.7.

Release notes

Sourced from AWSSDK.CloudWatchLogs's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated AWSSDK.Core from 4.0.0.14 to 4.0.0.26.

Release notes

Sourced from AWSSDK.Core's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated AWSSDK.Extensions.NETCore.Setup from 4.0.0 to 4.0.2.2.

Release notes

Sourced from AWSSDK.Extensions.NETCore.Setup's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated AWSSDK.SimpleSystemsManagement from 4.0.0 to 4.0.3.1.

Release notes

Sourced from AWSSDK.SimpleSystemsManagement's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Azure.Identity from 1.14.1 to 1.15.0.

Release notes

Sourced from Azure.Identity's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated FluentAssertions from 8.4.0 to 8.6.0.

Release notes

Sourced from FluentAssertions's releases.

8.6.0

What's Changed

Improvements

Others

New Contributors

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

8.5.0

What's Changed

New features

Fixes

Others

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

Commits viewable in compare view.

Updated Microsoft.CodeAnalysis.CSharp.CodeStyle from 4.11.0 to 4.14.0.

Release notes

Sourced from Microsoft.CodeAnalysis.CSharp.CodeStyle's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Data.SqlClient from 6.0.2 to 6.1.1.

Release notes

Sourced from Microsoft.Data.SqlClient's releases.

6.1.1

This update includes the following changes since the 6.1.0 release:

Fixed

  • Reverted changes related to improving partial packet detection, fixup, and replay functionality. This revert addresses regressions introduced in 6.1.0. (#​3556)
  • Applied reference assembly corrections supporting vector, fixed JSON tests, and ensured related tests are enabled. #​3562
  • Fixed SqlVector<T>.Null API signature in Reference assembly. #​3521

Changed

  • Upgraded Azure.Identity and other dependencies to newer versions. (#​3538) (#​3552)

6.1.0

Release Notes

[!WARNING]
This release version is delisted from NuGet.org and is no longer supported.
It contains critical bugs that make it unsuitable for use.

Stable Release 6.1.0 - 2025-07-25

This update brings the following changes since the 6.0.2 stable release:

Added

Added dedicated SQL Server vector datatype support

What Changed:

  • Optimized vector communications between MDS and SQL Server 2025, employing a custom binary format over the TDS protocol. (#​3433, #​3443)
  • Reduced processing load compared to existing JSON-based vector support.
  • Initial support for 32-bit single-precision floating point vectors.

Who Benefits:

  • Applications moving large vector data sets will see beneficial improvements to processing times and memory requirements.
  • Vector-specific APIs are ready to support future numeric representations with a consistent look-and-feel.

Impact:

  • Reduced transmission and processing times for vector operations versus JSON using SQL Server 2025 preview:
    • Reads: 50x improvement
    • Writes: 3.3x improvement
    • Bulk Copy: 19x improvement
    • (Observed with vector column of max 1998 size, and 10,000 records for each operation.)
  • Improved memory footprint due to the elimination of JSON serialization/deserialization and string representation bloat.
  • For backwards compatibility with earlier SQL Server Vector implementations, applications may continue to use JSON strings to send/receive vector data, although they will not see any of the performance improvements noted above.

Revived .NET Standard 2.0 target support

What Changed:

Who Benefits:

  • Libraries that depend on MDS may seamlessly target any of the following frameworks:
    • .NET Standard 2.0
    • .NET Framework 4.6.2 and above
    • .NET 8.0
    • .NET 9.0
  • Applications should continue to target runtimes.
    ... (truncated)

6.1.0-preview2

Preview Release 6.1.0-preview2.25178.5 - 2025-06-27

This update brings the following changes since the 6.1.0-preview1 release:

Added

Added dedicated SQL Server vector datatype support

What Changed:

  • Optimized vector communications between MDS and SQL Server 2025, employing a custom binary format over the TDS protocol. (#​3433, #​3443)
  • Reduced processing load compared to existing JSON-based vector support.
  • Initial support for 32-bit single-precision floating point vectors.

Who Benefits:

  • Applications moving large vector data sets will see beneficial improvements to processing times and memory requirements.
  • Vector-specific APIs are ready to support future numeric representations with a consistent look-and-feel.

Impact:

  • Reduced transmission and processing times for vector operations versus JSON using SQL Server 2025 preview:
    • Reads: 50x improvement
    • Writes: 3.3x improvement
    • Bulk Copy: 19x improvement
    • (Observed with vector column of max 1998 size, and 10,000 records for each operation.)
  • Improved memory footprint due to the elimination of JSON serialization/deserialization and string representation bloat.
  • For backwards compatibility with earlier SQL Server Vector implementations, applications may continue to use JSON strings to send/receive vector data, although they will not see any of the performance improvements noted above.

Revived .NET Standard 2.0 target support

What Changed:

Who Benefits:

  • Libraries that depend on MDS may seamlessly target any of the following frameworks:
    • .NET Standard 2.0
    • .NET Framework 4.6.2 and above
    • .NET 8.0
    • .NET 9.0
  • Applications should continue to target runtimes.
    • The MDS .NET Standard 2.0 target framework support does not include an actual implementation, and cannot be used with a runtime.
    • An application's build/publish process should always pick the appropriate MDS .NET/.NET Framework runtime implementation.
    • Custom build/publish actions that incorrectly try to deploy the MDS .NET Standard 2.0 reference DLL at runtime are not supported.

Impact:

... (truncated)

6.1.0-preview1

This update brings the following changes over the previous release:

Added

  • Added packet multiplexing support to improve large data read performance. #​2714 #​3161 #​3202
  • Added support for special casing with Fabric endpoints. #​3084

Fixed

  • Fixed distributed transactions to be preserved during pooled connection resets. #​3019.
  • Fixed application crash when the Data Source parameter begins with a comma. #​3250.
  • Resolved synonym count discrepancies in debug mode. #​3098.
  • Addressed warnings for down-level SSL/TLS versions. #​3126.

Changed

New Contributors

Commits viewable in compare view.

Updated Microsoft.Data.Sqlite from 9.0.7 to 9.0.8.

Release notes

Sourced from Microsoft.Data.Sqlite's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration from 9.0.7 to 9.0.8.

Release notes

Sourced from Microsoft.Extensions.Configuration's releases.

9.0.8

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.7...v9.0.8

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration.Abstractions from 9.0.7 to 9.0.8.

Release notes

Sourced from Microsoft.Extensions.Configuration.Abstractions's releases.

9.0.8

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.7...v9.0.8

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration.Binder from 9.0.7 to 9.0.8.

Release notes

Sourced from Microsoft.Extensions.Configuration.Binder's releases.

9.0.8

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.7...v9.0.8

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration.CommandLine from 9.0.7 to 9.0.8.

Release notes

Sourced from Microsoft.Extensions.Configuration.CommandLine's releases.

9.0.8

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.7...v9.0.8

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration.EnvironmentVariables from 9.0.7 to 9.0.8.

Release notes

Sourced from Microsoft.Extensions.Configuration.EnvironmentVariables's releases.

9.0.8

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.7...v9.0.8

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration.Json from 9.0.7 to 9.0.8.

Release notes

Sourced from Microsoft.Extensions.Configuration.Json's releases.

9.0.8

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.7...v9.0.8

Commits viewable in compare view.

Updated Microsoft.Extensions.DependencyInjection from 9.0.7 to 9.0.8.

Release notes

Sourced from Microsoft.Extensions.DependencyInjection's releases.

9.0.8

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.7...v9.0.8

Commits viewable in compare view.

Updated Microsoft.IdentityModel.JsonWebTokens from 8.12.1 to 8.14.0.

Release notes

Sourced from Microsoft.IdentityModel.JsonWebTokens's releases.

8.14.0

8.14.0

Bug Fixes

  • Switch back to use ValidationResult instead of OperationResult when validating a token in a new experimental validation flow. Additionally removed the dependency on Microsoft.IdentityModel.Abstractions. See #​3299 for details.

8.13.1

8.13.1

Dependencies

Microsoft.IdentityModel now depends on Microsoft.Identity.Abstractions 9.3.0

Bug Fixes

  • Fixed a decompression failure happening for large JWE payloads. See #​3286 for details.

Work related to redesign of IdentityModel's token validation logic #​2711

  • Update the validation methods to return Microsoft.Identity.Abstractions.OperationResult. See #​3284 for details.

8.13.0

8.13.0

8.13.0

Fundamentals

  • CaseSensitiveClaimsIdentity.SecurityToken setter is now protected internal (was internal). See PR #​3278 for details.
  • Update .NET SDK version to 9.0.108 used when building or running the code. See PR #​3274 for details.
  • Update RsaSecurityKey.cs to replace the Pkcs1 padding by Pss from HasPrivateKey check. See #​3280 for details.

What's Changed

New Contributors

Full Changelog: AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet@8.12.1...8.13.0

Commits viewable in compare view.

Updated NUnit from 4.3.2 to 4.4.0.

Release notes

Sourced from NUnit's releases.

4.4.0

See release notes for details.

Commits viewable in compare view.

Updated NUnit3TestAdapter from 5.0.0 to 5.1.0.

Release notes

Sourced from NUnit3TestAdapter's releases.

5.1.0

See release notes

Commits viewable in compare view.

Updated Polly from 8.6.1 to 8.6.3.

Release notes

Sourced from Polly's releases.

8.6.3

What's Changed

New Contributors

Full Changelog: App-vNext/Polly@8.6.2...8.6.3

8.6.2

What's Changed

New Contributors

Full Changelog: App-vNext/Polly@8.6.1...8.6.2

Commits viewable in compare view.

Updated Polly.RateLimiting from 8.6.1 to 8.6.3.

Release notes

Sourced from Polly.RateLimiting's releases.

8.6.3

What's Changed

New Contributors

Full Changelog: App-vNext/Polly@8.6.2...8.6.3

8.6.2

What's Changed

New Contributors

Full Changelog: App-vNext/Polly@8.6.1...8.6.2

Commits viewable in compare view.

Updated SonarAnalyzer.CSharp from 10.12.0.118525 to 10.15.0.120848.

Release notes

Sourced from SonarAnalyzer.CSharp's releases.

10.15

False Positive

  • NET-2198 - Fix S1905 FP: Cast of default! expression is required
  • NET-2197 - Fix S1905 FP: stackalloc and Span conversions
  • NET-1641 - Fix S1905 FP: casting IEnumerable<string?> to IEnumerable<string>
  • NET-2157 - Fix S2589 FP: Don't raise an issue after a delegate is invoked
  • NET-2073 - Fix S2699 FP: Add support for FsCheck property tests
  • NET-1537 - Fix S6964 FP: Don't raise on properties annotated with the BindRequiredAttribute

Improvement

  • NET-2112 - Consider ExplodedNodes relevant if a successor would be relevant
  • NET-2183 - SE: Set constraint on operation when learning from IsPattern

False Negative

  • NET-429 - Fix S4275 FN: Support partial properties

Task

  • NET-2208 - Update RSpec before release

10.14

Hey everyone,

This release mostly focuses on mitigating (NET-2196) a performance regression that was introduced in 10.13.

Improvement

  • NET-2196 - Fix path algorithm for execution flows to mitigate performance regression...

Description has been truncated

Bumps Autofac from 8.3.0 to 8.4.0
Bumps AWSSDK.CloudWatchLogs from 4.0.5.1 to 4.0.7.7
Bumps AWSSDK.Core from 4.0.0.14 to 4.0.0.26
Bumps AWSSDK.Extensions.NETCore.Setup from 4.0.0 to 4.0.2.2
Bumps AWSSDK.SimpleSystemsManagement from 4.0.0 to 4.0.3.1
Bumps Azure.Identity from 1.14.1 to 1.15.0
Bumps FluentAssertions from 8.4.0 to 8.6.0
Bumps Microsoft.CodeAnalysis.CSharp.CodeStyle from 4.11.0 to 4.14.0
Bumps Microsoft.Data.SqlClient from 6.0.2 to 6.1.1
Bumps Microsoft.Data.Sqlite from 9.0.7 to 9.0.8
Bumps Microsoft.Extensions.Configuration from 9.0.7 to 9.0.8
Bumps Microsoft.Extensions.Configuration.Abstractions from 9.0.7 to 9.0.8
Bumps Microsoft.Extensions.Configuration.Binder from 9.0.7 to 9.0.8
Bumps Microsoft.Extensions.Configuration.CommandLine from 9.0.7 to 9.0.8
Bumps Microsoft.Extensions.Configuration.EnvironmentVariables from 9.0.7 to 9.0.8
Bumps Microsoft.Extensions.Configuration.Json from 9.0.7 to 9.0.8
Bumps Microsoft.Extensions.DependencyInjection from 9.0.7 to 9.0.8
Bumps Microsoft.IdentityModel.JsonWebTokens from 8.12.1 to 8.14.0
Bumps NUnit from 4.3.2 to 4.4.0
Bumps NUnit3TestAdapter from 5.0.0 to 5.1.0
Bumps Polly from 8.6.1 to 8.6.3
Bumps Polly.RateLimiting from 8.6.1 to 8.6.3
Bumps SonarAnalyzer.CSharp from 10.12.0.118525 to 10.15.0.120848
Bumps System.DirectoryServices.Protocols from 9.0.7 to 9.0.8
Bumps System.Drawing.Common from 9.0.7 to 9.0.8
Bumps System.IdentityModel.Tokens.Jwt from 8.12.1 to 8.14.0
Bumps System.Security.Cryptography.Xml from 9.0.7 to 9.0.8
Bumps System.Text.Json from 9.0.7 to 9.0.8
Bumps System.Threading.RateLimiting from 9.0.7 to 9.0.8
Bumps System.Threading.Tasks.Dataflow from 9.0.7 to 9.0.8

---
updated-dependencies:
- dependency-name: Autofac
  dependency-version: 8.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patches
- dependency-name: Autofac
  dependency-version: 8.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patches
- dependency-name: Autofac
  dependency-version: 8.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patches
- dependency-name: AWSSDK.CloudWatchLogs
  dependency-version: 4.0.7.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: AWSSDK.Core
  dependency-version: 4.0.0.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: AWSSDK.Extensions.NETCore.Setup
  dependency-version: 4.0.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: AWSSDK.SimpleSystemsManagement
  dependency-version: 4.0.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Azure.Identity
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patches
- dependency-name: FluentAssertions
  dependency-version: 8.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patches
- dependency-name: Microsoft.CodeAnalysis.CSharp.CodeStyle
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patches
- dependency-name: Microsoft.Data.SqlClient
  dependency-version: 6.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patches
- dependency-name: Microsoft.Data.Sqlite
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Microsoft.Extensions.Configuration
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Microsoft.Extensions.Configuration
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Microsoft.Extensions.Configuration.Abstractions
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Microsoft.Extensions.Configuration
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Microsoft.Extensions.Configuration.Abstractions
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Microsoft.Extensions.Configuration.Binder
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Microsoft.Extensions.Configuration.Binder
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Microsoft.Extensions.Configuration.Binder
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Microsoft.Extensions.Configuration.CommandLine
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Microsoft.Extensions.Configuration.CommandLine
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Microsoft.Extensions.Configuration.EnvironmentVariables
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Microsoft.Extensions.Configuration.EnvironmentVariables
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Microsoft.Extensions.Configuration.Json
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: System.Text.Json
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Microsoft.Extensions.Configuration.Json
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: System.Text.Json
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Microsoft.IdentityModel.JsonWebTokens
  dependency-version: 8.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patches
- dependency-name: NUnit
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patches
- dependency-name: NUnit3TestAdapter
  dependency-version: 5.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patches
- dependency-name: Polly
  dependency-version: 8.6.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: Polly.RateLimiting
  dependency-version: 8.6.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: SonarAnalyzer.CSharp
  dependency-version: 10.15.0.120848
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patches
- dependency-name: System.DirectoryServices.Protocols
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: System.Drawing.Common
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: System.IdentityModel.Tokens.Jwt
  dependency-version: 8.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patches
- dependency-name: System.Security.Cryptography.Xml
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: System.Text.Json
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: System.Text.Json
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: System.Text.Json
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: System.Text.Json
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: System.Text.Json
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: System.Text.Json
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: System.Threading.RateLimiting
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: System.Threading.Tasks.Dataflow
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: System.Threading.Tasks.Dataflow
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
...

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 Sep 1, 2025
Copy link

github-actions bot commented Sep 1, 2025

Test Results

0 tests   0 ✅  0s ⏱️
0 suites  0 💤
0 files    0 ❌

Results for commit c13915c.

Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 8, 2025

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot bot closed this Sep 8, 2025
@dependabot dependabot bot deleted the dependabot/nuget/src/EdFi.Tools.ApiPublisher.Cli/main/minor-patches-875a531efe branch September 8, 2025 12:33
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.

0 participants