Skip to content

Change tag from 0.5.0 to 0.6.0#160

Merged
Syspretor merged 2 commits intosgl-project:mainfrom
cheyang:update_cli_image
Feb 18, 2026
Merged

Change tag from 0.5.0 to 0.6.0#160
Syspretor merged 2 commits intosgl-project:mainfrom
cheyang:update_cli_image

Conversation

@cheyang
Copy link
Copy Markdown
Collaborator

@cheyang cheyang commented Feb 18, 2026

Ⅰ. Motivation

Ⅱ. Modifications

Ⅲ. Does this pull request fix one issue?

fixes #XXXX

Ⅳ. List the added test cases (unit test/integration test) if any, please explain if no tests are needed.

Ⅴ. Describe how to verify it

VI. Special notes for reviews

Checklist

  • Format your code make fmt.
  • Add unit tests or integration tests.
  • Update the documentation related to the change.

@gemini-code-assist
Copy link
Copy Markdown

Summary of Changes

Hello @cheyang, 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 prepares the project for its 0.6.0 release by updating core version identifiers and associated image tags. The changes ensure that the build system and benchmark dashboard configurations reflect the new release version, transitioning from a nightly tag for the dashboard image to a specific 0.6.0 tag.

Highlights

  • Version Update: The project's main version in the Makefile has been incremented from v0.5.0 to v0.6.0.
  • Benchmark Dashboard Image Tag: The default image tag for the benchmark dashboard has been updated from nightly to 0.6.0 in both the Go command implementation and its corresponding documentation.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • Makefile
    • Updated the VERSION variable from v0.5.0 to v0.6.0.
  • cmd/cli/cmd/llm/benchmark/dashboard_cmd.go
    • Changed the defaultDashboardImage constant from rolebasedgroup/rbgs-benchmark-dashboard:nightly to rolebasedgroup/rbgs-benchmark-dashboard:0.6.0.
  • doc/features/kubectl-rbg-benchmark.md
    • Updated the --image flag's default value in the documentation to rolebasedgroup/rbgs-benchmark-dashboard:0.6.0.
Activity
  • No activity has occurred on this pull request yet.
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 by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

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 pull request 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

  1. 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.

Copy link
Copy Markdown

@gemini-code-assist gemini-code-assist Bot left a 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 prepares for the 0.6.0 release by updating the version in the Makefile and setting the default benchmark dashboard image tag to 0.6.0. The changes are straightforward, but I've noticed an inconsistency in the versioning format. The new image tag 0.6.0 is missing the 'v' prefix, while the version in the Makefile is v0.6.0 and other images in the project also use the 'v' prefix. I've suggested corrections to maintain consistency.


const (
defaultDashboardImage = "rolebasedgroup/rbgs-benchmark-dashboard:nightly"
defaultDashboardImage = "rolebasedgroup/rbgs-benchmark-dashboard:0.6.0"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The image tag seems to be missing the 'v' prefix. The version in the Makefile is v0.6.0, and other default images in the project (e.g., defaultBenchmarkImage in benchmark.go) also use the 'v' prefix. For consistency, this should probably be v0.6.0.

Suggested change
defaultDashboardImage = "rolebasedgroup/rbgs-benchmark-dashboard:0.6.0"
defaultDashboardImage = "rolebasedgroup/rbgs-benchmark-dashboard:v0.6.0"

Comment thread doc/features/kubectl-rbg-benchmark.md Outdated
| `--port` | `18888` | Local port for port-forward |
| `--open-browser` | `true` | Automatically open browser |
| `--image` | `rolebasedgroup/rbgs-benchmark-dashboard:nightly` | Container image for benchmark server |
| `--image` | `rolebasedgroup/rbgs-benchmark-dashboard:0.6.0` | Container image for benchmark server |
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The image tag in the documentation seems to be missing the 'v' prefix. To be consistent with the versioning scheme used elsewhere in the project (e.g., v0.6.0 in the Makefile), this should be updated to v0.6.0.

Suggested change
| `--image` | `rolebasedgroup/rbgs-benchmark-dashboard:0.6.0` | Container image for benchmark server |
| `--image` | `rolebasedgroup/rbgs-benchmark-dashboard:v0.6.0` | Container image for benchmark server |

@coveralls
Copy link
Copy Markdown

coveralls commented Feb 18, 2026

Pull Request Test Coverage Report for Build 22124509043

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 34.951%

Totals Coverage Status
Change from base Build 22113619292: 0.0%
Covered Lines: 4934
Relevant Lines: 14117

💛 - Coveralls

@cheyang cheyang changed the title Prepare for 0.6.0 release Change tag from 0.5.0 to 0.6.0 Feb 18, 2026
Copy link
Copy Markdown
Collaborator

@Syspretor Syspretor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm
/approve

@Syspretor Syspretor merged commit 16081c7 into sgl-project:main Feb 18, 2026
7 of 8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants