Quartz 2.2.0
See the version list below for details.
dotnet add package Quartz --version 2.2.0
NuGet\Install-Package Quartz -Version 2.2.0
<PackageReference Include="Quartz" Version="2.2.0" />
paket add Quartz --version 2.2.0
#r "nuget: Quartz, 2.2.0"
// Install Quartz as a Cake Addin #addin nuget:?package=Quartz&version=2.2.0 // Install Quartz as a Cake Tool #tool nuget:?package=Quartz&version=2.2.0
Quartz.NET Scheduling Framework for .NET Platform
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net35 is compatible. net35-client is compatible. net40 is compatible. net40-client is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- Common.Logging (>= 2.1.2)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Quartz:
Package | Downloads |
---|---|
Ninject.Extensions.Quartz
Ninject.Extensions.Quartz provides a Quartz JobFactory to create your Quartz jobs from your Ninject IoC container |
GitHub repositories (88)
Showing the top 5 popular GitHub repositories that depend on Quartz:
Repository | Stars |
---|---|
bitwarden/server
Bitwarden infrastructure/backend (API, database, Docker, etc).
|
|
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
|
|
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
|
|
kgrzybek/modular-monolith-with-ddd
Full Modular Monolith application with Domain-Driven Design approach.
|
|
MassTransit/MassTransit
Distributed Application Framework for .NET
|
Version | Downloads | Last updated |
---|---|---|
2.3.3 | 63,547 | 7/9/2015 |
2.3.2 | 57,002 | 3/30/2015 |
2.3.1 | 49,765 | 1/15/2015 |
2.3.0 | 59,344 | 11/8/2014 |
2.2.4 | 48,234 | 7/27/2014 |
2.2.3 | 64,765 | 3/30/2014 |
2.2.2 | 29,726 | 2/9/2014 |
2.2.1 | 38,869 | 11/24/2013 |
2.2.0 | 46,992 | 9/9/2013 |
2.1.2 | 93,879 | 1/13/2013 |
2.1.1 | 1,484 | 1/4/2013 |
2.1.0 | 1,099 | 12/31/2012 |
2.0.1 | 54,845 | 4/22/2012 |
2.0.0 | 1,331 | 4/9/2012 |
1.0.3 | 54,543 | 8/3/2011 |
This release contains important bug fixes, new functionality and minor breaking changes.
UPGRADING
Database schema upgrade is needed from 2.x series to 2.2:
* SQL Server: alter table QRTZ_FIRED_TRIGGERS add SCHED_TIME [BIGINT] NOT NULL;
* MySQL: alter table QRTZ_FIRED_TRIGGERS add SCHED_TIME BIGINT(19) NOT NULL
* Oracle: alter table QRTZ_FIRED_TRIGGERS add SCHED_TIME NUMBER(19) NOT NULL
* this adds a new column SCHED_TIME to table QRTZ_FIRED_TRIGGERS
BREAKING CHANGES
* database schema needs upgrade
* add SchedulerStarting() method to ISchedulerListener interface
* make the scheduler's TypeLoadHelper available to plugins when they are initialized
* dbFailureRetryInterval parameter was removed from DirectSchedulerFactory APIs
NEW FEATURES
* ability to override worker thread names (when using SimpleThreadPool)
* add new IScheduler method: ScheduleJob(IJobDetail job, ISet trigger) to schedule multiple triggers for a job all at once
* allow 'triggerless' initial storing of non-durable jobs.
* improvements for job recovery information
* package job_scheduling_data_2_0.xsd to nuget package's content folder
* allow scheduler exported with remoting to be used from local machine only
* support for Oracle managed ODP driver
FIXES
* job ending with exception and trigger not going to fire again, trigger is incorrectly not removed from job store
* XML schema supports multiple schedule elements but processor does not
* DailyTimeIntervalTriggerPersistenceDelegate does not handle empty time interval properly
* DailyTimeIntervalScheduleBuilder.EndingDailyAfterCount(...) doesn't pass validation
* trace throwing exception
* bug in QuartzSchedulerThread.GetRandomizedIdleWaitTime()
* can't delete or replace job without the referenced class
MISC
* Performance improvements, including improvements to some select statements in AdoJobStore