feat: add -schemaHash=false to omit schema hash from header comment#33
Merged
Merged
Conversation
VojtechVitek
approved these changes
Jun 19, 2026
49dd074 to
c59f1ef
Compare
The schema hash in the OpenAPI header comment changes on every schema edit, causing frequent git conflicts in the generated YAML. This adds a -schemaHash target option (default true) to omit it when desired. - default (or -schemaHash): header comment unchanged (name, version, hash). - -schemaHash=false: header comment carries only the name and version. The "Code generated by ... DO NOT EDIT" line stays. Default behavior is unchanged, so this is non-breaking.
c59f1ef to
cace5c2
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.
The schema hash in the OpenAPI header comment changes on every schema edit, causing frequent git conflicts in the generated YAML. This adds a
-schemaHashtarget option (default true) to omit it when wanted — default behavior is unchanged, so it's non-breaking.Part of a coordinated change across the webrpc generators. The maintainer's call is that the hash stays on by default and omission is opt-out.
Behavior
-schemaHash: header comment unchanged (# <name> <version> <hash>).-schemaHash=false: header comment carries only name + version. TheDO NOT EDITline stays.