mvniekerk/tokio-cron-scheduler
 Watch   
 Star   
 Fork   
2025-10-28 14:16:43
tokio-cron-scheduler

v0.15.1 - Timezone bugfix

Bugfix release Thank you @thomas-senechal for the PR #106

2025-09-29 01:19:25
tokio-cron-scheduler

v0.15.0 - croner updates

A maintenance release - thank you @JosiahParry for the PR. This includes an update to croner

2025-05-07 02:57:15
tokio-cron-scheduler

v0.14.0 - NATS and store visibility

Thank you @nicka101 for the PR on making the Job and Store packages public (so that MetadataStore can be implemented elsewhere).

Also - breaking changes, if you're using NATS. Swapped over to the async-nats crate. Default() is no longer available for the NATS stores because creating a connection is async.

2024-09-22 17:20:38
tokio-cron-scheduler

v0.13.0 English scheduling

Thank you @kaplanelad for the english-to-cron crate and the issue.

This will enable scheduling like "every 10 seconds". This is feature gated behind the "english" feature.

2024-09-21 21:37:52
tokio-cron-scheduler

v0.12.0 - use croner-rust instead of cron

Thank you @MGough (and @adrian-kong) for this.

If you want to see why croner-rust is preferable, have a look at this comparison.

The interface in creating jobs are incompatible with the previous versions if you were using the FromStr impl from the cron crate.

2024-09-21 16:27:20
tokio-cron-scheduler

v0.11.1 Postgres bugfix

Thank you @azasypkin for the PR

This fixes a metadatastore bug when using Postgres

2024-08-10 04:08:30
tokio-cron-scheduler

v0.11.0 - Job scheduler now has configurable channel size

JobScheduler::new_with_channel_size(1000).await; The default is 200 when calling JobScheduler::new().await;

This addition allows alleviation of task runner starvation. Stems from Issue #65 and #61 .

Enjoy!

2024-04-26 13:39:08
tokio-cron-scheduler

v0.10.2 - Unix signal only

Because it uses Tokio for the ctrl+c signal handling, the signal feature only works with Unix.

Thank you @SandroHc for this.

2024-04-26 13:24:02
tokio-cron-scheduler

v0.10.1 - Timezone bugfix

Thank you @rlienlaf for the bug fix on the timezone offsets.

2024-01-29 16:17:45
tokio-cron-scheduler

v0.10.0 - Timezone support

Hi all Timezone support has landed, plus a builder API. For now you'll need the builder API to change the TZ of a job.

Thank you also @marioloko for the added log feature.