1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-31 11:34:15 -05:00
denoland-deno/ext
Igor Zinkovsky 01d3e0f317
feat(cron) implement Deno.cron() (#21019)
This PR adds unstable `Deno.cron` API to trigger execution of cron jobs.

* State: All cron state is in memory. Cron jobs are scheduled according
to the cron schedule expression and the current time. No state is
persisted to disk.
* Time zone: Cron expressions specify time in UTC.
* Overlapping executions: not permitted. If the next scheduled execution
time occurs while the same cron job is still executing, the scheduled
execution is skipped.
* Retries: failed jobs are automatically retried until they succeed or
until retry threshold is reached. Retry policy can be optionally
specified using `options.backoffSchedule`.
2023-11-01 11:57:55 -07:00
..
broadcast_channel chore: forward v1.37.2 release commit to main (#20897) 2023-10-13 03:12:06 +00:00
cache chore: forward v1.37.2 release commit to main (#20897) 2023-10-13 03:12:06 +00:00
console chore: forward v1.37.2 release commit to main (#20897) 2023-10-13 03:12:06 +00:00
cron feat(cron) implement Deno.cron() (#21019) 2023-11-01 11:57:55 -07:00
crypto chore: upgrade rsa to 0.9 (#21016) 2023-10-30 16:25:12 +01:00
fetch feat(ext/web): EventSource (#14730) 2023-10-31 18:16:27 +01:00
ffi fix(ext/ffi): use anybuffer for op_ffi_buf_copy_into (#21006) 2023-10-28 10:02:57 +03:00
fs chore: forward v1.37.2 release commit to main (#20897) 2023-10-13 03:12:06 +00:00
http fix(ext/http): patch regression in variadic args to serve handler (#20796) 2023-10-27 05:34:41 -06:00
io chore: forward v1.37.2 release commit to main (#20897) 2023-10-13 03:12:06 +00:00
kv chore: update ext/kv to use denokv_* crates (#20986) 2023-10-31 11:13:57 +00:00
napi chore: forward v1.37.2 release commit to main (#20897) 2023-10-13 03:12:06 +00:00
net chore: forward v1.37.2 release commit to main (#20897) 2023-10-13 03:12:06 +00:00
node fix(ext/node): adapt dynamic type checking to Node.js behavior (#21014) 2023-11-01 16:06:25 +09:00
tls perf: use deno_native_certs crate (#18072) 2023-10-31 12:55:46 +01:00
url chore: forward v1.37.2 release commit to main (#20897) 2023-10-13 03:12:06 +00:00
web refactor: op_sleep uses op2 macro (#20908) 2023-10-26 14:16:41 -06:00
webidl chore: forward v1.37.2 release commit to main (#20897) 2023-10-13 03:12:06 +00:00
websocket feat(ext/websocket): use rustls-tokio-stream instead of tokio-rustls (#20518) 2023-10-31 09:34:45 -06:00
webstorage chore: forward v1.37.2 release commit to main (#20897) 2023-10-13 03:12:06 +00:00