Skip to content

Update nuget non-major dependencies #1071

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 30, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
Azure.Identity (source) 1.13.2 -> 1.14.0 age adoption passing confidence nuget minor
Azure.Monitor.OpenTelemetry.Exporter (source) 1.3.0 -> 1.4.0 age adoption passing confidence nuget minor
BenchmarkDotNet 0.14.0 -> 0.15.0 age adoption passing confidence nuget minor
BenchmarkDotNet.Diagnostics.dotTrace 0.14.0 -> 0.15.0 age adoption passing confidence nuget minor
CSharpier.MsBuild 1.0.1 -> 1.0.2 age adoption passing confidence nuget patch
FluentAssertions (source) 7.1.0 -> 7.2.0 age adoption passing confidence nuget minor
Microsoft.AspNetCore.Mvc.Testing (source) 8.0.12 -> 8.0.16 age adoption passing confidence nuget patch
Microsoft.AspNetCore.TestHost (source) 8.0.12 -> 8.0.16 age adoption passing confidence nuget patch
Microsoft.CodeAnalysis.CSharp 4.10.0 -> 4.14.0 age adoption passing confidence nuget minor
Microsoft.Extensions.Caching.Hybrid (source) 9.3.0 -> 9.5.0 age adoption passing confidence nuget minor
Microsoft.FeatureManagement.AspNetCore 4.0.0 -> 4.1.0 age adoption passing confidence nuget minor
Microsoft.IdentityModel.Protocols.OpenIdConnect 8.7.0 -> 8.11.0 age adoption passing confidence nuget minor 8.12.0
Microsoft.NET.Test.Sdk 17.13.0 -> 17.14.0 age adoption passing confidence nuget minor 17.14.1
Microsoft.OpenApi 1.6.23 -> 1.6.24 age adoption passing confidence nuget patch
Microsoft.OpenApi.Readers 1.6.23 -> 1.6.24 age adoption passing confidence nuget patch
NetEscapades.EnumGenerators 1.0.0-beta11 -> 1.0.0-beta13 age adoption passing confidence nuget patch
Nullable.Extended.Analyzer 1.15.6495 -> 1.15.6581 age adoption passing confidence nuget patch
OpenTelemetry (source) 1.11.2 -> 1.12.0 age adoption passing confidence nuget minor
OpenTelemetry.Api (source) 1.11.2 -> 1.12.0 age adoption passing confidence nuget minor
OpenTelemetry.Exporter.OpenTelemetryProtocol (source) 1.11.2 -> 1.12.0 age adoption passing confidence nuget minor
OpenTelemetry.Extensions.Hosting (source) 1.11.2 -> 1.12.0 age adoption passing confidence nuget minor
OpenTelemetry.Instrumentation.AspNetCore (source) 1.11.1 -> 1.12.0 age adoption passing confidence nuget minor
OpenTelemetry.Instrumentation.Http (source) 1.11.1 -> 1.12.0 age adoption passing confidence nuget minor
OpenTelemetry.Instrumentation.Runtime (source) 1.11.1 -> 1.12.0 age adoption passing confidence nuget minor
Swashbuckle.AspNetCore 8.0.0 -> 8.1.2 age adoption passing confidence nuget minor 8.1.4 (+1)
Verify.Http 6.4.1 -> 6.5.0 age adoption passing confidence nuget minor
Verify.Xunit 29.3.0 -> 29.5.0 age adoption passing confidence nuget minor
WireMock.Net 1.7.4 -> 1.8.9 age adoption passing confidence nuget minor
csharpier 1.0.1 -> 1.0.2 age adoption passing confidence nuget patch
dotnet-sdk 8.0.407 -> 8.0.410 age adoption passing confidence dotnet-sdk patch
xunit.runner.visualstudio 3.0.2 -> 3.1.0 age adoption passing confidence nuget minor

Release Notes

Azure/azure-sdk-for-net (Azure.Identity)

v1.14.0

Compare Source

1.14.0 (2025-05-13)

Other Changes
  • Removed references to Username, Password, AZURE_USERNAME, and AZURE_PASSWORD in XML comments from EnvironmentCredentialOptions and EnvironmentCredential due to lack of MFA support. See MFA enforcement details.
  • Marked AZURE_USERNAME and AZURE_PASSWORD as obsolete due to lack of MFA support. See MFA enforcement details.
  • Added support for the AZURE_TOKEN_CREDENTIALS environment variable to DefaultAzureCredential, which allows for choosing between 'deployed service' and 'developer tools' credentials. Valid values are 'dev' for developer tools and 'prod' for deployed service.
