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

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

Merged
merged 1 commit into from
Jul 11, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 22, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
Altinn.Common.AccessToken 4.4.0 -> 4.4.3 age adoption passing confidence
Altinn.Common.AccessTokenClient 3.0.2 -> 3.0.4 age adoption passing confidence
Altinn.Platform.Storage.Interface 3.24.0 -> 3.29.0 age adoption passing confidence
Azure.Identity (source) 1.11.4 -> 1.12.0 age adoption passing confidence
Azure.Monitor.OpenTelemetry.Exporter (source) 1.2.0 -> 1.3.0 age adoption passing confidence
Azure.Storage.Blobs (source) 12.19.1 -> 12.20.0 age adoption passing confidence
Azure.Storage.Queues (source) 12.17.1 -> 12.18.0 age adoption passing confidence
Microsoft.AspNetCore.Mvc.Testing (source) 8.0.4 -> 8.0.6 age adoption passing confidence
Microsoft.Extensions.Telemetry.Abstractions (source) 8.4.0 -> 8.6.0 age adoption passing confidence
Microsoft.FeatureManagement.AspNetCore 3.3.0 -> 3.4.0 age adoption passing confidence
Microsoft.IdentityModel.Logging 7.5.1 -> 7.6.2 age adoption passing confidence
Microsoft.NET.Test.Sdk 17.9.0 -> 17.10.0 age adoption passing confidence
Microsoft.VisualStudio.Azure.Containers.Tools.Targets 1.20.1 -> 1.21.0 age adoption passing confidence
OpenTelemetry (source) 1.8.1 -> 1.9.0 age adoption passing confidence
OpenTelemetry.Exporter.Console (source) 1.8.1 -> 1.9.0 age adoption passing confidence
Swashbuckle.AspNetCore 6.5.0 -> 6.6.2 age adoption passing confidence
Testcontainers.PostgreSql (source) 3.8.0 -> 3.9.0 age adoption passing confidence
xunit 2.8.0 -> 2.8.1 age adoption passing confidence
xunit.runner.visualstudio 2.8.0 -> 2.8.1 age adoption passing confidence

Release Notes

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

v4.4.3

Compare Source

What's Changed

Full Changelog: Altinn/altinn-accesstoken@Altinn.Common.AccessToken-4.4.2...Altinn.Common.AccessToken-4.4.3

v4.4.2

Compare Source

What's Changed

Full Changelog: Altinn/altinn-accesstoken@Altinn.Common.AccessToken-4.4.1...Altinn.Common.AccessToken-4.4.2

v4.4.1

Compare Source

What's Changed

Full Changelog: Altinn/altinn-accesstoken@Altinn.Common.AccessToken-4.4.0...Altinn.Common.AccessToken-4.4.1

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

v1.12.0

1.12.0 (2024-06-17)
Features Added
  • Added AzurePipelinesCredential for authenticating with Azure Pipelines service connections.
  • OnBehalfOfCredential now supports client assertion callbacks for acquiring tokens on behalf of a user.
  • All credentials now support setting RefreshOn value if received from MSAL.
  • ManagedIdentityCredential sets RefreshOn value of half the token lifetime for AccessTokens with an ExpiresOn value greater than 2 hours in the future.
  • ClientAssertionCredentialOptions now supports TokenCachePersistenceOptions for configuring token cache persistence.
dotnet/aspnetcore (Microsoft.AspNetCore.Mvc.Testing)

v8.0.6

v8.0.5: .NET 8.0.5

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.4...v8.0.5

dotnet/extensions (Microsoft.Extensions.Telemetry.Abstractions)

v8.6.0: .NET Extensions 8.6.0

8.6.0 packages are now all published in NuGet.org.

What's Changed

Full Changelog: dotnet/extensions@v8.5.0...v8.6.0

v8.5.0: .NET Extensions 8.5.0

8.5.0 packages are now all published in NuGet.org.

What's Changed

New Contributors

Full Changelog: dotnet/extensions@v8.4.0...v8.5.0

microsoft/FeatureManagement-Dotnet (Microsoft.FeatureManagement.AspNetCore)

v3.4.0

Compare Source

Microsoft.FeatureManagement Updates

The packages associated with this release are

Microsoft.FeatureManagement
Enhancements
  • All public classes no longer use init-only setters, ensuring compatibility with application using C# 7 or earlier. #​450
Microsoft.FeatureManagement.AspNetCore
  • Updated Microsoft.FeatureManagement reference to 3.4.0.

