Skip to content

Update all non-major dependencies #66

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 11, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
Microsoft.AspNetCore.Authentication.JwtBearer (source) 9.0.6 -> 9.0.7 age adoption passing confidence nuget patch
Microsoft.AspNetCore.Identity.EntityFrameworkCore (source) 9.0.6 -> 9.0.7 age adoption passing confidence nuget patch
Microsoft.AspNetCore.OpenApi (source) 9.0.6 -> 9.0.7 age adoption passing confidence nuget patch
Microsoft.AspNetCore.OutputCaching.StackExchangeRedis (source) 9.0.6 -> 9.0.7 age adoption passing confidence nuget patch
Microsoft.EntityFrameworkCore.Tools (source) 9.0.6 -> 9.0.7 age adoption passing confidence nuget patch
Microsoft.Extensions.Caching.StackExchangeRedis (source) 9.0.6 -> 9.0.7 age adoption passing confidence nuget patch
Microsoft.NET.Test.Sdk 17.13.0 -> 17.14.1 age adoption passing confidence nuget minor
Microsoft.VisualStudio.Azure.Containers.Tools.Targets 1.21.1 -> 1.22.1 age adoption passing confidence nuget minor
OpenTelemetry.Extensions.Hosting (source) 1.11.1 -> 1.12.0 age adoption passing confidence nuget minor
Quartz.Extensions.Hosting (source) 3.13.1 -> 3.14.0 age adoption passing confidence nuget minor
Scalar.AspNetCore (source) 2.5.3 -> 2.6.4 age adoption passing confidence nuget minor 2.6.5
StackExchange.Redis (source) 2.8.24 -> 2.8.58 age adoption passing confidence nuget patch
Swashbuckle.AspNetCore 7.2.0 -> 7.3.2 age adoption passing confidence nuget minor
Swashbuckle.AspNetCore.Annotations 7.2.0 -> 7.3.2 age adoption passing confidence nuget minor
System.Threading.RateLimiting (source) 9.0.6 -> 9.0.7 age adoption passing confidence nuget patch
ZLinq 1.4.12 -> 1.5.2 age adoption passing confidence nuget minor
dotnet-sdk 8.0.403 -> 8.0.412 age adoption passing confidence dotnet-sdk patch
redis 7.4.1 -> 7.4.5 age adoption passing confidence patch
xunit.runner.visualstudio 3.0.2 -> 3.1.3 age adoption passing confidence nuget minor

Release Notes

dotnet/aspnetcore (Microsoft.AspNetCore.Authentication.JwtBearer)

v9.0.7: .NET 9.0.7

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v9.0.6...v9.0.7

dotnet/efcore (Microsoft.EntityFrameworkCore.Tools)

v9.0.7: .NET 9.0.7

Release

What's Changed

Full Changelog: dotnet/efcore@v9.0.6...v9.0.7

microsoft/vstest (Microsoft.NET.Test.Sdk)

v17.14.1

What's Changed

Full Changelog: microsoft/vstest@v17.14.0...v17.14.1

v17.14.0

What's Changed

.NET versions updated

This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does NOT prevent you from:

  • Updating to the latest VS, and running tests from net6.0 test projects.
  • Updating to the latest .NET SDK, and running tests from net6.0 test projects.

It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.

Changes
Internal version updates and fixes

New Contributors

Full Changelog: microsoft/vstest@v17.13.0...v17.14.0

open-telemetry/opentelemetry-dotnet (OpenTelemetry.Extensions.Hosting)

v1.12.0

Release details: 1.12.0

  • Breaking Change: OpenTelemetry.Exporter.OpenTelemetryProtocol now
    defaults to using OTLP/HTTP instead of OTLP/gRPC when targeting .NET Framework
    and .NET Standard. This change may cause telemetry export to fail unless
    appropriate adjustments are made. Explicitly setting OTLP/gRPC may result in a
    NotSupportedException unless further configuration is applied. See
    #​6209 for
    full details and mitigation guidance. #​6229
quartznet/quartznet (Quartz.Extensions.Hosting)

v3.14.0

