You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Quartz.2.2.nuspec 2.6 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0"?>
  2. <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
  3. <metadata>
  4. <id>Quartz</id>
  5. <version>2.2</version>
  6. <title>Quartz.NET</title>
  7. <authors>Marko Lahma</authors>
  8. <owners>Marko Lahma</owners>
  9. <projectUrl>http://www.quartz-scheduler.net/</projectUrl>
  10. <requireLicenseAcceptance>false</requireLicenseAcceptance>
  11. <description>Quartz.NET Scheduling Framework for .NET Platform</description>
  12. <releaseNotes>This release contains important bug fixes, new functionality and minor breaking changes.
  13. UPGRADING
  14. Database schema upgrade is needed from 2.x series to 2.2:
  15. * SQL Server: alter table QRTZ_FIRED_TRIGGERS add SCHED_TIME [BIGINT] NOT NULL;
  16. * MySQL: alter table QRTZ_FIRED_TRIGGERS add SCHED_TIME BIGINT(19) NOT NULL
  17. * Oracle: alter table QRTZ_FIRED_TRIGGERS add SCHED_TIME NUMBER(19) NOT NULL
  18. * this adds a new column SCHED_TIME to table QRTZ_FIRED_TRIGGERS
  19. BREAKING CHANGES
  20. * database schema needs upgrade
  21. * add SchedulerStarting() method to ISchedulerListener interface
  22. * make the scheduler's TypeLoadHelper available to plugins when they are initialized
  23. * dbFailureRetryInterval parameter was removed from DirectSchedulerFactory APIs
  24. NEW FEATURES
  25. * ability to override worker thread names (when using SimpleThreadPool)
  26. * add new IScheduler method: ScheduleJob(IJobDetail job, ISet trigger) to schedule multiple triggers for a job all at once
  27. * allow 'triggerless' initial storing of non-durable jobs.
  28. * improvements for job recovery information
  29. * package job_scheduling_data_2_0.xsd to nuget package's content folder
  30. * allow scheduler exported with remoting to be used from local machine only
  31. * support for Oracle managed ODP driver
  32. FIXES
  33. * job ending with exception and trigger not going to fire again, trigger is incorrectly not removed from job store
  34. * XML schema supports multiple schedule elements but processor does not
  35. * DailyTimeIntervalTriggerPersistenceDelegate does not handle empty time interval properly
  36. * DailyTimeIntervalScheduleBuilder.EndingDailyAfterCount(...) doesn't pass validation
  37. * trace throwing exception
  38. * bug in QuartzSchedulerThread.GetRandomizedIdleWaitTime()
  39. * can't delete or replace job without the referenced class
  40. MISC
  41. * Performance improvements, including improvements to some select statements in AdoJobStore</releaseNotes>
  42. <language>en-US</language>
  43. <dependencies>
  44. <dependency id="Common.Logging" version="2.1.2" />
  45. </dependencies>
  46. </metadata>
  47. </package>