Skip to content

chore(deps): update googleapis digest to e50da27#16015

Open
renovate-bot wants to merge 1 commit intogoogleapis:mainfrom
renovate-bot:renovate/googleapis-digest
Open

chore(deps): update googleapis digest to e50da27#16015
renovate-bot wants to merge 1 commit intogoogleapis:mainfrom
renovate-bot:renovate/googleapis-digest

Conversation

@renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Mar 2, 2026

This PR contains the following updates:

Package Type Update Change
googleapis http_archive digest edfe798e50da27

Configuration

📅 Schedule: Branch creation - Monday through Friday ( * * * * 1-5 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate-bot renovate-bot requested a review from a team as a code owner March 2, 2026 19:20
@dpebot
Copy link
Collaborator

dpebot commented Mar 2, 2026

/gcbrun

@gemini-code-assist
Copy link

Summary of Changes

Hello, 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 performs a routine update of the googleapis dependency, ensuring the project utilizes the latest version of the Google APIs client library. This update involves changing the digest, URL, and associated checksum and prefix in the Bazel workspace configuration.

Highlights

  • Dependency Update: The googleapis dependency has been updated to digest c83d354 from edfe798.
  • Checksum and Prefix Update: The sha256 checksum and strip_prefix for the googleapis archive in bazel/workspace0.bzl were updated to reflect the new digest.
Changelog
  • bazel/workspace0.bzl
    • Updated the urls attribute for the googleapis http_archive to point to the new digest c83d354f79b02e3dc98f22248e22851fcf9b961d.
    • Updated the sha256 checksum to 0be31168e2f38d0e076c518286256522406e622f25d3457125fa168facc34ed5.
    • Updated the strip_prefix to googleapis-c83d354f79b02e3dc98f22248e22851fcf9b961d.
Activity
  • The pull request was automatically generated by Mend Renovate.
  • Automerge is disabled, requiring manual merging by a human.
  • A rebase/retry option is available for handling conflicts.
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

@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 updates the googleapis dependency to a newer commit. The change itself is a standard dependency bump. My review includes one suggestion to improve the maintainability of the dependency definition in bazel/workspace0.bzl by refactoring the duplicated commit SHA into a variable. This would make future manual updates safer and easier, reducing the risk of build breakages.

Comment on lines +139 to +142
"https://github.com/googleapis/googleapis/archive/c83d354f79b02e3dc98f22248e22851fcf9b961d.tar.gz",
],
sha256 = "daf93e1331c16fab7606828bcdc92aa72160718de0819eb628fae9922ccaadfc",
strip_prefix = "googleapis-edfe7983b9d99d6244b4d7636d25fa6e752a2041",
sha256 = "0be31168e2f38d0e076c518286256522406e622f25d3457125fa168facc34ed5",
strip_prefix = "googleapis-c83d354f79b02e3dc98f22248e22851fcf9b961d",

Choose a reason for hiding this comment

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

medium

The googleapis commit SHA is duplicated in the urls and strip_prefix attributes. This makes manual updates error-prone. To improve maintainability and align with the Don't Repeat Yourself (DRY) principle, consider defining this SHA as a variable and reusing it in both places.

For example, you could define a variable within the gl_cpp_workspace0 function scope:

_GOOGLEAPIS_COMMIT = "c83d354f79b02e3dc98f22248e22851fcf9b961d"

And then use it in the http_archive definition:

        urls = [
            "https://github.com/googleapis/googleapis/archive/" + _GOOGLEAPIS_COMMIT + ".tar.gz",
        ],
        # ...
        strip_prefix = "googleapis-" + _GOOGLEAPIS_COMMIT,

This would make future updates, especially manual ones, less susceptible to copy-paste errors.

@codecov
Copy link

codecov bot commented Mar 2, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 92.63%. Comparing base (ced8a7c) to head (293f741).

Additional details and impacted files
@@           Coverage Diff           @@
##             main   #16015   +/-   ##
=======================================
  Coverage   92.63%   92.63%           
=======================================
  Files        2333     2333           
  Lines      214631   214631           
=======================================
+ Hits       198827   198831    +4     
+ Misses      15804    15800    -4     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@renovate-bot renovate-bot changed the title chore(deps): update googleapis digest to c83d354 chore(deps): update googleapis digest to 1ccd68a Mar 2, 2026
@renovate-bot renovate-bot force-pushed the renovate/googleapis-digest branch from f3249e7 to e91daae Compare March 2, 2026 20:54
@dpebot
Copy link
Collaborator

dpebot commented Mar 2, 2026

/gcbrun

@renovate-bot renovate-bot changed the title chore(deps): update googleapis digest to 1ccd68a chore(deps): update googleapis digest to eb5a4e3 Mar 2, 2026
@renovate-bot renovate-bot force-pushed the renovate/googleapis-digest branch from e91daae to bab5a40 Compare March 2, 2026 21:34
@dpebot
Copy link
Collaborator

dpebot commented Mar 2, 2026

/gcbrun

@renovate-bot renovate-bot changed the title chore(deps): update googleapis digest to eb5a4e3 chore(deps): update googleapis digest to 6749014 Mar 2, 2026
@renovate-bot renovate-bot force-pushed the renovate/googleapis-digest branch from bab5a40 to c27b6a4 Compare March 2, 2026 23:27
@dpebot
Copy link
Collaborator

dpebot commented Mar 2, 2026

/gcbrun

@renovate-bot renovate-bot changed the title chore(deps): update googleapis digest to 6749014 chore(deps): update googleapis digest to c906519 Mar 3, 2026
@renovate-bot renovate-bot force-pushed the renovate/googleapis-digest branch from c27b6a4 to 555026e Compare March 3, 2026 00:33
@dpebot
Copy link
Collaborator

dpebot commented Mar 3, 2026

/gcbrun

@renovate-bot renovate-bot changed the title chore(deps): update googleapis digest to c906519 chore(deps): update googleapis digest to e50da27 Mar 3, 2026
@renovate-bot renovate-bot force-pushed the renovate/googleapis-digest branch from 555026e to 293f741 Compare March 3, 2026 05:09
@dpebot
Copy link
Collaborator

dpebot commented Mar 3, 2026

/gcbrun

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.

2 participants