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

[deps] AC: Update Quartz to 3.13.0 #4655

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 19, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
Quartz (source) 3.9.0 -> 3.13.0 age adoption passing confidence

Release Notes

quartznet/quartznet (Quartz)

v3.13.0: Quartz.NET 3.13.0

This release aims to modernize targeted platforms and used dependencies.

The System.Configuration.ConfigurationManager reference has been removed from non-framework builds. This means using App.config's <quartz> section as Quartz configuration source is only supported on .NET Framework builds. This change was made to reduce legacy dependencies and to make Quartz more compatible with modern .NET.

The netcoreapp3.1 target has been removed from DI and hosting integration packages which makes NET 6 the lowest supported modern runtime version for those packages.

What's Changed

Full Changelog: quartznet/quartznet@v3.12.0...v3.13.0

v3.12.0: Quartz.NET 3.12.0

This release aims to alleviate some problems that have been present then Quartz's own global singletons clash
with DI containers singleton concept when DI container is being torn down during testing. Now both scheduler repository
and DB connection manager are scoped inside DI container and share container's lifetime.

If you want to have multiple service collections sharing same global state, you should manually register IDbConnectionManager
and ISchedulerRepository to DI as singletons pointing to global object instances.

// add globals before AddQuartz to get old behavior
services.AddSingleton<IDbConnectionManager>(DBConnectionManager.Instance);
services.AddSingleton<ISchedulerRepository>(SchedulerRepository.Instance);

services.AddQuartz(...)

What's Changed

Full Changelog: quartznet/quartznet@v3.11.0...v3.12.0

v3.11.0: Quartz.NET 3.11.0

What's Changed
New Contributors

Full Changelog: quartznet/quartznet@v3.10.0...v3.11.0

v3.10.0: Quartz.NET 3.10.0

This release adds support for using System.Text.Json as serializer for JSON payloads stored in database via new integration package Quartz.Serialization.SystemTextJson. Please note that there might be small incompatibilities between Newtonsoft and STJ (de)serialization. If you are using only strings as data values, there should be no compatibility issues. Using the new integration package is ideal for new greenfield projects.

What's Changed

New Contributors

Full Changelog: quartznet/quartznet@v3.9.0...v3.10.0


Configuration

📅 Schedule: Branch creation - "every 2nd week starting on the 2 week of the year before 4am on Monday" (UTC), 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 requested review from a team and r-tome August 19, 2024 00:51
@bitwarden-bot bitwarden-bot changed the title [deps] AC: Update Quartz to v3.13.0 [AC-2975] [deps] AC: Update Quartz to v3.13.0 Aug 19, 2024
@bitwarden-bot
Copy link

Internal tracking:

Copy link

codecov bot commented Aug 19, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 41.78%. Comparing base (f7bc5df) to head (d5e9d5c).

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #4655   +/-   ##
=======================================
  Coverage   41.78%   41.78%           
=======================================
  Files        1308     1308           
  Lines       62128    62128           
  Branches     5725     5725           
=======================================
  Hits        25961    25961           
  Misses      34972    34972           
  Partials     1195     1195           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot changed the title [AC-2975] [deps] AC: Update Quartz to v3.13.0 [deps] AC: Update Quartz to v3.13.0 Aug 19, 2024
@renovate renovate bot force-pushed the renovate/quartznet-monorepo branch from e165bff to 4de2a9f Compare August 27, 2024 18:15
@renovate renovate bot changed the title [deps] AC: Update Quartz to v3.13.0 [deps] AC: Update Quartz to 3.13.0 Aug 28, 2024
@renovate renovate bot force-pushed the renovate/quartznet-monorepo branch from 4de2a9f to d5e9d5c Compare September 24, 2024 13:40
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