Skip to content
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

Update nuget non-major dependencies #1019

Merged
merged 2 commits into from
Jan 23, 2025
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 11, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
Altinn.Platform.Storage.Interface 4.0.4 -> 4.0.5 age adoption passing confidence
Azure.Identity (source) 1.13.1 -> 1.13.2 age adoption passing confidence
CSharpier.MsBuild 0.30.2 -> 0.30.6 age adoption passing confidence
FluentAssertions (source) 7.0.0 -> 7.1.0 age adoption passing confidence
JsonPatch.Net 3.2.3 -> 3.3.0 age adoption passing confidence
Microsoft.AspNetCore.Mvc.Testing (source) 8.0.11 -> 8.0.12 age adoption passing confidence
Microsoft.AspNetCore.TestHost (source) 8.0.11 -> 8.0.12 age adoption passing confidence
Microsoft.IdentityModel.Protocols.OpenIdConnect 8.3.0 -> 8.3.1 age adoption passing confidence
Nullable.Extended.Analyzer 1.15.6169 -> 1.15.6495 age adoption passing confidence
OpenTelemetry (source) 1.10.0 -> 1.11.0 age adoption passing confidence
OpenTelemetry.Api (source) 1.10.0 -> 1.11.0 age adoption passing confidence
OpenTelemetry.Exporter.OpenTelemetryProtocol (source) 1.10.0 -> 1.11.0 age adoption passing confidence
OpenTelemetry.Extensions.Hosting (source) 1.10.0 -> 1.11.0 age adoption passing confidence
OpenTelemetry.Instrumentation.AspNetCore (source) 1.9.0 -> 1.10.1 age adoption passing confidence
Swashbuckle.AspNetCore 7.1.0 -> 7.2.0 age adoption passing confidence
Verify.Xunit 28.4.0 -> 28.9.0 age adoption passing confidence
coverlet.collector 6.0.2 -> 6.0.4 age adoption passing confidence
csharpier 0.30.2 -> 0.30.6 age adoption passing confidence
xunit 2.9.2 -> 2.9.3 age adoption passing confidence

Release Notes

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

v1.13.2

Compare Source

1.13.2 (2025-01-14)
Bugs Fixed
  • Fixed an issue where setting DefaultAzureCredentialOptions.TenantId twice throws an InvalidOperationException (#​47035)
  • Fixed an issue where ManagedIdentityCredential does not honor the CancellationToken passed to GetToken and GetTokenAsync. (#​47156)
  • Fixed an issue where some credentials in DefaultAzureCredential would not fall through to the next credential in the chain under certain exception conditions.
  • Fixed a regression in ManagedIdentityCredential when used in a ChainedTokenCredential where the invalid json responses do not fall through to the next credential in the chain. (#​47470)
belav/csharpier (CSharpier.MsBuild)

v0.30.6

Compare Source

What's Changed

Trailing comma is placed on new line if last enum value is followed by a comment #​1429
// input
enum MyEnum
{
    First,
    Second // the second value
}

// 0.30.5
enum MyEnum
{
    First,
    Second // the second value
    ,
}

// 0.30.6
enum MyEnum
{
    First,
    Second, // the second value
}

Full Changelog: belav/csharpier@0.30.5...0.30.6

v0.30.5

Compare Source

What's Changed

Extra blank line added to file each time csharpier runs on this file #​1426

When a file ended in a comment and that comment had multiple blank lines before it, a new blank line was being added each time it was formatted.
// input

// input
namespace MyCompany.MyNamespace;

// Comment block

// 0.30.4
namespace MyCompany.MyNamespace;

// Comment block

// 0.30.5
namespace MyCompany.MyNamespace;

// Comment block

**Full Changelog**: https://github.com/belav/csharpier/compare/0.30.4...0.30.5

v0.30.4

Compare Source

0.30.4

What's Changed

Formatting deletes unsafe modifier #​1416

Formatting a using directive with an unsafe modifier resulted in the lose of the unsafe keyword

// input & expected output
using unsafe NvapiQueryInterface = delegate* unmanaged[Cdecl]<uint, nint>;

// 0.30.3
using NvapiQueryInterface = delegate* unmanaged[Cdecl]<uint, nint>;
CSharpier keeps adding a newline every time a file is formatted #​1408

In some cases if a file ended with a comment, CSharpier would add a new extra blank line above the comment each time it formatted the file

// input & expected outpet
using System;

namespace MyCompany.MyNamespace;

// Comment block

// 0.30.3
using System;

namespace MyCompany.MyNamespace;

// Comment block

Full Changelog: belav/csharpier@0.30.3...0.30.4

v0.30.3

Compare Source

What's Changed

CSharpier.MsBuild doesn't fail the github action anymore #​1357

The changes for 1311 caused CSharpier.MsBuild to not report unformatted files as errors on linux.

Thanks go to @​PetSerAl for the fix

fluentassertions/fluentassertions (FluentAssertions)

v7.1.0

Compare Source

What's Changed

Improvements
Others

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

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

v8.0.12: .NET 8.0.12

Release

What's Changed

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

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

v8.3.1

Compare Source

8.3.1

Bug Fixes

  • Respect TVP.RequireAudience when set to false. See #​3055
  • For net4.6.2 select RSACng for PSS support. See #​3097
  • Fix package downgrade in consuming libraries. See#​3062
  • Fix integer overflow in AuthenticationEncryptionProvider.cs. See #​3063

Fundamentals

  • Removed unused property on JsonWebToken ClaimsIdentity. See #​3071 for details.
  • Upgrade to C# 13. See #​2998
  • Use new Base64Url API. See #​22817
  • Add warning quality check. See #​3067
  • Update dotnet actions. see #​3074
  • Fix warnings. See #​3081
  • Test updates in JsonWebToken. See #​3080.
Work related to redesign of IdentityModel's token validation logic #​2711

What's Changed

New Contributors

Full Changelog: AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet@8.3.0...8.3.1

open-telemetry/opentelemetry-dotnet (OpenTelemetry)

v1.11.0

  • OpenTelemetry.Exporter.OpenTelemetryProtocol no longer depends on the
    Google.Protobuf, Grpc, or Grpc.Net.Client packages. Serialization and
    transmission of outgoing data is now performed manually to improve the overall
    performance.
domaindrivendev/Swashbuckle.AspNetCore (Swashbuckle.AspNetCore)

v7.2.0

What's Changed

New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v7.1.0...v7.2.0

VerifyTests/Verify (Verify.Xunit)

v28.8.0

Compare Source

v28.7.1

Compare Source

v28.7.0

Compare Source

v28.6.1

Compare Source

v28.6.0

Compare Source

v28.5.0

Compare Source

coverlet-coverage/coverlet (coverlet.collector)

v6.0.4

Fixed
  • Fix empty coverage report when using include and exclude filters #​1726

Diff between 6.0.3 and 6.0.4

v6.0.3

Fixed
Improvements
  • Cache the regex used in InstrumentationHelper #​1693
  • Enable dotnetTool integration tests for linux #​660

Diff between 6.0.2 and 6.0.3


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 11, 2025
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 6 times, most recently from 15b996c to 76d7443 Compare January 18, 2025 01:56
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 4 times, most recently from f6c6890 to 883ec64 Compare January 23, 2025 03:20
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch from 883ec64 to 113e182 Compare January 23, 2025 14:24
Copy link
Contributor Author

renovate bot commented Jan 23, 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.

@martinothamar martinothamar merged commit 23afd9b into main Jan 23, 2025
12 checks passed
@martinothamar martinothamar deleted the renovate/nuget-minor-patch branch January 23, 2025 14:47
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