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 quartznet monorepo to 3.13.1 #15

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 8, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
Quartz (source) 3.5.0 -> 3.13.1 age adoption passing confidence
Quartz.AspNetCore (source) 3.5.0 -> 3.13.1 age adoption passing confidence
Quartz.Extensions.DependencyInjection (source) 3.5.0 -> 3.13.1 age adoption passing confidence

Release Notes

quartznet/quartznet (Quartz)

v3.13.1: Quartz.NET 3.13.1

What's Changed

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

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.

In order to properly resolve configuration settings for connection strings on modern .NET you should use the Microsoft DI integration package which will modify resolution process to include standard configuration sources.

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

v3.9.0: Quartz.NET 3.9.0

What's Changed

  • Fix Holiday Calendar with Nested Calendars sometimes crashing when resolving NextIncludedTime (#​2270)
  • Add WithDailyTimeIntervalSchedule overload with explicit interval and interval unit (#​1152)
  • Improve performance of DailyCalendar.GetNextIncludedTimeUtc (#​2285)
  • Add support for IAsyncDisposable jobs and MS DI resources (#​2335)
  • Make IJobWrapper public (#​2313)

New Contributors

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

v3.8.1

  • Fix handling of env var quartz.config (#​2212) (#​2213)
  • Use configured type loader in scheduler factory init (#​2268)

v3.8.0

  • CHANGES

    • TryGetString method added to JobDataMap (#​2125)
    • Add NET 8.0 targeting for examples, tests and integration projects (#​2192)
    • Upgrade TimeZoneConverter to version 6.1.0 (#​2194)
    • Improve trimming compatibility (#​2195, #​2131, #​2197)
  • FIXES

    • JobDataMap TryGetXXX methods will now correctly return true/false if a key value can be retrieved (or not) (#​2125)
    • JobDataMap GetXXX methods throw KeyNotFoundException if the key does not exist on the JobDataMap (#​2125)
    • JobDataMap GetXXX methods throw InvalidCastException if null value for non nullable types is found. (#​2125)
    • DailyCalendar should use same time zone offset for all checks (#​2113)
    • SendMailJob will now throw JobExecutionException on BuildMessage construction failure due to missing mandatory params. (#​2126)
    • JobInterruptMonitorPlugin should tolerate missing JobDataMapKeyAutoInterruptable (#​2191)
    • XMLSchedulingDataProcessorPlugin not using custom TypeLoader #​2131

v3.7.0

  • CHANGES

    • Mark UseJsonSerializer as obsolete, one should use UseNewtonsoftJsonSerializer (#​2077)
    • Removed obsolete UseMicrosoftDependencyInjectionScopedJobFactory(), mark UseMicrosoftDependencyInjectionJobFactory() obsolete (#​2085)
  • FIXES

    • Now omitting UseMicrosoftDependencyInjectionJobFactory() should actually work as it will be the default (#​2085)

v3.6.3

To celebrate my daughter's 8th birthday, let's have a maintenance release. This release bring important fix to scoped
job dependency disposal which had regressed in 3.6.1 release.

  • FIXES

    • Performance issues reading large job objects from AdoJobStore on SQL Server (#​2054)
    • ScopedJob is no longer disposed when using MS DI (#​1954)
    • Persistence of extended properties not working when the trigger type is changed (#​2040)
    • PersistJobDataAfterExecution not set when loading job detail data from database (#​2014)
    • JobInterruptMonitor Plugin should read MaxRunTime from MergedJobDataMap (#​2004)
    • Fix unable to get any job related information when using IObserver (#​1966)
    • ServiceCollectionSchedulerFactory.GetNamedConnectionString passes wrong value to base (#​1960)
    • CronExpression.BuildExpression() fails to catch this invalid expression: 0 0 * * * ?h (#​1953)
    • QuartzServiceCollectionExtensions is ambiguous between Quartz.AspNetCore and Quartz.Extensions.Hosting (#​1948)

v3.6.2

This is fix to a fix release, 3.6.1 introduced a regression to job selection logic when using persistent job store.

  • FIXES

    • Fix SqlSelectJobDetail to include IS_NONCONCURRENT #​1927

v3.6.1

This bug fix release contains an important fix to anyone configuring jobs using job builder's DisallowConcurrentExecution()
without having the attribute DisallowConcurrentExecutionAttribute on type itself.

  • FIXES

    • Add missing "disallow concurrency" materialization for jobs (#​1923)
    • Allow accessing the wrapped scoped job instance from job execution context (#​1917)
    • JobDiagnosticsWriter can throw error when writing context data (#​1191)

v3.6.0

This release contains new API to reset errored trigger state in job store, some bug fixes and refinement of package dependencies/targets.

  • NEW FEATURES

    • Add explicit netcoreapp3.1 and net6.0 targets to MS integration projects (#​1879)
    • Use IHostApplicationLifetime instead of IApplicationLifetime in >= netcoreapp3.1 Hosting targets (#​1593)
    • Add ResetTriggerFromErrorState functionality (#​1904)
  • FIXES

    • Fix named connection string resolution when using MS DI and its configuration system (#​1839)
    • Upgrade to System.Configuration.ConfigurationManager 6.0.1 to avoid vulnerable dependency chain (#​1792)
    • Fix configuration handling for custom DB provider (#​1795)
    • Add extra overloads for registering listeners (#​1852)
    • JobDataMap.TryGetGuidValue should return Guid instead of int (#​1856)
    • Upgrade to Newtonsoft.Json 13.0.1 (#​1859)

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.

🔕 Ignore: Close this PR and you won't be reminded about these updates 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 changed the title Update quartznet monorepo to v3.7.0 Update quartznet monorepo to v3.8.0 Nov 18, 2023
@renovate renovate bot force-pushed the renovate/quartznet-monorepo branch from 8c1636b to cf96614 Compare November 18, 2023 12:51
@renovate renovate bot force-pushed the renovate/quartznet-monorepo branch from cf96614 to d8b97c3 Compare February 17, 2024 12:27
@renovate renovate bot changed the title Update quartznet monorepo to v3.8.0 Update quartznet monorepo to v3.8.1 Feb 17, 2024
@renovate renovate bot force-pushed the renovate/quartznet-monorepo branch from d8b97c3 to 3888986 Compare May 9, 2024 13:29
@renovate renovate bot changed the title Update quartznet monorepo to v3.8.1 Update quartznet monorepo to v3.9.0 May 9, 2024
Copy link

coderabbitai bot commented May 9, 2024

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.

Walkthrough

The project WebHostedService.csproj has been updated to use newer versions of several Quartz packages, enhancing functionality and potentially improving performance. The versions of Quartz, Quartz.AspNetCore, and Quartz.Extensions.DependencyInjection have all been incremented from 3.5.0 to 3.13.0, reflecting a commitment to keeping dependencies up to date for better stability and feature support.

Changes

File Change Summary
Examples/WebHostedServiceQuartz/WebHostedService.csproj Updated Quartz, Quartz.AspNetCore, and Quartz.Extensions.DependencyInjection package versions from 3.5.0 to 3.13.0.

Poem

In a garden bright, with packages new,
Quartz hops along, with features to view.
Dependencies fresh, like spring's gentle breeze,
Upgrading our code, oh, what a tease!
Little bugs will hide, as we leap and play,
In the world of software, it’s a sunny day! 🐇✨


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@renovate renovate bot force-pushed the renovate/quartznet-monorepo branch from 3888986 to 31fa7a6 Compare June 26, 2024 09:55
@renovate renovate bot changed the title Update quartznet monorepo to v3.9.0 Update quartznet monorepo to v3.10.0 Jun 26, 2024
@renovate renovate bot force-pushed the renovate/quartznet-monorepo branch from 31fa7a6 to 3f4969b Compare July 9, 2024 14:51
@renovate renovate bot changed the title Update quartznet monorepo to v3.10.0 Update quartznet monorepo to v3.11.0 Jul 9, 2024
@renovate renovate bot force-pushed the renovate/quartznet-monorepo branch from 3f4969b to 817caf4 Compare August 3, 2024 13:17
@renovate renovate bot changed the title Update quartznet monorepo to v3.11.0 Update quartznet monorepo to v3.12.0 Aug 3, 2024
@renovate renovate bot force-pushed the renovate/quartznet-monorepo branch from 817caf4 to 582b828 Compare August 10, 2024 08:21
@renovate renovate bot changed the title Update quartznet monorepo to v3.12.0 Update quartznet monorepo to v3.13.0 Aug 10, 2024
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 448a068 and 582b828.

Files selected for processing (1)
  • Examples/WebHostedServiceQuartz/WebHostedService.csproj (1 hunks)
Additional comments not posted (3)
Examples/WebHostedServiceQuartz/WebHostedService.csproj (3)

11-11: Verify compatibility of Quartz.AspNetCore version update.

The Quartz.AspNetCore package has been updated from 3.5.0 to 3.13.0. Ensure that this version is compatible with your project's codebase and that any breaking changes are addressed.


10-10: Verify compatibility of Quartz version update.

The Quartz package has been updated from 3.5.0 to 3.13.0. Ensure that this version is compatible with your project's codebase and that any breaking changes are addressed.


12-12: Verify compatibility of Quartz.Extensions.DependencyInjection version update.

The Quartz.Extensions.DependencyInjection package has been updated from 3.5.0 to 3.13.0. Ensure that this version is compatible with your project's codebase and that any breaking changes are addressed.

@renovate renovate bot changed the title Update quartznet monorepo to v3.13.0 Update quartznet monorepo to 3.13.0 Aug 28, 2024
@renovate renovate bot force-pushed the renovate/quartznet-monorepo branch from 582b828 to c943169 Compare November 2, 2024 13:31
@renovate renovate bot changed the title Update quartznet monorepo to 3.13.0 Update quartznet monorepo to 3.13.1 Nov 2, 2024
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