-
Notifications
You must be signed in to change notification settings - Fork 67
chore(librariangen): introduce message package and add ReleaseInitRequest #3958
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
Conversation
…uest The message packages hosts the data types that are common across the CLI and language container implementations. ReleaseInitRequest and ReleaseInitResponse are example data types that belong to the package. The request and response types are the argument and return type of the upcoming ReleaseInit function implementation. It was originally "request" package in google-cloud-go. However, because it also includes responses from the language container to the CLI, I'm renaming it to "messages".
Summary of ChangesHello @suztomo, 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 refactors the core data types used for inter-process communication within the 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
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #3958 +/- ##
=======================================
Coverage 88.37% 88.37%
=======================================
Files 6 6
Lines 370 370
=======================================
Hits 327 327
Misses 30 30
Partials 13 13
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
Code Review
This pull request refactors the request package into a new message package and introduces the ReleaseInitRequest and ReleaseInitResponse data types. The changes are well-structured and clear. My feedback includes suggestions to improve the documentation for the newly added types and a recommendation to include unit tests to ensure their correctness, particularly for JSON serialization.
| // Request is the structure of the release-init-request.json file. | ||
| type ReleaseInitRequest struct { | ||
| Libraries []*Library `json:"libraries"` | ||
| } | ||
|
|
||
| // Response is the structure of the release-init-response.json file. | ||
| type ReleaseInitResponse struct { | ||
| Error string `json:"error,omitempty"` | ||
| } |
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.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
|
Many checks didn't run. Closing/reopening this. |
|
|



The message packages hosts the data types that are common across
the CLI and language container implementations.
ReleaseInitRequest and ReleaseInitResponse are example data types
that belong to the package.
The request and response types are the argument and return type
of the upcoming ReleaseInit function implementation.
It was originally "request" package in google-cloud-go. However,
because it also includes responses from the language container to
the CLI, I'm renaming it to "messages".