-
Notifications
You must be signed in to change notification settings - Fork 151
Bump google.golang.org/api from 0.257.0 to 0.265.0 #1006
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,8 +27,8 @@ require ( | |
| go.uber.org/mock v0.6.0 | ||
| golang.org/x/term v0.39.0 | ||
| golang.org/x/text v0.33.0 | ||
| google.golang.org/api v0.257.0 | ||
| google.golang.org/grpc v1.77.0 | ||
| google.golang.org/api v0.265.0 | ||
| google.golang.org/grpc v1.78.0 | ||
| gopkg.in/yaml.v3 v3.0.1 | ||
| k8s.io/apimachinery v0.34.3 | ||
| ) | ||
|
|
@@ -37,7 +37,7 @@ require ( | |
| al.essio.dev/pkg/shellescape v1.6.0 // indirect | ||
| cel.dev/expr v0.25.1 // indirect | ||
| cloud.google.com/go v0.123.0 // indirect | ||
| cloud.google.com/go/auth v0.18.0 // indirect | ||
| cloud.google.com/go/auth v0.18.1 // indirect | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: cat -n go.mod | head -50Repository: openshift-online/ocm-cli Length of output: 2393 🏁 Script executed: cat -n go.mod | sed -n '95,105p'Repository: openshift-online/ocm-cli Length of output: 743 🏁 Script executed: cat -n go.mod | sed -n '155,165p'Repository: openshift-online/ocm-cli Length of output: 763 🌐 Web query:
💡 Result:
Changelog / release notes (v0.18.1)Bug fixes
Citations:
🌐 Web query:
💡 Result:
Sources: [1], [2] (tag/commit metadata for v0.3.11). [1][2] 🌐 Web query:
💡 Result: That pseudo-version ( What breaks (most common)“Ambiguous import” / duplicate packages during
The What to do
Sources: Verify genproto module split compatibility and run full test suite. The 🤖 Prompt for AI Agents |
||
| cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect | ||
| cloud.google.com/go/compute/metadata v0.9.0 // indirect | ||
| cloud.google.com/go/monitoring v1.24.3 // indirect | ||
|
|
@@ -97,7 +97,7 @@ require ( | |
| github.com/google/pprof v0.0.0-20251206212654-f1b79c6b8239 // indirect | ||
| github.com/google/s2a-go v0.1.9 // indirect | ||
| github.com/google/uuid v1.6.0 // indirect | ||
| github.com/googleapis/enterprise-certificate-proxy v0.3.7 // indirect | ||
| github.com/googleapis/enterprise-certificate-proxy v0.3.11 // indirect | ||
| github.com/gorilla/css v1.0.1 // indirect | ||
| github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect | ||
| github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
|
|
@@ -156,7 +156,7 @@ require ( | |
| golang.org/x/tools v0.41.0 // indirect | ||
| google.golang.org/genproto v0.0.0-20251213004720-97cd9d5aeac2 // indirect | ||
| google.golang.org/genproto/googleapis/api v0.0.0-20251213004720-97cd9d5aeac2 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20251213004720-97cd9d5aeac2 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20260128011058-8636f8732409 // indirect | ||
| google.golang.org/protobuf v1.36.11 // indirect | ||
| gopkg.in/inf.v0 v0.9.1 // indirect | ||
| k8s.io/klog/v2 v2.130.1 // indirect | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
google.golang.org/api v0.265.0 release notes changelog breaking changes💡 Result:
google.golang.org/apiv0.265.0 (released 2026-02-04) changelog items are: (1) “Add checksums for single chunk json uploads” and (2) several “Auto-regenerate discovery clients” entries. (chromium.googlesource.com)Breaking changes: The v0.265.0 section of the project changelog does not include a “⚠ BREAKING CHANGES” heading or any breaking-change entries (i.e., none are called out for this release). (chromium.googlesource.com)
Citations:
🌐 Web query:
google.golang.org/grpc v1.78.0 release notes changelog breaking changes💡 Result:
google.golang.org/grpc(grpc-go) v1.78.0 — release notes / changelog (Dec 23, 2025)Breaking / behavior changes
xds/resolverrouting/config handling changed: [1]grpc-statushandling: client transport now returns status codeUnknownwhengrpc-statusis malformed. [1]New features
grpc.lb.backend_servicelabel to weighted round-robin metrics (gRFC A89). [1]experimental.AcceptCompressorsto restrict what’s advertised viagrpc-accept-encoding. [1]Bug fixes / performance
StringMatcherregex behavior withignore_case=true. [1]OnFinishinvocation fixes for certain stream-creation failures. [1]Source: grpc-go “Release 1.78.0” notes on GitHub. [1]
References:
[1] (github.com)
Citations:
Review google.golang.org/grpc v1.78.0 breaking changes before upgrading.
google.golang.org/api v0.265.0 has no breaking changes and the auto-regenerated discovery clients are compatible. However, google.golang.org/grpc v1.78.0 introduces breaking changes that require code review:
Unknownstatus for malformed headers instead of previous behavior.Review your codebase for usage of these features and update accordingly.
🤖 Prompt for AI Agents