Skip to content

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

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/nuget-minor-patch
Open

chore(deps): update nuget non-major dependencies#904
renovate[bot] wants to merge 1 commit intomainfrom
renovate/nuget-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 25, 2025

This PR contains the following updates:

Package Change Age Confidence
Altinn.Common.AccessToken 5.0.55.1.0 age confidence
Altinn.Common.AccessTokenClient 3.0.153.2.0 age confidence
Altinn.Common.PEP 4.2.24.2.3 age confidence
Azure.Monitor.OpenTelemetry.Exporter (source) 1.5.01.6.0 age confidence
Azure.Storage.Blobs (source) 12.26.012.27.0 age confidence
Azure.Storage.Queues (source) 12.24.012.25.0 age confidence
CSharpier.MsBuild 1.2.11.2.6 age confidence
Microsoft.AspNetCore.Mvc.Testing (source) 9.0.119.0.13 age confidence
MinVer 6.0.06.1.0 age confidence
OpenTelemetry.Exporter.Console (source) 1.14.01.15.0 age confidence
OpenTelemetry.Exporter.InMemory (source) 1.14.01.15.0 age confidence
OpenTelemetry.Extensions.Hosting (source) 1.14.01.15.0 age confidence
OpenTelemetry.Instrumentation.AspNetCore (source) 1.14.01.15.0 age confidence
OpenTelemetry.Instrumentation.Http (source) 1.14.01.15.0 age confidence
PDFsharp (source) 6.2.36.2.4 age confidence
System.Text.Json (source) 9.0.119.0.13 age confidence
csharpier 1.2.11.2.6 age confidence

Release Notes

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

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

Azure/azure-sdk-for-net (Azure.Monitor.OpenTelemetry.Exporter)

v1.6.0

Compare Source

1.6.0 (2024-12-03)

Features Added
  • Add 'StartTime' and 'EndTime' parameters to 'MetricsQueryResourcesOptions' to allow for querying a specific time range
Bugs Fixed
  • Fix bug in 'MetricsClient' QueryResourceAsync method where the 'QueryTimeRange' parameter was incorrectly set
belav/csharpier (CSharpier.MsBuild)

v1.2.6

Compare Source

What's Changed

[Bug]: XML with DOCTYPE results in "invalid xml" warning #​1809

CSharpier was not formatting xml that included a doctype and instead reporting that it was invalid xml.

<?xml version="1.0"?>
<!DOCTYPE staff SYSTEM "staff.dtd"[
    <!ENTITY ent1 "es">
]>
<staff></staff>
[Bug]: Initializing a span using stackalloc leads to different formatting compared to new #​1808

When initializing a spacn using stackalloc, it was not being formatting consistently with other code

// input & expected output
Span<int> metatable = new int[]
{
    00000000000000000000000001,
    00000000000000000000000002,
    00000000000000000000000003,
};

Span<int> metatable = stackalloc int[]
{
    00000000000000000000000001,
    00000000000000000000000002,
    00000000000000000000000003,
};

// 1.2.5
Span<int> metatable = new int[]
{
    00000000000000000000000001,
    00000000000000000000000002,
    00000000000000000000000003,
};

Span<int> metatable =
    stackalloc int[] {
        00000000000000000000000001,
        00000000000000000000000002,
        00000000000000000000000003,
    };
[Bug]: Comments in otherwise empty object pattern disappear when formatting #​1804

CSharpier was removing comments if they were the only content of an object pattern.

// input & expected output
var match = obj is {
    //Property: 123
};

// 1.2.5
var match = obj is { };

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

v1.2.5

Compare Source

What's Changed

Performance issue when running CLI in project with pnpm on Windows #​1781

1.2.4 did not properly address this

The code to determine if there is a version of CSharpier.MsBuild referenced that does not match the version of CSharpier being run has been optimized to not look in node_modules or .git. This significantly speeds things up in some setups.

Full Changelog: belav/csharpier@1.2.4...1.2.5

v1.2.4

Compare Source

What's Changed

Weird enter in closing when formatting XAML TextBlock #​1785

CSharpier was breaking an end element to a new line when it did not need to.

<!-- input & expected output -->
<root>
  <TextBlock Foreground="DarkGray">
    I saw the sign. When I opened up my eyes, I saw the sign.
  </TextBlock>
  <TextBlock>
    I saw the sign. When I opened up my eyes, I saw the sign.
  </TextBlock>
</root>

<!-- 1.2.3 -->
<root>
  <TextBlock Foreground="DarkGray">
    I saw the sign. When I opened up my eyes, I saw the sign.
  </TextBlock
  >
  <TextBlock>
    I saw the sign. When I opened up my eyes, I saw the sign.
  </TextBlock>
