All Versions
18
Latest Version
Avg Release Cycle
83 days
Latest Release
1271 days ago

Changelog History
Page 2

  • v3.0.5 Changes

    May 27, 2018

    ๐Ÿš€ This release fixes couple bugs and adds support for .NET Core version of Oracle's managed data access library.

    ๐Ÿ†• NEW FEATURE

    • ๐Ÿ‘Œ Support Oracle.ManagedDataAccess.Core (#609)

    ๐Ÿ›  FIXES

    • Trigger loop encountered using DailyTimeIntervalTrigger across DST start boundary (#610)
    • ๐Ÿ”ง Missing ConfigureAwait(false) in some parts of code (#618)
  • v3.0.4 Changes

    March 04, 2018

    ๐Ÿš€ This release fixes a nasty memory leak caused by QuartzSchedulerThread sharing
    โฌ†๏ธ its CancellationTokenSource with calls it makes. Everyone using 3.x is advised to upgrade.

    ๐Ÿ›  FIXES

    • Memory leak caused by CancellationTokenSource sharing (#600)
    • tables_oracle.sql should use NUMBER(19) instead of NUMBER(13) for long properties (#598)
  • v3.0.3 Changes

    February 24, 2018

    FIXES

    • โฑ XML scheduling requires write access to source XML file (#591)
    • ๐Ÿ‘Œ Improve listener error handling (#589)
    • SQL command parameters are not defined in 'IsTriggerStillPresent' method (#579)
    • ๐Ÿ— Source distribution couldn't be built with build.cmd/.sh when no .git directory present (#596)
    • ๐Ÿ‘ท Currently executing jobs cannot be retrieved via remoting (#580)
  • v3.0.2 Changes

    January 25, 2018

    ๐Ÿš€ This is a minor fix release that fixes single issue that still prevented full usage of remoting.

    ๐Ÿ›  FIXES

    • Mark ReadOnlyCompatibleHashSet as serializable (#576)
  • v3.0.1 Changes

    January 21, 2018

    ๐Ÿš€ This is a bug fix release that fixes cron expression parsing bug and reverts IRemotableQuartzScheduler
    interface back to its original form without Tasks and CancellationTokens - so that's it's actually usable
    through .NET Remoting infrastructure. Now zip packing is also back and includes Quartz.Server.

    ๐Ÿ›  FIXES

    • ๐Ÿš€ Create zip package as part of release, including Quartz.Server (#572)
    • A specific CronExpression fails with "Input string was not in a correct format." (#568)
    • Cannot use remoting due to Task and CancellationToken signatures (#571)
  • v3.0.0 Changes

    December 30, 2017

    NEW FEATURE

    • ๐Ÿ‘ท Task based jobs with async/await support, internals work in async/await manner
    • ๐Ÿ‘Œ Support .NET Core / netstandard 2.0 and .NET Framework 4.5.2 and later
    • ๐Ÿ‘Œ Support for Microsoft.Data.Sqlite via provider name SQLite-Microsoft, the old provider SQLite also still works
    • โž• Added preliminary support for SQL Server Memory-Optimized tables and Quartz.Impl.AdoJobStore.UpdateLockRowSemaphoreMOT
    • ๐Ÿšš Common.Logging removed from dependencies
    • ๐Ÿšš C5 Collections removed from ILMerge process, no longer needed
    • โž• Add support for eager validation of job scheduling XML file on plugin start
    • โž• Add support for extra custom time zone resolver function in TimeZoneUtil

    ๐Ÿ’ฅ BREAKING CHANGES

    • ๐Ÿ“ฆ Jobs and plugins are now in a separate assemblies/NuGet packages Quartz.Jobs and Quartz.Plugins
    • ADO.NET provider names have been simplified, the provider names are without version, e.g. SqlServer-20 => SqlServer
    • API methods have been revisited to mainly use IReadOnlyCollection, this hides both HashSets and Lists
    • LibLog has been hidden as internal (ILog etc), like it was originally intended to be
    • SimpleThreadPool is gone, old owned threads are gone
    • โฑ Scheduler methods have been changed to be Task based, remember to await them
    • ๐Ÿ‘ท IJob interface now returns a task
    • Some IList properties have been changed to IReadOnlyList to properly reflect intent
    • ๐Ÿ‘ SQL Server CE support has been dropped
    • DailyCalendar uses now datetimes for excluded dates and has ISet interface to access them
    • IObjectSerializer has new method, void Initialize(), that has to be implemented
    • ๐Ÿšš IInterruptableJob removed in favor of context's CancellationToken

    KNOWN ISSUES

    • ๐Ÿง Issues with time zone ids between Windows and Linux, they use different ids for the same zone
    • ๐Ÿ‘ No remoting support for .NET Core
  • v2.6.2 Changes

    May 27, 2018

    ๐Ÿš€ This is a maintenance release fixing some bugs.

    ๐Ÿ›  FIXES

    • trigger loop encountered using DailyTimeIntervalTrigger across DST start boundary (#610)
    • tables_oracle.sql should use NUMBER(19) instead of NUMBER(13) for long properties (#598)
    • โฑ XML scheduling requires write access to source XML file (#591)
  • v2.6.1 Changes

    October 09, 2017

    ๐Ÿš€ This is a maintenance release fixing an issue where misfire handling is being too slow at times.

    ๐Ÿ†• NEW FEATURE

    • ๐Ÿ‘ Allow performing misfire handling more frequently than misfireThreshold (#532)

    ๐Ÿ›  FIXES

    • ๐Ÿ‘ท Incomplete recovery of misfired jobs when using database-specific delegate types (#531)