-
Notifications
You must be signed in to change notification settings - Fork 874
feat: add YAML support to server #6934
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
+1,578
−441
Merged
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
0d08b84
big wip
ammario fce8e5f
SimpleString isomorphism!!!
ammario 2844497
Support scalars
ammario 4960df8
ComplexObjects work!
ammario 2a2c926
golden files work!
ammario 056437f
Fixup YAML types
ammario c2428ff
give default value in comment
ammario 8b210dc
Merge remote-tracking branch 'origin/main' into yaml
ammario 26d7f21
Merge remote-tracking branch 'origin/main' into yaml
ammario 38fa539
Add values.YAMLConfigPath
ammario 64b167a
Merge remote-tracking branch 'origin/main' into yaml
ammario 7edea99
Add YAML to core clibase parsing
ammario 3ab35c1
Server Test WIP
ammario 38155da
More WIP
ammario 451c149
Merge remote-tracking branch 'origin/main' into yaml
ammario c72f67c
hmm
ammario 9d61ca7
Cant find a clean way to do this..
ammario 5b61b7b
Mediocre solution
ammario 4923d92
hmm
ammario b6f982c
Merge remote-tracking branch 'origin/main' into yaml
ammario 781786b
New, better YAML
ammario b03999a
clibase passes
ammario d018838
Fix UnknownOptions errors
ammario fe93d7f
Work on nil normalization
ammario 0af47bb
Server tests pass!
ammario 4a1df77
Merge remote-tracking branch 'origin/main' into yaml
ammario 64255b3
make gen + self review cleanup
ammario 99d6068
Generate docs
ammario 300484b
make gen
ammario 4cf5a21
Add --debug-options
ammario abc92d9
Normalize golden files
ammario a958324
fix log path
ammario 8ead9fc
minor fix
ammario 6eb19f6
Fix mutability bug in PrepareAll
ammario f77460f
Address review comments
ammario 4e63bd5
Merge remote-tracking branch 'origin/main' into yaml
ammario 2a96c70
Fix windows?
ammario 7ae7cad
Small improvements
ammario 09d5a35
Reduce YAML ident to 2
ammario d6506c6
Log mystery error
ammario 551e55d
fixup! Log mystery error
ammario c3f3317
ecdsa
ammario File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Work on nil normalization
- Loading branch information
commit fe93d7f1280da26fa52f7b03541b63387faad6c3
There are no files selected for viewing
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this would be nicer to read as
%s\n(default: %s, type: %s)
so default is always on the last line. Looking at the golden file it was hard to parse when the default/type randomly wrapped at 80 chars.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Big fan of including the description as a comment, and the word wrapping makes it easy to read.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch