Skip to content

Deps: bump to latest version#141

Open
prskr wants to merge 1 commit into
mainfrom
support-ssh-key-identities
Open

Deps: bump to latest version#141
prskr wants to merge 1 commit into
mainfrom
support-ssh-key-identities

Conversation

@prskr

@prskr prskr commented Jun 11, 2026

Copy link
Copy Markdown
Owner

Summary by CodeRabbit

  • Chores
    • Updated project dependencies to their latest versions.

@coderabbitai

coderabbitai Bot commented Jun 11, 2026

Copy link
Copy Markdown

Review Change Stack

Warning

Review limit reached

@prskr, we couldn't start this review because you've reached your PR review rate limit.

More reviews will be available in 50 minutes and 45 seconds. Learn how PR review limits work.

Your organization has run out of usage credits. Purchase more credits in the billing tab to continue.

⌛ How to resolve this issue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available.

Please see our Fair Usage Limits Policy for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro

Run ID: 481da98f-826e-4192-aab9-173dcb7303e2

📥 Commits

Reviewing files that changed from the base of the PR and between e64f61c and 7f735eb.

⛔ Files ignored due to path filters (1)
  • go.sum is excluded by !**/*.sum
📒 Files selected for processing (1)
  • go.mod

Walkthrough

This PR updates Go module dependencies in go.mod. Direct dependencies including connectrpc.com/connect, buf.build generated modules, and go-git packages are bumped. Indirect transitive dependencies, primarily the golang.org/x/* suite, are also upgraded. No functional code changes are present.

Changes

Dependency Updates

Layer / File(s) Summary
Direct dependencies upgrade
go.mod
connectrpc.com/connect (v1.19.1 → v1.20.0), buf.build/gen/go/git-age/agent and buf.build/gen/go/grpc/grpc connectrpc modules (v1.19.1 → v1.20.0), github.com/Masterminds/semver/v3 (v3.4.0 → v3.5.0), and github.com/go-git packages (go-billy v5.8.0 → v5.9.0, go-git v5.17.2 → v5.19.1).
Transitive dependencies upgrade
go.mod
Indirect dependencies updated: golang.org/x/crypto (v0.50.0 → v0.53.0), golang.org/x/mod (v0.35.0 → v0.36.0), golang.org/x/net (v0.53.0 → v0.56.0), golang.org/x/sync (v0.20.0 → v0.21.0), golang.org/x/sys (v0.43.0 → v0.46.0), golang.org/x/telemetry, golang.org/x/term (v0.42.0 → v0.44.0), golang.org/x/text (v0.36.0 → v0.38.0), golang.org/x/tools (v0.44.0 → v0.45.0), and github.com/pjbgf/sha1cd (v0.5.0 → v0.6.0).

🎯 1 (Trivial) | ⏱️ ~5 minutes

🐰 Hopping through the versions so fine,
Dependencies climb with each new line,
Connectrpc connects, and golang grows tall,
Go-git bounds forward—we update them all! 🚀

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
Title check ❓ Inconclusive The title 'Deps: bump to latest version' is vague and generic. While it references dependency updates (which are present), it lacks specificity about which dependencies were updated or why. Consider a more descriptive title like 'Deps: update Go dependencies including connectrpc, git, and stdlib packages' to provide clearer context.
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch support-ssh-key-identities

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@prskr prskr force-pushed the support-ssh-key-identities branch from e64f61c to 790bf34 Compare June 11, 2026 17:31

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
go.mod (1)

24-24: ⚠️ Potential issue | 🟠 Major

Fix golang.org/x/crypto version inconsistency in go.mod

go.mod lists golang.org/x/crypto v0.53.0 // indirect (line 60) but the replace directive pins golang.org/x/crypto to v0.50.0 (line 24), so the build will use v0.50.0 regardless of the indirect requirement.

Remove the replace (and run go mod tidy) if it’s no longer needed, or document why v0.50.0 must be pinned and tidy so the require entry matches.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@go.mod` at line 24, The go.mod currently has a conflicting replace for
golang.org/x/crypto (replace golang.org/x/crypto => golang.org/x/crypto v0.50.0)
while the require lists v0.53.0; either remove the replace directive or update
it to match the intended required version and then run `go mod tidy` so the
require/replace entries are consistent; update or remove the replace line
referencing golang.org/x/crypto and run tidy to regenerate the indirect entry
accordingly and commit the updated go.mod and go.sum.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Outside diff comments:
In `@go.mod`:
- Line 24: The go.mod currently has a conflicting replace for
golang.org/x/crypto (replace golang.org/x/crypto => golang.org/x/crypto v0.50.0)
while the require lists v0.53.0; either remove the replace directive or update
it to match the intended required version and then run `go mod tidy` so the
require/replace entries are consistent; update or remove the replace line
referencing golang.org/x/crypto and run tidy to regenerate the indirect entry
accordingly and commit the updated go.mod and go.sum.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro

Run ID: c4a07e45-a3c7-41cb-a14e-b5d14e957371

📥 Commits

Reviewing files that changed from the base of the PR and between 164137d and e64f61c.

⛔ Files ignored due to path filters (1)
  • go.sum is excluded by !**/*.sum
📒 Files selected for processing (1)
  • go.mod

@prskr prskr force-pushed the support-ssh-key-identities branch from 790bf34 to 7f735eb Compare June 11, 2026 17:37
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.

1 participant