feat(v4): cron expression validation#5730
Open
ysknsid25 wants to merge 1 commit intocolinhacks:mainfrom
Open
Conversation
Signed-off-by: ysknsid25 <kengo071225@gmail.com>
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.
Overview
This PR adds a new built-in string format validator z.cron() for validating standard 5-field cron expressions (minute, hour, day-of-month, month, day-of-week).
Why this is useful
Cron expressions are widely used in task scheduling, CI/CD pipelines, cloud functions (AWS EventBridge, GCP Cloud Scheduler, etc.), and configuration files. Validating them at the schema layer catches malformed expressions before they reach the scheduler, preventing silent failures or unexpected behavior at runtime.
Before this PR, users had to reach for a custom .refine() with a hand-written regex or a third-party package:
With
z.cron(), this is a single, well-tested, semantically clear call.Usage
Standalone schema
As a string check
Supported syntax