This release contains small improvements and new NET 8 and 9 targets with removal of obsolete NET 6 target. RAMJobStore now uses
new Lock type under the hood when using NET 9 target.

  • CHANGES

    • Add NET 8 and NET 9 targets, remove NET 6 target (#​2707)
  • FIXES

    • Change DirtyFlagMap.Add to use AllowNullAttribute instead of MaybeNullAttribute (#​2660)
    • Don't transition triggers to error state on scheduler shutdown/disposal (#​2704)
    • Handle hosted service stopping during startup gracefully (#​2705)
StackExchange/StackExchange.Redis (StackExchange.Redis)

v2.8.58

Compare Source

What's Changed

New Contributors

Full Changelog: StackExchange/StackExchange.Redis@2.8.47...2.8.58

v2.8.47

Compare Source

What's Changed

Full Changelog: StackExchange/StackExchange.Redis@2.8.41...2.8.47

v2.8.41

Compare Source

What's Changed

Sharded pub/sub operations are where the pub/sub channels are distributed over a multi-node redis cluster using similar slot rules to keys; all such operations (for both "pub" and "sub") must be communicated to the correct node. This contrasts to regular/legacy pub/sub where you can "pub" or "sub" to any node, and the message is broadcast horizontally via all nodes in the cluster. To use sharded operations, use the RedisChannel.Sharded API when constructing channels. There is no concept of pattern-based sharded pub/sub.

Full Changelog: StackExchange/StackExchange.Redis@2.8.37...2.8.41

v2.8.37

Compare Source

What's Changed

  • Add ConfigurationOptions.SetUserPemCertificate(...) and ConfigurationOptions.SetUserPfxCertificate(...) methods to simplify using client certificates (#​2873 by @​mgravell)
  • Add logging for when a Multiplexer reconfigures (#​2864 by @​st-dev-gh)
  • Fix: Move AuthenticateAsClient to fully async after dropping older framework support, to help client thread starvation in cases TLS negotiation stalls server-side (#​2878 by @​NickCraver)

New Contributors

Full Changelog: StackExchange/StackExchange.Redis@2.8.31...2.8.37

v2.8.31

What's Changed

New Contributors

Full Changelog: StackExchange/StackExchange.Redis@2.8.24...2.8.31

domaindrivendev/Swashbuckle.AspNetCore (Swashbuckle.AspNetCore)

v7.3.2

What's Changed

New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v7.3.1...v7.3.2

v7.3.1

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v7.3.0...v7.3.1

v7.3.0

What's Changed

New Contributors

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

dotnet/runtime (System.Threading.RateLimiting)

v9.0.7: .NET 9.0.7

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.6...v9.0.7

Cysharp/ZLinq (ZLinq)

v1.5.2

Compare Source

What's Changed

Full Changelog: Cysharp/ZLinq@1.5.1...1.5.2

[v1.5.1](https://redirect.github.com/Cysharp/ZL


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 force-pushed the renovate/all-minor-patch branch from 10222e1 to 2847db6 Compare November 11, 2024 17:02
@renovate renovate bot changed the title Update dependency AWSSDK.S3 to 3.7.405.10 Update all non-major dependencies Nov 11, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f3f6983 to 99805fa Compare November 12, 2024 18:38
@renovate renovate bot changed the title Update all non-major dependencies Update dependency AWSSDK.S3 to 3.7.405.11 Nov 12, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 99805fa to 6b59e7e Compare November 13, 2024 20:21
@renovate renovate bot changed the title Update dependency AWSSDK.S3 to 3.7.405.11 Update all non-major dependencies Nov 13, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 7e93ecd to 379baa4 Compare November 21, 2024 20:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 7d2aaff to 60fe895 Compare November 28, 2024 21:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from fce21c3 to 1e7fda3 Compare December 6, 2024 21:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from fc5868b to 9e4ea27 Compare July 11, 2025 04:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from be8f2d2 to 693b620 Compare July 18, 2025 10:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 14628a8 to 640b390 Compare July 25, 2025 20:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 1bfe836 to 0bac6f6 Compare July 28, 2025 12:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0bac6f6 to 65922af Compare July 31, 2025 02:06
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