- PostgreSQL 12 support by dverite
- Fixes a bug that caused the cron.job table to not appear in pg_dump
- Adds a cron.host setting to make the postgres host configurable
- Fixes a bug that could cause segmentation fault after cron.unschedule
- Fixes a bug that causes pg_cron to run during pg_upgrade
- Fixes a bug that causes pg_cron to show up incorrectly in pg_stat_activity in PG11
- PostgreSQL 11 support by dverite
- Fix a clang build error by kxjhlele
- Fixed a bug that would cause new jobs to be created as inactive
- Add new 'active' column on cron.job table to enable or disable job(s).
- Added a regression test, simply run 'make installcheck'
- Set relevant application_name in pg_stat_activity
- Increased pg_cron version to 1.1
- PostgreSQL 10 support
- Restrict the maximum number of concurrent tasks
- Ensure table locks on cron.job are kept after schedule/unschedule
- Fixes a memory leak that occurs when a connection fails immediately
- Fixes a memory leak due to switching memory context when loading metadata
- Fixes a segmentation fault that can occur when using an error message after PQclear
- Use WaitLatch instead of pg_usleep when there are no tasks
- Initial 1.0 candidate