Skip to content

chore(deps): update nuget non-major dependencies#412

Merged
Alxandr merged 2 commits intomainfrom
renovate/nuget-minor-patch
Jan 15, 2026
Merged

chore(deps): update nuget non-major dependencies#412
Alxandr merged 2 commits intomainfrom
renovate/nuget-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 6, 2025

This PR contains the following updates:

Package Change Age Confidence
Altinn.Common.AccessTokenClient 3.0.153.2.0 age confidence
Microsoft.AspNetCore.Mvc.Testing (source) 10.0.010.0.1 age confidence
Microsoft.AspNetCore.Mvc.Testing (source) 9.0.109.0.11 age confidence
Microsoft.AspNetCore.Mvc.Testing (source) 8.0.218.0.22 age confidence
Microsoft.AspNetCore.Routing (source) 2.3.02.3.9 age confidence
Microsoft.AspNetCore.WebUtilities (source) 9.0.109.0.11 age confidence
Microsoft.Build.Locator 1.10.121.11.2 age confidence
Microsoft.Extensions.Caching.Hybrid (source) 10.0.010.1.0 age confidence
Microsoft.Extensions.DependencyInjection.Abstractions (source) 9.0.109.0.11 age confidence
Microsoft.Extensions.FileProviders.Embedded (source) 9.0.109.0.11 age confidence
Microsoft.Extensions.Hosting (source) 9.0.109.0.11 age confidence
Microsoft.Extensions.Hosting.Abstractions (source) 9.0.109.0.11 age confidence
Microsoft.Extensions.Http (source) 9.0.109.0.11 age confidence
Microsoft.Extensions.Options (source) 9.0.109.0.11 age confidence
Microsoft.IdentityModel.Tokens 8.14.08.15.0 age confidence
Microsoft.NET.Test.Sdk 18.0.018.0.1 age confidence
Spectre.Console 0.53.00.54.0 age confidence
Spectre.Console.Cli 0.53.00.53.1 age confidence
System.CommandLine (source) 2.0.0-rc.2.25502.1072.0.1 age confidence
System.IdentityModel.Tokens.Jwt 8.14.08.15.0 age confidence
System.Linq.AsyncEnumerable (source) 10.0.010.0.1 age confidence
Testcontainers.PostgreSql (source) 4.8.14.10.0 age confidence
Verify.XunitV3 31.0.531.9.3 age confidence
xunit.v3 3.1.03.2.1 age confidence
xunit.v3.assert 3.1.03.2.1 age confidence
xunit.v3.extensibility.core 3.1.03.2.1 age confidence

Release Notes

Altinn/altinn-accesstoken (Altinn.Common.AccessTokenClient)

v3.2.0

Compare Source

What's Changed

v3.1.0

Compare Source

What's Changed

This change list contains changes for both Altinn.Common.AccessToken and Altinn.Common.AccessTokenClient:

  • chore(deps): update dependency azure.identity to 1.14.2 by @​renovate[bot] in #​156
  • chore(deps): update dependency xunit.runner.visualstudio to 3.1.3 by @​renovate[bot] in #​157
  • chore(deps): update dependency microsoft.identitymodel.protocols.openidconnect to 8.13.0 by @​renovate[bot] in #​159
  • chore(deps): update dependency microsoft.identitymodel.protocols.openidconnect to 8.13.1 by @​renovate[bot] in #​161
  • chore(deps): update nuget non-major dependencies by @​renovate[bot] in #​164
  • chore(deps): update dependency azure.identity to 1.16.0 by @​renovate[bot] in #​171
  • chore(deps): update dependency xunit.runner.visualstudio to 3.1.5 by @​renovate[bot] in #​173
  • chore(deps): update dependency microsoft.net.test.sdk to v18 by @​renovate[bot] in #​176
  • chore(deps): update dependency azure.identity to 1.17.0 by @​renovate[bot] in #​178
  • chore(deps): update dependency microsoft.net.test.sdk to 18.0.1 by @​renovate[bot] in #​186
  • chore(deps): update nuget non-major dependencies by @​renovate[bot] in #​189

Full Changelog: Altinn/altinn-accesstoken@Altinn.Common.AccessToken-5.0.5...Altinn.Common.AccessToken-5.1.0

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

v10.0.1

microsoft/MSBuildLocator (Microsoft.Build.Locator)

v1.11.1

What's Changed

New Contributors

Full Changelog: microsoft/MSBuildLocator@v1.10.12...v1.11.1

AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet (Microsoft.IdentityModel.Tokens)

v8.15.0

Compare Source

====

New Features

  • Add ECDsa support in X509SecurityKey and JsonWebKeyConverter.ConvertFromX509SecurityKey
    Extended X509SecurityKey and JsonWebKeyConverter.ConvertFromX509SecurityKey to support ECDSA keys.
    See PR #​2377 for details.

Bug Fixes

  • Sanitize logs to avoid leaking sensitive data
    Updated logging to sanitize sensitive values, reducing the risk of inadvertently exposing secrets or PII in logs.
    See PR #​3316 for details.
  • Optimize log sanitization with SearchValues
    Improved the performance of the log sanitization logic introduced earlier by using SearchValues, making sanitization more efficient in high-throughput scenarios.
    See PR #​3341 for details.
  • Update test for IDX10400
    Adjusted the IDX10400 test to align with the current behavior and error messaging.
    See PR #​3314 for details.

Fundamentals

  • Add supported algorithm tests
    Added new tests to validate the set of supported cryptographic algorithms, increasing confidence in algorithm coverage and compatibility.
    See PR #​3296 for details.
  • Migrate repository agent rules from .clinerules to agents.md
    Moved repository agent/AI-assist rules into markdown documentation to make them more visible and easier to maintain.
    See PR #​3313 for details.
  • Migrate Microsoft.IdentityModel.TestExtensions from Newtonsoft.Json to System.Text.Json
    Updated Microsoft.IdentityModel.TestExtensions to use System.Text.Json instead of Newtonsoft.Json, aligning tests with the runtime serialization stack.
    See PR #​3356 for details.
  • Disable code coverage comments
    Turned off automated code coverage comments on PRs to reduce noise while retaining coverage data elsewhere.
    See PR #​3349 for details.
  • Fix CodeQL alerts
    Addressed CodeQL-reported issues to improve security posture and static analysis cleanliness.
    See PR #​3364 for details.
.NET 10 / SDK and tooling updates
  • Building with .NET 10 preview / RC 1
    Updated the repository to build and test against .NET 10.0 preview/RC1, ensuring early compatibility with the upcoming runtime.
    See PRs #​3287, #​3357, and #​3358 for details.
  • Fix .NET 10 test execution consistency
    Ensured consistent use of the TargetNetNext parameter across build, test, and pack phases so .NET 10.0 tests execute reliably.
    See PR #​3337 for details.
  • Update project files and workflows for .NET 10.0 compatibility
    Adjusted project files and CI workflows to correctly target and run on .NET 10.0, including test and pack scenarios.
    See PR #​3363 for details.
  • Update .NET version to meet CG compliance
    Updated the .NET version references to be compliant with corporate governance (CG) requirements.
    See PR #​3353 for details.
  • Update Coverlet collector and test SDK
    • Bumped CoverletCollectorVersion to 6.0.4.
      See PR #​3333 for details.
    • Upgraded Microsoft.NET.Test.Sdk to a newer version for improved test reliability and tooling support.
      See PR #​3336 for details.
  • Update runTests.ps1 to specify dotnet directory
    Updated runTests.ps1 to accept an explicit dotnet directory, improving test execution robustness in environments with multiple SDK installations.
    See PR #​3368 for details.
  • Adjust dotnetcore workflow targeting for .NET 10 SDK
    Iterated on the CI workflow configuration to correctly target the .NET 10 SDK:
    • Temporarily removed targeting of the .NET 10 SDK in dotnetcore.yml.
      See PR #​3335.
    • Reverted that change to restore .NET 10 SDK targeting.
      See PR #​3339 for details.
Documentation
  • Update support policy documentation
    Refreshed supportPolicy.md to reflect the latest support policy for IdentityModel.
    See PR #​3367 for details.
microsoft/vstest (Microsoft.NET.Test.Sdk)

v18.0.1

What's Changed

Fixing an issue with loading covrun64.dll on systems that have .NET 10 SDK installed: https://learn.microsoft.com/en-us/dotnet/core/compatibility/sdk/10.0/code-coverage-dynamic-native-instrumentation

Internal changes

Full Changelog: microsoft/vstest@v18.0.0...v18.0.1

spectreconsole/spectre.console (Spectre.Console)

v0.54.0

Compare Source

Version 0.54.0 of Spectre.Console has been released!

Spectre.Console.Cli has a new home!