dotnet/BenchmarkDotNet (BenchmarkDotNet)

v0.15.0: 0.15.0

Full changelog: https://benchmarkdotnet.org/changelog/v0.15.0.html

belav/csharpier (CSharpier.MsBuild)

v1.0.2

Compare Source

What's Changed

Performance issues when supporting .gitignore. #​1588

CSharpier was using a naive algorithm for parsing and evaluating gitignore rules that caused significant perfomance issues. @​kevinboss reworked the implementation to drastically increate performance.

Exclude bin/ and obj/ directory content from xml formatting #​1600

CSharpier now excludes all files in bin/ and obj/ by default.

Error on syntactically valid conditional with is #​1612

The following c# is valid and compiles with 9.0.300+. CSharpier was updated to properly parse it.

var x = y is y ? [] : z ?? [];
Xml formatting with comments in text element inserts extra new lines #​1607

CSharpier has some issues with formatting text that contained xml comments. That has been improved.

Input & expected output

<NoWarn>
  CA1031; <!-- Since this is not a library project, catching general exceptions is OK -->
  IDE0005; <!-- Allow unused usings -->
</NoWarn>

1.0.1

<NoWarn
    >
      CA1031;
    <!-- Since this is not a library project, catching general exceptions is OK -->

    
      IDE0005;
    <!-- Allow unused usings -->
</NoWarn>
Inconsistent formatting of single-line lambda expressions #​1594

CSharpier 1.0.0 introduced a regression that caused the following formatting. This is now working as expected.

// input & expected output
        CallMethod(() => CallAnotherMethod______________________________________________________());
        CallMethod(() =>
            CallAnotherMethod______________________________________________________1()
        );
        CallMethod(() =>
            CallAnotherMethod______________________________________________________12()
        );
        CallMethod(() =>
            CallAnotherMethod______________________________________________________123()
        );

// 1.0.0
        CallMethod(() => CallAnotherMethod______________________________________________________());
        CallMethod(() => CallAnotherMethod______________________________________________________1()
        );
        CallMethod(() => CallAnotherMethod______________________________________________________12()
        );
        CallMethod(() =>
            CallAnotherMethod______________________________________________________123()
        );

Full Changelog: belav/csharpier@1.0.1...1.0.2

fluentassertions/fluentassertions (FluentAssertions)

v7.2.0

Compare Source

What's Changed
Improvements
Fixes
Others

Full Changelog: fluentassertions/fluentassertions@7.1.0...7.2.0

dotnet/aspnetcore (Microsoft.AspNetCore.Mvc.Testing)

v8.0.16: .NET 8.0.16

Release

What's Changed

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

v8.0.15: .NET 8.0.15

Release

What's Changed

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

v8.0.14: .NET 8.0.14

Release

What's Changed

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

v8.0.13: .NET 8.0.13

Release

What's Changed

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

dotnet/extensions (Microsoft.Extensions.Caching.Hybrid)

v9.5.0

What's Changed


Configuration

📅 Schedule: Branch creation - "before 07:00 on Thursday" in timezone Europe/Oslo, Automerge - At any time (no schedule defined).

🚦 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependency Label Pull requests with dependency updates. Used when generation releasenotes label Jan 30, 2025
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 3 times, most recently from ac4529c to 48b1e59 Compare January 30, 2025 20:09
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 6 times, most recently from ed3ae5e to d332213 Compare February 14, 2025 00:28
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 5 times, most recently from 5f1c6c6 to 43d01c2 Compare February 18, 2025 01:02
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 7 times, most recently from 9615174 to 9115416 Compare March 1, 2025 12:49
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 5 times, most recently from 19c09a7 to df9385a Compare March 8, 2025 20:30
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 3 times, most recently from afc06ff to 00bb316 Compare March 12, 2025 10:41
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 9 times, most recently from 32e27ba to 21309d4 Compare May 9, 2025 21:11
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 6 times, most recently from ab3fd15 to 5ea714c Compare May 17, 2025 00:49
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 5 times, most recently from d3d41e6 to 2d79a16 Compare May 23, 2025 09:12
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 8 times, most recently from 114fa4c to 82e7c0c Compare May 31, 2025 07:26
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch from 82e7c0c to ab7a395 Compare June 2, 2025 07:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependency Label Pull requests with dependency updates. Used when generation releasenotes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants