Skip to content

Update nuget non-major dependencies (minor)#1787

Open
renovate[bot] wants to merge 2 commits into
mainfrom
renovate/nuget-minor-patch
Open

Update nuget non-major dependencies (minor)#1787
renovate[bot] wants to merge 2 commits into
mainfrom
renovate/nuget-minor-patch

Conversation

@renovate

@renovate renovate Bot commented May 31, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
Altinn.ApiClients.Maskinporten 10.0.110.1.0 age confidence
CSharpier.Core 1.2.61.3.0 age confidence
CSharpier.MsBuild 1.2.61.3.0 age confidence
Microsoft.Extensions.Caching.Hybrid (source) 10.6.010.7.0 age confidence
Microsoft.IdentityModel.Protocols.OpenIdConnect 8.18.08.19.1 age confidence
Microsoft.NET.Test.Sdk 18.5.118.7.0 age confidence
OpenTelemetry (source) 1.15.31.16.0 age confidence
OpenTelemetry.Api (source) 1.15.31.16.0 age confidence
OpenTelemetry.Exporter.InMemory (source) 1.15.31.16.0 age confidence
OpenTelemetry.Exporter.OpenTelemetryProtocol (source) 1.15.31.16.0 age confidence
OpenTelemetry.Extensions.Hosting (source) 1.15.31.16.0 age confidence
Polly.Extensions 8.6.68.7.0 age confidence
Polly.Testing 8.6.68.7.0 age confidence
PolySharp 1.15.01.16.0 age confidence
WireMock.Net 2.7.02.11.0 age confidence
csharpier 1.2.61.3.0 age confidence

Release Notes

Altinn/altinn-apiclient-maskinporten (Altinn.ApiClients.Maskinporten)

v10.1.0: Add system user support to EndUser

What's Changed

New Contributors

Full Changelog: Altinn/altinn-apiclient-maskinporten@v10.0.1...v10.1.0

belav/csharpier (CSharpier.Core)

v1.3.0

Compare Source

Breaking Changes

Change xml formatting to return error when it runs into syntax error so it is consistent with c# #​1854

Previously CSharpier treated an invalid xml file as a warning instead of an error. This was inconsistent with how it treated c# files.
Invalid c# or xml files are not treated as errors.
The --compilation-errors-as-warnings argument has been renamed to --syntax-errors-as-warnings and can be used to return warnings instead of errors when encountering invalid files.

What's Changed

Feature: Configurable whitespace handling for xml #​1790

CSharpier now supports two types of xml whitespace formatting strict or ignore.
By default all xml except xaml or axaml is treated as strict whitespace. See details

Feature: Move closing bracket for xml elements to the same line. #​1598

With strict xml whitespace handling, csharpier now keeps the closing bracket for an element on the same line instead of breaking it to a new line.

<!-- input & expected output -->
<ElementWithAttribute Attribute="AttributeValue__________________"
  >TextValue</ElementWithAttribute>

<!-- 1.2.6 -->
<ElementWithAttribute Attribute="AttributeValue__________________"
  >TextValue</ElementWithAttribute
>
Feature: Support for csharpier-ignore with XML formatter #​1788

CSharpier now supports csharpier-ignore in xml files. See details

Feature: Add MSBuild transitive and multi-target support #​1833

CSharpier.MSBuild can now work as a transitive dependency.

Feature: allow checking formatting with cache #​1830

The csharpier check command now supports a --use-cache option.

Feature: remove dependency on Microsoft.AspNetCore.App #​1508

Previously CSharpier required that Microsoft.AspNetCore.App be installed. CSharpier has been modified to use an HttpListener when it is run using server to remove the need for this dependency.

Fix: csharpier-ignore comment removes linespaces before block #​1867

CSharpier was removing blank lines before csharpier-ignore comments in some cases

// input and expected output
var x = 1;
    
// csharpier-ignore
var y=1;

/// 1.2.6
var x = 1;
// csharpier-ignore
var y=1;
Fix: Inconsistent indentation for raw string literals. #​1857

CSharpier was not consistently indenting raw string literals when they were inside of simple lambdas.

// input & expected output
CallMethod(() =>
{
    var someString = """
        SomeRawString
        """;
});

// 1.2.6
CallMethod(() =>
{
    var someString = """
    SomeRawString
    """;
});
Fix: case of modifier reorder with leading trivia #​1855

CSharpier was incorrectly reporting a syntax validation failure when it was reordering modifiers. This is now resolved.

// when this code is modified and the modifiers are reorderd it should not report a syntax validation failure.
public class ClassName
{
    // SomeComment
    override public int GetHashCode() => 0;
}
Fix: Xml breaks final element when it contains mixed content #​1841

CSharpier was breaking the end element in some cases when it should not be.

<!-- input & expected output -->
<HtmlTypeElement
  >Some long text to make things break <a href="http://url.com"
    >url.com</a> more text.</HtmlTypeElement>

<!-- 1.2.6 -->
<HtmlTypeElement
  >Some long text to make things break <a href="http://url.com"
    >url.com</a
  > more text.</HtmlTypeElement
>
Fix: Unable to ignore csharpier formatting within case statement group #​1824

CSharpier now supports csharpier-ignore comments within case statements.

switch (1)
{
    case 2:
        // csharpier-ignore
        var unformatted      = true;
        break;
}
Fix: Incorrect formatting for simple lambda expression with comment #​1147

CSharpier was indenting code for a simple lambda with a leading comment.

// input & expected output
this.Where___________________(
    // Comment
    x =>
    {
        return x;
    }
);

// 1.2.6
this.Where___________________(
    // Comment
    x =>
{
    return x;
});
Fix: Ignores files it shouldn't ignore when negative patterns are used #​1803

Fixed a couple more edgecases with CSharpier not handling negative ignore patterns the same way that git does

Fix: Tolerate missing directories when formatting from stdin #​1848

CSharpier was throwing a DirectoryNotFoundException if it were passed a path via --stdin-path with a directory that did not exist.

Fix: Stop .gitignore walk at git worktree boundary #​1860

When CSharpier walks up the target directory looking for .gitignore files it stops when encountering a .git directory. However in a git worktree there is no directory, .git is a file. This change ensures CSharpier stops when encountering a .git file so that CSharpier behaves the same in a worktree.

