summaryrefslogtreecommitdiff
path: root/apscheduler
Commit message (Expand)AuthorAgeFilesLines
* Renamed the base class for the combining triggersAlex Grönholm2017-12-211-3/+3
* Added combining triggers (AndTrigger + OrTrigger)Alex Grönholm2017-12-191-0/+86
* Allow multiple spaces in crontab format (#260)Luc Tielen2017-12-131-1/+1
* Cancel all pending futures on AsyncIOExecutor shutdownAlex Grönholm2017-12-131-0/+11
* Fixed passing "wait" as keyword argument to AsyncIOScheduler.shutdown()Alex Grönholm2017-12-131-3/+4
* Allow spaces around commas in CronTrigger fieldsAlex Grönholm2017-12-121-6/+4
* Don't display empty jitter in the repr() of cron/interval triggersAlex Grönholm2017-12-122-6/+16
* Added support for creating cron triggers from crontab expressionsAlex Grönholm2017-12-121-0/+20
* Added support for named monthsAlex Grönholm2017-12-123-3/+39
* Added better validation for cron trigger expressionsAlex Grönholm2017-12-112-4/+37
* Implement random jitter option for CronTrigger and IntervalTrigger (#258)Gilbert Gilb's2017-12-103-18/+64
* Fixed traceback or its frames not being available for logger.exception()Alex Grönholm2017-12-091-4/+3
* Fixed memory leak when scheduled jobs raise exceptionsAlex Grönholm2017-12-091-0/+10
* Fixed the maximum value for CronTrigger's "year" fieldAlex Grönholm2017-11-261-1/+1
* Fixed flake8's "Don't use bare except:" errorsAlex Grönholm2017-11-0711-14/+14
* Added the engine_options option to SQLAlchemyJobStoreAlex Grönholm2017-11-071-7/+10
* Added a workaround for import troubles with PyInstaller et alAlex Grönholm2017-10-211-2/+8
* Added documentation and changelog entry for the "tableschema" argumentAlex Grönholm2017-10-211-0/+2
* Adding optional schema argument to SQLAlchemy (#224)Meir Tseitlin2017-10-101-2/+3
* Use tuple in catching exceptions (#196)Pieter Eendebak2017-04-021-1/+1
* Fixed case where both Qt4 and Qt5 are installed, but Qt4 is already imported ...Pieter Eendebak2017-04-021-1/+1
* Update super call to support Python 2.7 (#171)Or Weis2016-11-241-1/+1
* Fixed flake8 errorAlex Grönholm2016-11-211-0/+1
* Fixed @scheduled_job not playing nice with persistent job stores (fixes #150)Alex Grönholm2016-11-061-9/+14
* Fixed passing start_time and/or end_time to CronTrigger and IntervalTrigger a...Alex Grönholm2016-11-052-4/+4
* Fixed scheduler loop breaking if the job store fails (fixes #109)Alex Grönholm2016-11-051-2/+21
* Added coroutine support for asyncio and Tornado executors (fixes #96, #98)Alex Grönholm2016-09-155-4/+127
* Fixed CronTrigger's range expression allowing values outside of the rangeAlex Grönholm2016-08-021-15/+12
* Fixed positional weekday position expressions failing on Python 3Alex Grönholm2016-08-011-1/+1
* Renamed ZookeeperJobStore to ZooKeeperJobStoreAlex Grönholm2016-07-161-5/+5
* Added tests for the import fix in ref_to_obj()Alex Grönholm2016-07-141-1/+1
* Cleaned up importsAlex Grönholm2016-07-141-0/+3
* Improve module import from ref (#149)Jarek Glowacki2016-07-141-2/+2
* Zookeeper jobstore support (#144)Jose Ignacio Villar2016-07-031-0/+176
* Documented the migration and the scheduler statesv3.2.0Alex Grönholm2016-06-141-3/+9
* Backtracked on enum useAlex Grönholm2016-06-132-36/+33
* Finished up the pause/resume scheduler feature w/ docsAlex Grönholm2016-06-131-53/+64
* Fixed endless loop with CronTrigger on computers with low clock resolutionAlex Grönholm2016-06-131-0/+2
* Added missing EVENT_ALL_JOBS_REMOVED to EVENT_ALLAlex Grönholm2016-06-131-3/+3
* Fixed incorrect DateTrigger run time with run_date=None and a non-local timezoneAlex Grönholm2016-05-061-1/+4
* Fixed MongoDB job store using id() instead of job id in JobLookupErrorJavier Domingo2016-04-291-1/+1
* Reverted the setuptools dependency bumpAlex Grönholm2016-04-211-5/+3
* Added the ability to pause and resume job processing in the schedulerAlex Grönholm2016-04-109-77/+133
* Move the wakeup() call directly to BaseScheduler.start()Alex Grönholm2016-04-108-21/+7
* Fixed flake8 errorAlex Grönholm2016-04-031-1/+0
* Implemented __getstate__ and __setstate__ for trigger classes (fixes #121)Alex Grönholm2016-04-033-0/+68
* Added pickling tests for triggersAlex Grönholm2016-04-032-0/+14
* Migrated to setuptools_scmAlex Grönholm2016-04-021-5/+6
* Added time zone to the output of CronTrigger and IntervalTriggerAlex Grönholm2016-04-022-3/+4
* Added EVENT_JOB_SUBMITTED and EVENT_JOB_MAX_INSTANCES eventsAlex Grönholm2016-04-022-6/+34