Update dependency Quartz.AspNetCore to 3.17.1#1742
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
Update dependency Quartz.AspNetCore to 3.17.1#1742renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
8255ff6 to
22cf21b
Compare
22cf21b to
eeb6835
Compare
eeb6835 to
37f2743
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
3.15.1→3.17.1Release Notes
quartznet/quartznet (Quartz.AspNetCore)
v3.17.1Highlights
Jenkins-style H (hash) token for cron expressions
Quartz.NET now supports the
H(hash) token in cron expressions, inspired by Jenkins. TheHtoken resolves to a deterministic value based on the trigger's identity, spreading job execution times to avoid the thundering herd problem when many triggers share the same schedule.Supported forms:
H,H(min-max),H/step,H(min-max)/stepThe hash seed is automatically derived from the trigger's identity (name + group) when using
TriggerBuilder, or can be provided explicitly. See the cron trigger documentation for full details.Structured logging history plugins
New
StructuredLoggingJobHistoryPluginandStructuredLoggingTriggerHistoryPluginprovide first-class support for structured logging frameworks like Serilog and NLog. Unlike the existing logging plugins that use index-based format placeholders ({0},{1}), these use named MEL-style message template parameters ({JobName},{TriggerGroup}, etc.), making log output queryable in structured logging sinks and avoiding template cache memory leaks.Message templates are fully configurable via standard Quartz property configuration.
Bug Fixes
updateTriggers: trueno longer resets paused triggers back to normal state. (#2968)/_blazorendpoint conflict — The Quartz Dashboard no longer conflicts with host applications that also use Blazor. (#2975)Full Changelog: quartznet/quartznet@v3.17.0...v3.17.1
v3.17.0This is a major bug-fix release with 40+ fixes spanning trigger state management, clustering reliability, DST handling, misfire accuracy, and scheduler lifecycle. An optional database schema migration improves misfire handling.
Highlights
Optional database migration:
MISFIRE_ORIG_FIRE_TIMEcolumnA new optional column
MISFIRE_ORIG_FIRE_TIMEonQRTZ_TRIGGERSenables correctScheduledFireTimeUtcfor misfired triggers when using "fire now" misfire policies. Without it,ScheduledFireTimeUtcequalsFireTimeUtcfor misfired triggers (the pre-existing behavior). RAMJobStore does not require this migration.Migration script:
database/schema_30_add_misfire_orig_fire_time.sql(covers SQL Server, PostgreSQL, MySQL, SQLite, Oracle, Firebird)Clustering and concurrency fixes
DisallowConcurrentExecutionjobs running simultaneously in cluster (#2697)DisallowConcurrentExecutionviolation (#2915)DisallowConcurrentExecutionjobs (#2822)FIRED_TRIGGERSnot cleaned up on job deletion mid-execution (#1696)Trigger state and fire time accuracy
GetTriggerStatereturning Complete instead of Blocked for executing triggers (#2255)RAMJobStore.TriggersFiredskipping triggers causing wrong trigger/job execution (#1386)ScheduledFireTimeUtcreturning wrong value after misfire (#2899)PreviousFireTimeUtcreset to null on restart withOverWriteExistingData=true(#1834)SimpleTriggerfirst fire time wrong when created long before scheduling (#2455)CronTriggerdouble-firing when rescheduled with oldStartTimeUtc(#2909)JobData(#2083)DoNothingmisfire policy skipping fire times within threshold (#2912)DST and time handling
DailyTimeIntervalTriggerextra fire during DST fall-back (#2917)DailyTimeIntervalTriggermutatingStartTimeUtcduring fire time computation (#2906)DailyTimeIntervalTriggerRepeatCountto apply per day (#1633)ComputeFireTimesBetweenmodifying trigger StartTimeUtc (#2722)Scheduler lifecycle and threading
Monitor.Waitwith asyncSemaphoreSlim(#2877)DedicatedThreadPoolthreads leaking on scheduler shutdown (#1357)Job execution
RefireImmediatelywithJobChainingJobListenerfiring chain prematurely (#663)AsyncLocalflow fromIJobFactory.NewJobtoIJob.Execute(#1528)IJobDetailproperty toJobExecutionException(#1442)API and configuration
idleWaitTimeof zero silently ignored instead of throwing (#1394)AddJob/AddTriggerambiguous references without removing overloads (#2795)PauseJobs/ResumeJobinteraction bug in RAMJobStore (#761)RemoteSchedulerignoring localquartz.scheduler.instanceName(#313)Dashboard
What's Changed
Full Changelog: quartznet/quartznet@v3.16.1...v3.17.0
v3.16.1: Quartz.NET 3.16.1This release hopefully fixes the hiccup we had with the versioning/packaging of the new Dashboard package.
What's Changed
Full Changelog: quartznet/quartznet@v3.16.0...v3.16.1
v3.16.0: Quartz.NET 3.16.0On top of great community fixes, this release also brings the experimental Dashboard into action. You can enable it on NET 8 and later, see documentation for details.
What's Changed
CalendarIntervalTriggerImplby @jafin in #2837Full Changelog: quartznet/quartznet@v3.15.1...v3.16.0
Configuration
📅 Schedule: Branch creation - "before 5:00am,before 10am,before 3pm,before 8pm" in timezone Asia/Shanghai, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.