Add W3C-style specification for fuzzy schedule time syntax#12456
Merged
Add W3C-style specification for fuzzy schedule time syntax#12456
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Create W3C style specification for fuzzy schedule time syntax
Add W3C-style specification for fuzzy schedule time syntax
Jan 29, 2026
pelikhan
reviewed
Jan 29, 2026
|
|
||
| #### 6.2.1 Hash Algorithm | ||
|
|
||
| An implementation MUST use the FNV-1a (Fowler-Noll-Vo) 32-bit hash algorithm defined as: |
Contributor
There was a problem hiding this comment.
@copilot an implementation may use any hash function
Contributor
Author
There was a problem hiding this comment.
Updated in a9d17dc. The specification now allows any hash function that meets the requirements (determinism, distribution, stability, integer output). FNV-1a is recommended as a reference implementation (SHOULD), and alternative hash functions like MurmurHash, xxHash, or CityHash are explicitly permitted. The FNV reference has been moved from normative to informative references.
- Relaxed FNV-1a requirement from MUST to SHOULD - Added general hash function requirements (determinism, distribution, stability) - Allowed alternative hash functions (MurmurHash, xxHash, CityHash) - Moved FNV reference from normative to informative - Bumped version to 1.1.0 Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.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.
Formalizes the fuzzy schedule time syntax with a W3C-compliant specification document.
Changes
docs/src/content/docs/reference/fuzzy-schedule-specification.md(1,110 lines)Coverage
Syntax patterns: Daily (basic/around/between), weekly (basic/day/constrained), hourly, intervals (minutes/hours/days/weeks), bi-weekly, tri-weekly
Time formats: 24-hour (HH:MM), 12-hour (Ham/Hpm), keywords (midnight/noon)
Timezone support: UTC offset syntax (utc±N, utc±HH:MM), conversion algorithm, day boundary handling
Scattering algorithm: Flexible hash function requirements (determinism, distribution, stability, integer output) with FNV-1a as recommended reference implementation. Alternative hash functions (MurmurHash, xxHash, CityHash) are explicitly supported. Workflow identifier format (
owner/repo/path), day/time wrapping logic.Hash Function Flexibility
The specification allows implementations to use any hash function that meets the requirements:
FNV-1a is provided as a reference implementation (SHOULD use), with explicit support for alternatives like MurmurHash, xxHash, and CityHash.
Example
Located alongside
mcp-gateway.mdfor consistency with existing specifications.Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.