{{ message }}
chore: release 4.3.0#539
Merged
Merged
Conversation
f026f44 to
e2e9ba0
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Version bump to 4.3.0 (minor: additive features + fixes, no breaking changes). Notes below are ready to paste into the GitHub release.
node-cron 4.3.0
Features
L(last day of month) in the day-of-month field — e.g.0 0 12 L * *, leap-year aware, and combinable with explicit days (15,L). (feat: supportL(last day of month) #396, closes Please add support forLfor day #147 — thanks @antonidasyang)missedExecutionToleranceoption (ms, default1000): a heartbeat that wakes a little late still runs its slot instead of being reported as missed. Always capped to the gap to the next slot. (fix: tolerate late heartbeats so drifting timers don't skip executions #534, closes Opt out "Possible blocking IO or high CPU user..." check #485)startTimeoutoption for background tasks (ms, default5000). (fix: surface real background task start errors and stop orphaned daemons #535)Fixes
getNextMatchfor correctness around DST: no more ~1-year overshoot when a daily time falls in the spring-forward gap. (refactor: rewrite matcher-walker to infer next run from cron fields #533, closes getNextMatch overshoots ~1 year for a daily schedule whose time falls in the spring-forward gap #518)Compatibility
Docs
getTasks/getTask. (docs: refresh README for v4 #536, site)Behavior note
missedExecutionTolerancedefaults to1000ms, so a scheduled run that wakes up to ~1s late now executes instead of emittingexecution:missed. This is a bug-fix improvement, not an API break.