</root>
Order Modifiers (IDE0036) not formatting when code is preceded by a comment. #​1784

When incorrectly ordered modifiers were preceded by a comment they were not being reordered. Thanks go to @​TimothyMakkison for the contribution

// input & 1.2.3

// Comment
required public int Prop1 { get; set; }

// expected output
// Comment
public required int Prop1 { get; set; }
Performance issue when running CLI in project with pnpm on Windows #​1781

The code to determine if there is a version of CSharpier.MsBuild referenced that does not match the version of CSharpier being run has been optimized to not look in node_modules or .git. This significantly speeds things up in some setups.

Full Changelog: belav/csharpier@1.2.3...1.2.4

v1.2.3

Compare Source

What's Changed

Large directories ignored in .gitignore significantly impact performance. #​1776

CSharpier was enumerating all files within all subdirectories and then determining if they should be formatted or not. That logic was optimized to only enumerate files in directories that are not ignored.

Full Changelog: belav/csharpier@1.2.2...1.2.3

v1.2.2

Compare Source

What's Changed

The null coalescing operator is grouped in an unexpected place #​1769

Null coalescing is now consistently broken thanks to a contribution from @​ogaken-1

// input & expected output
var x =
    someValue.SomeCall().SomeProperty.SomeProperty
    ?? someValue.SomeCall().SomeProperty.SomeProperty;

var x =
    someValue.SomeCall().SomeProperty?.SomeCall().SomeProperty
    ?? someValue.SomeCall().SomeProperty?.SomeCall().SomeProperty;

var x =
    someValue.SomeCall().A_______.B_______.C_______
    ?? someValue.SomeCall().A_______.B_______.C_______;

// 1.2.1
var x =
    someValue.SomeCall().SomeProperty.SomeProperty ?? someValue
        .SomeCall()
        .SomeProperty.SomeProperty;

var x =
    someValue.SomeCall().SomeProperty?.SomeCall().SomeProperty ?? someValue
        .SomeCall()
        .SomeProperty?.SomeCall()
        .SomeProperty;

var x =
    someValue.SomeCall().A_______.B_______.C_______ ?? someValue
        .SomeCall()
        .A_______.B_______.C_______;
Xml formatter should not add a second line #​1760

When formatting an xml file with a declaration and extra blank line was being added.

<!-- input & expected output -->
<?xml version="1.0" encoding="utf-8"?>

<Element />

<!-- 1.2.1 -->
<?xml version="1.0" encoding="utf-8"?>

<Element />
Git ignore patterns do not work the same as git #​1759

The handling of ignore patterns did not properly match how git handles them. The logic has been reworked and now has tests that compare it directly to git.

Fix server crash when launched without console #​1774

If a plugin launched csharpier server without a console it would crash. This has been resolved thanks to @​rcdailey

Full Changelog: belav/csharpier@1.2.1...1.2.2

adamralph/minver (MinVer)

v6.1.0

Compare Source

Enhancements
open-telemetry/opentelemetry-dotnet (OpenTelemetry.Exporter.Console)

v1.15.0

Release details: 1.15.0

  • Added support for ActivitySource.TelemetrySchemaUrl
    and Meter.TelemetrySchemaUrl properties across exporters.
  • Improved performance and reduced memory consumption for metrics histograms.
  • Added mTLS configuration support for the OTLP exporter (client cert/key and
    CA certificate options).
  • OpenTelemetry.Exporter.Zipkin is deprecated and will stop receiving updates
    in December 2026. Zipkin already supports OTLP ingestion.
    Migrate to OpenTelemetry.Exporter.OpenTelemetryProtocol as stated
    in the Deprecating Zipkin Exporter blog post.

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.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Dec 25, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

  • 🔍 Trigger a full review

Comment @coderabbitai help to get the list of available commands and usage tips.

@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 2 times, most recently from c563c42 to 653c9f2 Compare December 30, 2025 15:35
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 2 times, most recently from 90d2f89 to 83d6f5d Compare January 9, 2026 10:46
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 2 times, most recently from c7960b7 to 29b3781 Compare January 16, 2026 22:28
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 3 times, most recently from 53b3bd9 to 9d53c0a Compare January 24, 2026 14:46
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 3 times, most recently from 96f8f31 to 7f88224 Compare February 3, 2026 12:13
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 2 times, most recently from 500b18c to ff1ac1d Compare February 12, 2026 12:39
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch from ff1ac1d to 8b69338 Compare February 13, 2026 18:56
@sonarqubecloud
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants