-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Fix Ruby spec parsing #20470
Fix Ruby spec parsing #20470
Conversation
This is not the job of a YAML parser, but our own code, generally speaking. |
You could create new type StringArray []string with UnmarshalYAML function that would support both single email as string or array of strings |
Sure, but this field is not needed. There is no benefit of having it at the moment. |
As it's easy to fix I would go for new type ... - should I push to your branch @KN4CK3R ? |
Sure, but this field is not needed. :-) |
well this is backportable ... |
. |
* giteaofficial/main: Fix Ruby package parsing by removed unused email field (go-gitea#20470) [skip ci] Updated translations via Crowdin Add repository condition for issue count (go-gitea#20454) Prepend commit message to template content (go-gitea#20429) Improve pprof doc (go-gitea#20463) Improve code diff highlight, fix incorrect rendered diff result (go-gitea#19958) Add Cache-Control header to html and api responses, add no-transform (go-gitea#20432) [skip ci] Updated translations via Crowdin Allow non-semver packages in the Conan package registry (go-gitea#20412) Use body text color in repository files table links (go-gitea#20386) Correct code block in installation docs for Snap (go-gitea#20440) Downgrade golangci-lint to 1.47.0 (go-gitea#20445) Add eslint-plugin-sonarjs (go-gitea#20431) Fix: Actor is required to get user repositories (go-gitea#20443) Add "X-Gitea-Object-Type" header for GET `/raw/` & `/media/` API (go-gitea#20438) Simplify visibility checks (go-gitea#20406)
-> #20525 |
fixes #19837
Problem is the
email
field which can be a string or an array of strings. The yaml parser does not support (?) the parsing of a single string into an array so I just removed the field as it is not used.