Conversation
ddeae5f to
98bbb72
Compare
There was a problem hiding this comment.
Summary of Changes
Hello @ziggie1984, 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 focuses on updating and modernizing the project's Go module dependencies. The primary goal is to ensure compatibility, enhance security, and potentially improve performance by leveraging the latest versions of critical libraries. These updates span core components like the database, RPC framework, and related infrastructure libraries.
Highlights
- Dependency Updates: Updated core Go dependencies including bbolt, grpc, etcd, and k8s libraries to their latest versions.
- Protobuf Regeneration: Upgraded the protoc-gen-go tool, leading to the regeneration of numerous protobuf files across various RPC sub-packages. This primarily involved changes to internal protobuf implementation details and metadata tags.
- Improved Dependency Management: Several direct and indirect dependencies were updated or added, enhancing overall project stability and ensuring compatibility with newer Go versions and upstream changes.
Using Gemini Code Assist
The 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 in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.
| Feature | Command | Description |
|---|---|---|
| Code Review | /gemini review |
Performs a code review for the current pull request in its current state. |
| Pull Request Summary | /gemini summary |
Provides a summary of the current pull request in its current state. |
| Comment | @gemini-code-assist | Responds in comments when explicitly tagged, both in issue comments and review comments. |
| Help | /gemini help |
Displays a list of available commands. |
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 .gemini/ folder in the base of the repository. Detailed instructions can be found here.
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
-
Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution. ↩
There was a problem hiding this comment.
Code Review
This pull request provides a comprehensive update to several key dependencies, including bbolt, grpc, etcd, and various Kubernetes libraries. The changes are primarily within the go.mod and go.sum files, reflecting the version bumps. Additionally, Protobuf-generated files have been updated, which is an expected consequence of the protoc-gen-go toolchain update. The dependency changes are consistent across the main module and the kvdb submodule. This is a solid maintenance update that keeps the project's dependencies current.
ba5b6af to
e7ff198
Compare
|
should we go straight to 1.75 for the grpc package ? Quite new release but I think the source of the lib is super good. |
|
All the itests look good other than the |
|
Did some digging, and these look to be the major updates between v1.59 and v1.73:
So nothign terribly ground breaking. The biggest change causing the diff is that they started to use
|
e7ff198 to
b62be1f
Compare
Version v1.4.3 has some important bugfixes. We bump both version in the same go so we do not need to tag the kvdb package and the latest version of will be used.
b62be1f to
1dda376
Compare
|
just updating the bbolt version now in this PR because it has some important bugfixes. See also: https://github.com/etcd-io/bbolt/blob/main/CHANGELOG/CHANGELOG-1.4.md#v1432025-08-19 |
This PR only updates bbolt, for the main go.mod module and the kvdb module where it is directly used.