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

Merged
merged 3 commits into from
Jun 26, 2025
Merged

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
Altinn.Platform.Storage.Interface 4.0.10 -> 4.0.11 age adoption passing confidence nuget patch 4.0.12
Azure.Identity (source) 1.13.2 -> 1.14.0 age adoption passing confidence nuget minor 1.14.1
Azure.Monitor.OpenTelemetry.Exporter (source) 1.3.0 -> 1.4.0 age adoption passing confidence nuget minor
BenchmarkDotNet 0.14.0 -> 0.15.2 age adoption passing confidence nuget minor
BenchmarkDotNet.Diagnostics.dotTrace 0.14.0 -> 0.15.2 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.17 age adoption passing confidence nuget patch
Microsoft.AspNetCore.TestHost (source) 8.0.12 -> 8.0.17 age adoption passing confidence nuget patch
Microsoft.Build.Tasks.Core (source) 17.10.29 -> 17.14.8 age adoption passing confidence nuget minor
Microsoft.CodeAnalysis.CSharp 4.10.0 -> 4.14.0 age adoption passing confidence nuget minor
Microsoft.Extensions.Caching.Hybrid (source) 9.3.0 -> 9.6.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.12.1 age adoption passing confidence nuget minor
Microsoft.NET.Test.Sdk 17.13.0 -> 17.14.1 age adoption passing confidence nuget minor
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-beta14 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.4 age adoption passing confidence nuget minor
System.Linq.Async 6.0.1 -> 6.0.3 age adoption passing confidence nuget patch
Verify.Http 6.4.1 -> 6.6.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.13 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.411 age adoption passing confidence dotnet-sdk patch
xunit.runner.visualstudio 3.0.2 -> 3.1.1 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.2: 0.15.2

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

Highlights
  • The most significant update in this release is the enhanced accuracy of the memory diagnoser (#​2562). This improvement resolves the issue of incorrectly reported memory allocations (#​1542, #​2582).
  • We have introduced a new feature that allows users to sort benchmark jobs in numerical order (#​2768, #​2770).
  • Benchmark validation has been improved (#​2771).
  • An issue with non-persistent auto-generated JobId has been fixed (#​2777).

v0.15.1: 0.15.1

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

Highlights

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

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/msbuild (Microsoft.Build.Tasks.Core)

v17.14.8

What's Changed

Full Changelog: dotnet/msbuild@v17.14.5...v17.14.8

v17.14.5

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 3 times, most recently from 5ad42f5 to 095153f Compare June 7, 2025 11:28
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 7 times, most recently from 48d5183 to d157c5b Compare June 16, 2025 12:54
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 4 times, most recently from 72a22d2 to e64bfeb Compare June 21, 2025 15:46
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch from e64bfeb to 3ab37d7 Compare June 26, 2025 08:48
@martinothamar martinothamar self-assigned this Jun 26, 2025
@martinothamar martinothamar moved this to 👷 In Progress in Team Apps Jun 26, 2025
@martinothamar martinothamar added the backport-ignore This PR is a new feature and should not be cherry-picked onto release branches label Jun 26, 2025
Copy link
Contributor Author

renovate bot commented Jun 26, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Copy link

Quality Gate Failed Quality Gate failed

Failed conditions
50.0% Coverage on New Code (required ≥ 65%)

See analysis details on SonarQube Cloud

@martinothamar
Copy link
Contributor

  • Update snapshots
  • Fix breaking change from NetEscapades.EnumGenerators
  • Revert bump of Microsoft.Build.Tasks.Core as it is not compatible with Buildalyzer
  • Ignore the Roslyn libraries in renovate config since it doesn't make sense from the analyzer packaging to always take the latest (we want lower versions to support more IDE/tooling versions)
  • Backport-ignore since the changes here are pretty large and it includes Storage.Interface stuff

@martinothamar martinothamar merged commit 5955b92 into main Jun 26, 2025
11 of 13 checks passed
@github-project-automation github-project-automation bot moved this from 👷 In Progress to 🧪 Test in Team Apps Jun 26, 2025
@martinothamar martinothamar deleted the renovate/nuget-minor-patch branch June 26, 2025 14:33
@martinothamar martinothamar moved this from 🧪 Test to ✅ Done in Team Apps Jun 30, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport-ignore This PR is a new feature and should not be cherry-picked onto release branches dependency Label Pull requests with dependency updates. Used when generation releasenotes
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

1 participant