perf: cache IgnoreWithBasePath #​1758
perf: fast comparison using FullSpan and source code #​1737
perf: optimise SyntaxNodeComparer #​1730
perf: set capacity of List in MembersForcedLine #​1709
perf: use Stack.Peek to reduce Pop and Push churn #​1708
perf: add Doc.Null check to Argument avoids Concat creation #​1706
perf: use overload for Any( SyntaxTriviaList to prevent allocations #​1703

Full Changelog: belav/csharpier@1.2.6...1.3.0

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

v10.7.0

v10.7.0 graduates the Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes package to stable. The package registers a Kubernetes-aware ResourceQuotaProvider that reads the pod's CPU and memory requests and limits and exposes them to Microsoft.Extensions.Diagnostics.ResourceMonitoring as baseline and maximum quotas, which then feed the request and limit dimensions of the published resource utilization metrics. The companion ResourceQuota and ResourceQuotaProvider types in Microsoft.Extensions.Diagnostics.ResourceMonitoring graduate to stable in the same change so that consumers can implement custom quota providers without taking an experimental dependency.

On the AI side, Microsoft.Extensions.AI.OpenAI moves to OpenAI 2.11.0 and fixes a deserialization bug in ToolJson.AdditionalProperties so that JSON Schema additionalProperties values shaped as sub-schema objects (for example {"type":"string"}) are preserved instead of throwing during deserialization. HostedFileContent.SizeInBytes and HostedFileContent.CreatedAt graduate to stable since both values are consistently available across hosted-file providers, while Purpose and Scope remain experimental as provider-shaped vocabulary. FunctionInvokingChatClient drops a backward-compat path that auto-marked ToolApprovalResponseContent entries with InformationalOnly: true; consumers that need to continue accepting sessions serialized before #​7468 can use the sample ApprovalHistoryNormalizingChatClient middleware added in the test project.

Experimental API Changes
Now Stable
  • Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes package is now stable #​7253
  • Resource Monitoring ResourceQuota and ResourceQuotaProvider APIs are now stable (previously EXTEXP0008) #​7253
  • HostedFileContent.SizeInBytes and HostedFileContent.CreatedAt are now stable (previously MEAI001) #​7513
What's Changed
AI
Diagnostics, Health Checks, and Resource Monitoring
Repository Infrastructure Updates
  • [main] Update dependencies from dotnet/arcade #​7521
  • Bump dotnet-reportgenerator-globaltool from 5.5.9 to 5.5.10 #​7522
  • Bump dotnet-coverage from 18.6.2 to 18.7.0 #​7530
  • Bump PowerShell from 7.6.1 to 7.6.2 #​7531
  • Bump qs from 6.15.1 to 6.15.2 in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7532
  • [main] Update dependencies from dotnet/arcade #​7534
  • Bump tmp from 0.2.5 to 0.2.6 in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7537
Acknowledgements

Full Changelog: dotnet/extensions@v10.6.0...v10.7.0

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

v8.19.1

Compare Source

====

Bug Fixes

  • Update JwtSecurityTokenHandler for IssuerSigningKeyResolverUsingConfiguration to take priority over IssuerSigningKeyResolver, matching the documented contract and the correct behavior already present in JsonWebTokenHandler. See PR #​3519.

v8.19.0

Compare Source

====

New Features

  • Add ML-DSA (FIPS 204) post-quantum signature support. See PR #​3479.
  • Cache custom crypto providers in CryptoProviderFactory. See PR #​3489.

Bug Fixes

  • Disable automatic redirects on default HttpClient for JKU retrieval. See PR #​3494.
  • Adjust rented buffer handling in claim set parsing. See PR #​3493.
  • Tidy null handling in SAML conditions validation. See PR #​3491.
  • Improve validation of jku claim. See PR #​3481.
  • Limit telemetry algorithm dimension cardinality. See PR #​3490.
  • Add defensive copy of collections in ValidationParameters. See PR #​3492.
  • Update TokenValidationParameter copy constructor to make a deep copy. See PR #​3488.
  • Update to fail-closed when replay protection isn't configured and other DPoP hardening. See PR #​3505.
  • Apply RFC 3986 section 6.2.2 normalization to DPoP htu comparison. See PR #​3509.
microsoft/vstest (Microsoft.NET.Test.Sdk)

v18.7.0

What's Changed

New Contributors

Full Changelog: microsoft/vstest@v18.6.0...v18.7.0

v18.6.0

What's Changed

Changes to tests and infra

Full Changelog: microsoft/vstest@v18.5.1...v18.6.0

open-telemetry/opentelemetry-dotnet (OpenTelemetry)

v1.16.0

Release details: 1.16.0

  • Breaking Change Explicit histogram boundaries no longer allow more than
    10 million values.
  • Fix BaggagePropagator to correctly follow Key and Value Encoding rules.
  • Add support for the W3C randomness flag.
  • Fixed TraceContextPropagator to deduplicate duplicate tracestate keys.
  • ObservedTimestamp will now be exported for logs in the console exporter.
  • Fixed NullReferenceException when exporting OTLP logs if the scope key is
    null.
  • Added opt-in support for gzip compression to the OTLP exporter.
  • Fixed OTLP disk retry data being stored incorrectly when using persistent
    storage retry.
  • Fixed OtlpLogExporter integration with IHttpClientFactory.
  • Do not enable the OTLP integration with IHttpClientFactory when mTLS is
    enabled.
  • Handle Retry-After response headers that specify a date instead of a delay.
  • observed_time_unix_nano will no longer always be identical to time_unix_nano
    when using the logs bridge API.
  • Stop validating View-provided metric stream Name against the instrument name
    syntax.
  • Fix incorrect validation of OTEL_BSP_* and OTEL_BLRP_* environment variables.
  • Fix observable instrument callbacks running once per reader instead of once per
    collection cycle.
  • Added exception safety for user-supplied ExemplarReservoir implementations.
  • Fixed a circular reference which could cause a LoggerProvider to fail to
    resolve when one of its dependencies depends on ILogger or ILoggerFactory.
App-vNext/Polly (Polly.Extensions)

v8.7.0

Compare Source

Sergio0694/PolySharp (PolySharp)

v1.16.0

Compare Source

This PolySharp release includes C# 14 support.

🪄 Polyfills
✅ Fixes
🔧 Other changes

New Contributors

Full Changelog: Sergio0694/PolySharp@1.15.0...1.16.0

wiremock/WireMock.Net (WireMock.Net)

v2.11.0

  • #​1475 - Update NuGet packages (Aspire, MessagePack and more) [security] contributed by StefH
  • #​1476 - Fix BodyParser [bug] contributed by StefH
  • #​1473 - JsonPartialWildCardMatcher With DateTime Regex Stopped Matching (Regression?) [bug]

v2.10.0

Compare Source

  • #​1472 - Update JsonConverter to 0.13.0 [bug] contributed by StefH

v2.9.0

Compare Source

  • #​1470 - Fix WireMock.Net.Aspire project when using Aspire 13.4.0 [bug] contributed by StefH
  • #​1469 - WireMock.Net doesn't play well with Aspire 13.4.0 [bug]

v2.8.0

Compare Source

  • #​1447 - Add SystemTextJsonMatchers [feature] contributed by StefH
  • #​1466 - Bump System.Text.RegularExpressions from 4.3.0 to 4.3.1 in Aspire Example project [dependencies, .NET] contributed by dependabot[bot]
  • #​1467 - Bump System.Net.Http from 4.3.0 to 4.3.4 in Aspire Example project [dependencies, .NET] contributed by dependabot[bot]
  • #​1468 - Update JsonMatcher to support IgnoreArrayOrder [feature] contributed by StefH
  • #​1439 - JSON reference properties cannot be used when using System.Text.Json serialization [bug]
  • #​1445 - Configurable JSON DE-serialization support (Newtonsoft.Json vs System.Text.Json) [feature]
  • #​1460 - Option to ignore array order when comparing json body [feature]

Configuration

📅 Schedule: (in timezone Europe/Oslo)

  • Branch creation
    • "before 07:00 on Thursday"
  • 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 May 31, 2026
Comment thread Directory.Packages.props Outdated
@ivarne ivarne enabled auto-merge (squash) June 2, 2026 05:20
@renovate renovate Bot changed the title chore(deps): update nuget non-major dependencies (minor) chore(deps): update nuget non-major dependencies (minor) - abandoned Jun 2, 2026
@renovate

renovate Bot commented Jun 2, 2026

Copy link
Copy Markdown
Contributor Author

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

@renovate renovate Bot force-pushed the renovate/nuget-minor-patch branch from ca0f3c3 to c8008af Compare June 23, 2026 11:26
@renovate renovate Bot changed the title chore(deps): update nuget non-major dependencies (minor) - abandoned Update nuget non-major dependencies (minor) Jun 23, 2026
@sonarqubecloud

Copy link
Copy Markdown

@renovate renovate Bot force-pushed the renovate/nuget-minor-patch branch 2 times, most recently from d70a00d to 57eb6f2 Compare June 25, 2026 16:56
@renovate renovate Bot force-pushed the renovate/nuget-minor-patch branch from 57eb6f2 to f48a7b2 Compare June 26, 2026 08:56
auto-merge was automatically disabled June 26, 2026 11:24

Repository rule violations found

@renovate

renovate Bot commented Jun 26, 2026

Copy link
Copy Markdown
Contributor Author

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.

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.

1 participant