We've decided to move Spectre.Console.Cli to its own repository, where we will prepare it for a 1.0 release. This means that the Spectre.Console.Cli NuGet packages will no longer be versioned together with Spectre.Console. They will now have a preview version such as 1.0.0-alpha-0.x.

There should be no issues staying on version 0.53.0 of Spectre.Console.Cli until we release a stable version if you prefer not to use a pre-release dependency.

New unit testing package for Spectre.Console.Cli

There is now a new testing package for Spectre.Console.Cli called Spectre.Console.Cli.Testing. This is where you will find the CommandAppTester from now on.

You can find more information about unit testing in the documentation.

What's Changed

Full Changelog: spectreconsole/spectre.console@0.53.0...0.54.0

v0.53.1: (hotfix)

Compare Source

This is a hotfix release for 0.53.0, which accidentally included OpenCli.Sources as a dependency, instead of being included in the package.

As a bonus, a fix for panels was also included in this release 😄

What's Changed

Full Changelog: spectreconsole/spectre.console@0.53.0...0.53.1

testcontainers/testcontainers-dotnet (Testcontainers.PostgreSql)

v4.10.0

Compare Source

What's Changed

Happy New Year, everyone! 🎉

Please note that going forward, we expect developers to explicitly pin the image version (https://redirect.github.com/testcontainers/testcontainers-dotnet/discussions/1470). We consider this a best practice and it aligns with other language implementations.

Also, due to the recent Docker Engine v29 release, TC for .NET pins the Docker Engine API version to 1.44 (see the previous release notes). You can override this default and set it to the version you're using, ideally 1.52, which corresponds to v29, if you're already running it.

⚠️ Breaking Changes
🚀 Features
🐛 Bug Fixes
📖 Documentation
🧹 Housekeeping

v4.9.0

Compare Source

What's Changed

This release adds a new configuration (DOCKER_API_VERSION) that lets you pin and downgrade the Docker Engine API version. This was needed because Docker Engine v29 introduced breaking changes that affect Docker.DotNet and Testcontainers for .NET. This release pins the API version to 1.44. So far, no issues or negative side effects have been observed.

I am also working on updating Docker.DotNet to make it fully compatible with Docker Engine v29. There is already a work-in-progress PR.

Thanks to all the contributors who helped with this release 👍.

⚠️ Breaking Changes
🚀 Features
🐛 Bug Fixes
📖 Documentation
🧹 Housekeeping
VerifyTests/Verify (Verify.XunitV3)

v31.9.3

Compare Source

v31.9.2

Compare Source

v31.9.1

Compare Source

v31.9.0

Compare Source

v31.8.0

Compare Source

v31.7.3

Compare Source

v31.7.2

Compare Source

v31.7.1

Compare Source

v31.7.0

Compare Source

v31.6.1

Compare Source

v31.6.0

Compare Source

v31.5.3

Compare Source

v31.5.2

Compare Source

v31.5.1

Compare Source

v31.5.0

Compare Source

v31.4.3

Compare Source

v31.4.2

Compare Source

v31.4.1

Compare Source

v31.4.0

Compare Source

v31.3.0

Compare Source

v31.2.0

Compare Source

v31.1.0

Compare Source


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 dependencies label Nov 6, 2025
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 5 times, most recently from 4609368 to 2de644d Compare November 14, 2025 03:06
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 12 times, most recently from 29cae0f to 4139e48 Compare November 18, 2025 18:03
@sonarqubecloud
Copy link

@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 5 times, most recently from c527163 to 4946fcf Compare November 26, 2025 18:05
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 6 times, most recently from 76cc156 to 73efeea Compare December 1, 2025 22:37
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 2 times, most recently from 4b0a04a to 67654dd Compare December 5, 2025 10:46
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 2 times, most recently from b86e4f5 to b43f1cc Compare December 12, 2025 23:49
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 2 times, most recently from 24e0e73 to d244589 Compare December 20, 2025 14:45
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 3 times, most recently from 3b5d4e4 to 2089605 Compare December 30, 2025 06:14
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 2 times, most recently from 1b52739 to a84b301 Compare January 10, 2026 02:25
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch from a84b301 to 0278bd0 Compare January 10, 2026 22:23
@renovate
Copy link
Contributor Author

renovate bot commented Jan 15, 2026

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.

@sonarqubecloud
Copy link

@Alxandr Alxandr merged commit 4e5b0a1 into main Jan 15, 2026
7 checks passed
@Alxandr Alxandr deleted the renovate/nuget-minor-patch branch January 15, 2026 12:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant