feat: add delete_generation_output_paths to repo-config.yaml#13186
feat: add delete_generation_output_paths to repo-config.yaml#13186jskeet merged 1 commit intogoogleapis:mainfrom
Conversation
This is used as an emergency escape hatch when generation creates files we don't want. The only known usage at the moment is for storage, where files are generated under internal/generated/snippets/storage/internal and we don't want them.
Summary of ChangesHello @jskeet, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request provides a crucial "escape hatch" for the code generation process by allowing the explicit deletion of unwanted files or directories after generation. This addresses scenarios where certain outputs are difficult to prevent from being generated but should not be present in the final repository, improving the cleanliness and correctness of generated codebases. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request adds a new configuration delete_generation_output_paths to allow deleting generated files. The implementation has a path traversal vulnerability in deleteOutputPaths which could allow deleting files outside the intended directory. I've suggested a fix for this. Additionally, the new test for this feature is missing a case to check for this vulnerability, so I've suggested an update to the test to include it.
This is used as an emergency escape hatch when generation creates files we don't want. The only known usage at the moment is for storage, where files are generated under
internal/generated/snippets/storage/internal and we don't want them.
Fixes googleapis/librarian#2620