fix(spec): update last_updated_after to be a timestamp#1288
fix(spec): update last_updated_after to be a timestamp#1288yarolegovich wants to merge 3 commits intoa2aproject:mainfrom
Conversation
Summary of ChangesHello @yarolegovich, 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 standardizes 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
|
There was a problem hiding this comment.
Code Review
This pull request updates the last_updated_after field in ListTasksRequest from int64 to google.protobuf.Timestamp for better consistency across the protocol. This is a good improvement. I've added one minor suggestion to enhance the comment for this field by including an example timestamp, which aligns with the documentation style used for other timestamp fields in the same file.
holtskinner
left a comment
There was a problem hiding this comment.
Be sure to make any fixes needed in the Documentation as well.
Double-checked, couldn't find field references anywhere. |
This PR combines two fixes for the ListTaskRequest last_updated_after field one changes the field to a timestamp type and one renames it and clarifies the ordering of the task list result. Original PR for the timestamp type fix was: #1288 Fixes: #1287 Fixes: #1206 --------- Co-authored-by: Yaroslav Shevchuk <yarolegovich@gmail.com> Co-authored-by: Darrel <darrmi@microsoft.com>
|
This was addressed in #1358 |
Update
ListTasksRequest.last_updated_afterto usegoogle.protobuf.Timestampfor consistency with the rest of the protocol.fixes #1287