v3.3.1

Compare Source

Microsoft.FeatureManagement Updates

The packages associated with this release are

Microsoft.FeatureManagement

Bug fixes
  • Fixed a bug that TimeWindowFilter would be registered repeatedly when calling AddFeatureFilter<TimeWindowFilter> after the call of AddFeatureManagement(). #​447

Microsoft.FeatureManagement.AspNetCore

  • Updated Microsoft.FeatureManagement reference to 3.3.1.
AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet (Microsoft.IdentityModel.Logging)

v7.6.2

Compare Source

7.6.2

Bug Fix:
  • Revert reduced allocations in AadIssuerValidator by not using string.Replace where appropriate due to an index out-of-range error.

v7.6.1

Compare Source

=====

New Features:
  • Added an Audiences member to the SecurityTokenDescriptor to make it easier to define multiple audiences in JWT and SAML tokens. Addresses issue #​1479 with PR #​2575
  • Add missing metadata parameters to OpenIdConnectConfiguration. See issue #​2498 for details.
Bug Fixes:
  • Fix over-reporting of IDX14100. See issue #​2058 and PR #​2618 for details.
  • JwtRegisteredClaimNames now contains previously missing Standard OpenIdConnect claims. See issue #​1598 for details.
Performance Improvements:
  • No longer for every string claim, calling DateTime.TryParse on each value, whether it is expected to be a DateTime or not. See issue #​2615 for details.

v7.6.0

Compare Source

=====

New Features:
  • Update JsonWebToken - extract and expose the method that reads the header/payload property values from the reader so it can be overridden in children classes to add any extra own logic. See issues #​2581, #​2583, and #​2495 for details.
Bug Fixes:
  • JWE header algorithm is now compliant to IANA document. See issue #​2089 for details.
Performance Improvements:
  • Reduce the number of internal array allocations that need to happen for each claim set, see PR #​2596.
Fundamentals:
  • Add an AOT compatibility check on each PR to ensure only AOT compatible code is checked-in. See PR #​2598.
  • Update perl scrip for OneBranch build. See PR #​2602.
  • Add langversion 12 to benchmark tests. See PR #​2601.
  • Removed unused build.cmd file. See PR #​2605.
  • Create CodeQL exclusions file. See PR #​2609.
  • Fix variable usage in AOT script. See PR #​2610.
  • Move Microsoft.IdentityModel.Tokens delegates to a new file. See PR #​2606

v7.5.2

Compare Source

=====

Bug Fixes:
Fundamentals:
  • App Context Switches in Identity Model 7x are now documented here.
Performance Improvements:
  • In .NET 6 or greater, use a temporary buffer to reduce intermediate allocation in VerifyRsa/VerifyECDsa. See PR #​2589 for more details.
  • Reduce allocations in ValidateSignature by using a collection expression instead of new List<SecurityKey> { key }, to optimize for the single element case. See PR #​2586 for more details.
  • Remove Task allocation in AadIssuerValidator. See PR #​2584 for more details.
microsoft/vstest (Microsoft.NET.Test.Sdk)

v17.10.0

What's Changed

And many infrastructure related changes and updates.

New Contributors

Full Changelog: microsoft/vstest@v17.9.0...v17.10.0

domaindrivendev/Swashbuckle.AspNetCore (Swashbuckle.AspNetCore)

v6.6.2

What's Changed

New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v6.6.1...v6.6.2

v6.6.1

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 8 times, most recently from ce2acb7 to 6f4ac13 Compare May 31, 2024 01:19
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 2 times, most recently from 2585c0f to 3366c90 Compare June 3, 2024 10:49
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 9 times, most recently from 1a6b573 to ab17ebb Compare June 19, 2024 18:41
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 6 times, most recently from 0c97775 to 20b71c3 Compare June 27, 2024 19:38
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 5 times, most recently from 0f989f4 to 8bdbbd6 Compare July 2, 2024 10:52
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 6 times, most recently from e828281 to d6ce8e9 Compare July 10, 2024 08:55
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch from d6ce8e9 to eb5a3fb Compare July 11, 2024 08:44
Copy link

sonarcloud bot commented Jul 11, 2024

@jonkjetiloye jonkjetiloye merged commit 82df1a6 into main Jul 11, 2024
10 checks passed
@jonkjetiloye jonkjetiloye deleted the renovate/nuget-minor-patch branch July 11, 2024 09:58
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.

1 participant