summaryrefslogtreecommitdiff
path: root/apscheduler
Commit message (Expand)AuthorAgeFilesLines
* Bumped up version numberv3.0.2Alex Grönholm2015-03-091-3/+3
* Fixed str(job) or unicode(job) raising an exception for pending jobs (fixes #67)Alex Grönholm2015-03-091-3/+7
* Fixed wrong job sort order in some job stores and a related exception in the ...Alex Grönholm2015-03-094-4/+21
* Fixed ValueError when the target callable has a default keyword argument that...Alex Grönholm2015-01-061-2/+3
* Fixed _run_job_error() being called with the wrong number of arguments in mos...Alex Grönholm2014-10-204-5/+6
* Fixed start date getting set too far in the future in IntervalTrigger (fixes ...Alex Grönholm2014-10-201-1/+1
* Raise exception when attempting to serialize a job that doesn't have func_ref...Alex Grönholm2014-10-201-0/+6
* Modified get_callable_name() to work with a wider variety of callablesAlex Grönholm2014-10-201-8/+14
* Shortened the ID column of the apscheduler_jobs table in the SQLAlchemy job s...Alex Grönholm2014-08-121-2/+2
* Bumped up versionAlex Grönholm2014-08-121-3/+3
* Bumped version to 3.0.0v3.0.0Alex Grönholm2014-07-281-2/+2
* Fixed BlockingScheduler, BackgroundScheduler and GeventScheduler incorrectly ...Brendan McCollam2014-07-151-1/+1
* Bumped version to 3.0.0rc1v3.0.0rc1Alex Grönholm2014-07-071-2/+2
* Clarified the requirements for get_due_jobs() and get_all_jobs() in BaseJobStoreAlex Grönholm2014-07-071-2/+4
* Use Float instead of BigInteger in SQLAlchemyJobStore to maintain proper job ...Alex Grönholm2014-07-071-3/+3
* Added docstrings to datetime_to_utc_timestamp() and utc_timestamp_to_datetime()Alex Grönholm2014-07-071-0/+14
* Decreased maximum length of the "id" column in SQLAlchemyJobStore due to MySQ...Alex Grönholm2014-07-021-1/+2
* Fixed falsely passing tests and the bugs they uncovered in BaseSchedulerAlex Grönholm2014-07-011-4/+5
* Bumped version to 3.0.0b2v3.0.0b2Alex Grönholm2014-06-281-2/+2
* Bail out if the name of the local timezone cannot be determinedAlex Grönholm2014-06-281-0/+2
* Fixed EVENT_JOB_MISSED event not being created correctly in run_job()Alex Grönholm2014-06-271-1/+1
* Handle naive datetimes passed as next_run_timeBrendan McCollam2014-06-273-10/+7
* Fixed wrong number of arguments to _run_job_error()Alex Grönholm2014-06-181-1/+1
* Bumped version to 3.0.0b1v3.0.0b1Alex Grönholm2014-06-181-4/+4
* Defer replacing undefined options with defaults until the job is really sched...Alex Grönholm2014-06-183-20/+44
* Finished the "Extending APScheduler" documentationAlex Grönholm2014-06-173-2/+4
* Format tracebacks before trying to pass them from run_job() because they aren...Alex Grönholm2014-06-163-5/+13
* Raise ValueError instead of KeyError when attempting to add an executor or jo...Alex Grönholm2014-06-161-2/+4
* Added entry points for executors and job stores tooAlex Grönholm2014-06-1610-30/+106
* Accept the max_workers parameter as a string tooAlex Grönholm2014-06-161-2/+2
* Made the wakeup() method publicAlex Grönholm2014-06-166-19/+22
* Fixed infinite loop and index corruption in MemoryJobStoreAlex Grönholm2014-06-161-34/+45
* Separated the two pool executors to different classes and moved the debug exe...Alex Grönholm2014-06-153-38/+44
* Added the prefix option to configure()Alex Grönholm2014-06-151-2/+7
* Made the trigger plugins/classes lists privateAlex Grönholm2014-06-151-5/+5
* Added unit tests for the BaseScheduler classAlex Grönholm2014-06-159-154/+174
* Stop looking for due jobs when the first non-matching job is foundAlex Grönholm2014-06-131-2/+3
* Added __slots__ to the trigger classesAlex Grönholm2014-06-133-0/+6
* Changed the trigger API to allow it to work with run times in the pastAlex Grönholm2014-05-316-34/+35
* Fixed AsyncIO not getting tested on Python 3.2 and lowerAlex Grönholm2014-05-301-1/+4
* Overhauled the tests for apscheduler.util moduleAlex Grönholm2014-05-301-2/+2
* Overhauled the tests for Job classAlex Grönholm2014-05-301-1/+2
* Tweaked the scheduler and job stores API and added the reschedule_job() methodAlex Grönholm2014-05-307-99/+147
* Revised the rest of the documentationAlex Grönholm2014-05-292-3/+36
* Removed job run counting and the max_runs options since they could not be rel...Alex Grönholm2014-05-282-34/+9
* Fixed invocation of scheduler.modify_job()Alex Grönholm2014-05-281-2/+26
* Respect the scheduler defaults in @scheduled_job()Alex Grönholm2014-05-281-3/+4
* Fixed signatures of job store constructors to show the correct default value ...Alex Grönholm2014-05-281-1/+2
* Fixed the signature of the add_job() method in the docsAlex Grönholm2014-05-281-5/+6
* Added API documentation for apscheduler.eventsAlex Grönholm2014-05-281-10/+10