Skip to content

chore(deps): bump the go-minor-patch group in /go with 17 updates#1795

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/go/go-minor-patch-9069932100
Open

chore(deps): bump the go-minor-patch group in /go with 17 updates#1795
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/go/go-minor-patch-9069932100

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 4, 2026

Bumps the go-minor-patch group in /go with 17 updates:

Package From To
github.com/anthropics/anthropic-sdk-go 1.37.0 1.38.0
github.com/aws/aws-sdk-go-v2/config 1.32.16 1.32.17
github.com/jedib0t/go-pretty/v6 6.7.9 6.7.10
github.com/modelcontextprotocol/go-sdk 1.5.0 1.6.0
github.com/openai/openai-go/v3 3.32.0 3.33.0
go.uber.org/zap 1.27.1 1.28.0
google.golang.org/adk 1.1.0 1.2.0
google.golang.org/genai 1.54.0 1.55.0
k8s.io/api 0.35.4 0.36.0
k8s.io/apimachinery 0.35.4 0.36.0
k8s.io/client-go 0.35.4 0.36.0
sigs.k8s.io/agent-sandbox 0.3.10 0.4.3
sigs.k8s.io/controller-runtime 0.23.3 0.24.0
github.com/aws/aws-sdk-go-v2 1.41.6 1.41.7
github.com/aws/aws-sdk-go-v2/service/bedrockruntime 1.50.5 1.50.6
github.com/google/jsonschema-go 0.4.2 0.4.3
github.com/ollama/ollama 0.21.0 0.23.0

Updates github.com/anthropics/anthropic-sdk-go from 1.37.0 to 1.38.0

Release notes

Sourced from github.com/anthropics/anthropic-sdk-go's releases.

v1.38.0

1.38.0 (2026-04-23)

Full Changelog: v1.37.0...v1.38.0

Features

  • add Type() method to API errors for error kind identification (#676) (0db1712)
  • api: CMA Memory public beta (180e00c)
  • structured outputs via Schema any with auto-parse (#759) (46073d8)

Bug Fixes

  • api: fix errors in api spec (e47c178)
  • api: restore missing features (0fc6fac)

Chores

  • internal: more robust bootstrap script (5bde204)
  • tests: bump steady to v0.22.1 (4578c15)
Changelog

Sourced from github.com/anthropics/anthropic-sdk-go's changelog.

1.38.0 (2026-04-23)

Full Changelog: v1.37.0...v1.38.0

Features

  • add Type() method to API errors for error kind identification (#676) (0db1712)
  • api: CMA Memory public beta (180e00c)
  • structured outputs via Schema any with auto-parse (#759) (46073d8)

Bug Fixes

  • api: fix errors in api spec (e47c178)
  • api: restore missing features (0fc6fac)

Chores

  • internal: more robust bootstrap script (5bde204)
  • tests: bump steady to v0.22.1 (4578c15)
Commits
  • 468905d release: 1.38.0
  • 2c6421c fix(api): fix errors in api spec
  • 8dd22d4 fix(api): restore missing features
  • 6b0457f feat(api): CMA Memory public beta
  • b6c5ffb codegen metadata
  • eb42d96 chore(internal): more robust bootstrap script
  • eefb943 feat: structured outputs via Schema any with auto-parse (#759)
  • f5879a2 chore(tests): bump steady to v0.22.1
  • 4bef67d feat: add Type() method to API errors for error kind identification (#676)
  • 0d114df codegen metadata
  • See full diff in compare view

Updates github.com/aws/aws-sdk-go-v2/config from 1.32.16 to 1.32.17

Commits

Updates github.com/jedib0t/go-pretty/v6 from 6.7.9 to 6.7.10

Release notes

Sourced from github.com/jedib0t/go-pretty/v6's releases.

v6.7.10

What's Changed

New Contributors

Full Changelog: jedib0t/go-pretty@v6.7.9...v6.7.10

Commits

Updates github.com/modelcontextprotocol/go-sdk from 1.5.0 to 1.6.0

Release notes

Sourced from github.com/modelcontextprotocol/go-sdk's releases.

v1.6.0-pre.1

In this release we introduce several smaller fixes and improvements, and we started working for release 2026-06-30. The main new feature is the introduction of ClientCredentialsHandler for OAuth client credentials grant.

Add ClientCredentialsHandler for OAuth client credentials grant

Added ClientCredentialsHandler implementing auth.OAuthHandler using the OAuth 2.0 Client Credentials grant (RFC 6749 Section 4.4) for service-to-service authentication with pre-registered credentials.

2026-06-30 Release related PRs

  • feat: add automatic application_type inference by @​guglielmo-san in modelcontextprotocol/go-sdk#904

    New application_type field is added to the ClientRegistrationMetadata for DynamicClientRegistration. If not specified, the application_type will be inferred from the RedirectURIs. This implements SEP-837.

  • feat: HTTP Header Standardization for method and name by @​guglielmo-san in modelcontextprotocol/go-sdk#907

    By mirroring key fields from the JSON-RPC payload into HTTP headers, network intermediaries such as load balancers, proxies, and observability tools can route and process MCP traffic without deep packet inspection, reducing latency and computational overhead. This partially implements SEP-2243.

Behavior Changes

SetError Behavior Change

Previously the SetError method on CallToolResult always overwrote the Content field with the error text. Now SetError preserves the existing value if it has already been populated. You can restore the previous behavior by setting the environment variable seterroroverwrite=1.

Cross-Origin Protection Default Change

Previously (v1.4.1-v1.5.0) default (zero-value) cross-origin protection was applied when CrossOriginProtection in StreamableHTTPOptions was nil. Now cross-origin protection is not enabled by default when CrossOriginProtection is nil. You can restore the previous behavior (enable by default) by setting enableoriginverification=1.

disablecrossoriginprotection was replaced by enableoriginverification after the default was changed to not enable cross-origin protection.

jsonescaping option was removed, according to plan.

Other Changes to the SDK

... (truncated)

Commits
  • f5f2015 MCPGODEBUG update for 1.6.0 (#893)
  • e01639a feat: HTTP Header Standardization for method and name (#907)
  • 93a41b2 internal/jsonrpc2: remove unused code (#910)
  • 446beae mcp: Upgrade jsonschema-go (#912)
  • 2e21834 extauth: add ClientCredentialsHandler for OAuth client credentials grant (#895)
  • 2643b22 feat: add automatic application_type inference (#904)
  • db50910 mcp: do not re-prompt OAuth after cancelled Authorize (#885)
  • 5f2cd8f mcp: preserve transport errors in Write error chain (#888)
  • 0edc597 Update README.md (#896)
  • 41e1f94 mcp: remove default cross origin protection (#906)
  • Additional commits viewable in compare view

Updates github.com/openai/openai-go/v3 from 3.32.0 to 3.33.0

Release notes

Sourced from github.com/openai/openai-go/v3's releases.

v3.33.0

3.33.0 (2026-04-28)

Full Changelog: v3.32.0...v3.33.0

Features

  • go: add default http client with timeout (25dd39a)
  • support setting headers via env (b4eaa78)

Bug Fixes

  • types: change PromptCacheRetention enum in-memory to in_memory (15e7432)

Chores

  • internal: more robust bootstrap script (eb0cbcf)
  • tests: bump steady to v0.22.1 (ef28f59)

Documentation

  • api: add rate limit and vector store guidance to file upload (6c8c7fa)
  • api: update rate limit documentation in file upload method (54fde2c)
Changelog

Sourced from github.com/openai/openai-go/v3's changelog.

3.33.0 (2026-04-28)

Full Changelog: v3.32.0...v3.33.0

Features

  • go: add default http client with timeout (25dd39a)
  • support setting headers via env (b4eaa78)

Bug Fixes

  • types: change PromptCacheRetention enum in-memory to in_memory (15e7432)

Chores

  • internal: more robust bootstrap script (eb0cbcf)
  • tests: bump steady to v0.22.1 (ef28f59)

Documentation

  • api: add rate limit and vector store guidance to file upload (6c8c7fa)
  • api: update rate limit documentation in file upload method (54fde2c)
Commits
  • 914cbaa release: 3.33.0
  • 7e019ff codegen metadata
  • fb7ceef docs(api): update rate limit documentation in file upload method
  • ae9f0cb feat: support setting headers via env
  • c562d71 docs(api): add rate limit and vector store guidance to file upload
  • bebd386 feat(go): add default http client with timeout
  • 6267130 codegen metadata
  • 729dfe6 codegen metadata
  • 766acca fix(types): change PromptCacheRetention enum in-memory to in_memory
  • c903c66 chore(internal): more robust bootstrap script
  • Additional commits viewable in compare view

Updates go.uber.org/zap from 1.27.1 to 1.28.0

Release notes

Sourced from go.uber.org/zap's releases.

v1.28.0

Enhancements:

  • #1534[]: Add zapcore.CheckPreWriteHook and CheckedEntry.Before method for transforming entries before they are written to any Cores.

#1534: uber-go/zap#1534

Changelog

Sourced from go.uber.org/zap's changelog.

1.28.0 (27 Apr 2026)

Enhancements:

  • #1534[]: Add zapcore.CheckPreWriteHook and CheckedEntry.Before method for transforming entries before they are written to any Cores.
Commits
  • 5b81b37 release v1.28.0 (#1547)
  • 0ab0d5a zapcore: Add PreWriteHook for transforming entries before write (#1534)
  • d278c59 [chore] CI: test on Go 1.26 (#1535)
  • 16fb16b chore(dep): replace archived gopkg.in/yaml.v3 with officially maintained go.y...
  • See full diff in compare view

Updates google.golang.org/adk from 1.1.0 to 1.2.0

Release notes

Sourced from google.golang.org/adk's releases.

v1.2.0

What's Changed

Full Changelog: google/adk-go@v1.1.0...v1.2.0

Commits
  • a586408 Agent Engine support (#749)
  • 4093a8a feat: Add merged skill source proxy. (#747)
  • df03967 feat: Add preload frontmatters skill source proxy. (#748)
  • b89683b feat: Add skill Source proxy for preloading skills. (#745)
  • 8c0e0fa fix: add traceCapacity to the api config (#731)
  • 1495051 fix: adk-web sse error format (#734)
  • a68fb11 feat: Implement SkillToolset. (#733)
  • 336105a feat: Allow toolsets implement toolinternal.RequestProcessor. (#730)
  • 2ef1b4f feat: update cloudrun deployment script to include eventarc subrouter (#716)
  • 203a070 Update content processor to exclude toolconfirmation.FunctionCallName (#717)
  • Additional commits viewable in compare view

Updates google.golang.org/genai from 1.54.0 to 1.55.0

Release notes

Sourced from google.golang.org/genai's releases.

v1.55.0

1.55.0 (2026-04-29)

Features

  • Add output_info to BatchJob (9ec7d3b)
  • Add ImageResizeMode for GenerateVideos (8fc27f4)
  • Add InternalApplyConverterToSliceWithRoot to the common utilities. (7aaf1eb)
  • Add Vertex Dataset input and output options for batch jobs (73ee07c)
  • introduce BackendEnterprise and GOOGLE_GENAI_USE_ENTERPRISE env var (1181fe0)
Changelog

Sourced from google.golang.org/genai's changelog.

1.55.0 (2026-04-29)

Features

  • Add output_info to BatchJob (9ec7d3b)
  • Add ImageResizeMode for GenerateVideos (8fc27f4)
  • Add InternalApplyConverterToSliceWithRoot to the common utilities. (7aaf1eb)
  • Add Vertex Dataset input and output options for batch jobs (73ee07c)
  • introduce BackendEnterprise and GOOGLE_GENAI_USE_ENTERPRISE env var (1181fe0)
Commits
  • 91390c0 chore(main): release 1.55.0 (#760)
  • 0502412 chore: internal
  • 2aeb742 chore: Add page number
  • 8fc27f4 feat: Add ImageResizeMode for GenerateVideos
  • 9ec7d3b feat: Add output_info to BatchJob
  • f401a0c docs: update Gemini Enterprise Agent Platform home page url
  • 1181fe0 feat: introduce BackendEnterprise and GOOGLE_GENAI_USE_ENTERPRISE env var
  • 19f5a47 docs: update doc string to replace Vertex AI with `Gemini Enterprise Agent ...
  • 0e6c3a0 docs: replace Vertex AI with Gemini Enterprise Agent Platform
  • 73ee07c feat: Add Vertex Dataset input and output options for batch jobs
  • Additional commits viewable in compare view

Updates k8s.io/api from 0.35.4 to 0.36.0

Commits
  • 545bb97 Update dependencies to v0.36.0 tag
  • 879d396 Merge remote-tracking branch 'origin/master' into release-1.36
  • 030d81f Update github.com/moby/spdystream from v0.5.0 to v0.5.1
  • aef6eb6 Add granular authorization for DRA ResourceClaim status updates
  • 91061ea Merge pull request #136589 from tosi3k/preemption-mode
  • e6b81e2 Add Workload-Aware Preemption fields to Workload and PodGroup APIs
  • f8fce2e Merge pull request #136989 from nojnhuh/podgroup-resourceclaim
  • b928f5e Workload API: PodGroup ResourceClaims (KEP-5729)
  • 61bd78e Merge pull request #137190 from everpeace/KEP-5491-alpha
  • 6bf46eb Merge pull request #137028 from nmn3m/feature/dra-resource-pool-status
  • Additional commits viewable in compare view

Updates k8s.io/apimachinery from 0.35.4 to 0.36.0

Commits
  • debe1eb Update dependencies to v0.36.0 tag
  • efb7f26 Merge remote-tracking branch 'origin/master' into release-1.36
  • d966e56 Update github.com/moby/spdystream from v0.5.0 to v0.5.1
  • 79b3632 Merge pull request #137864 from yongruilin/dv-dra-mismatch
  • a8822f7 Add slice and map union member support with tests
  • 7dba2d0 Use IsZero instead of IsNil for union ratcheting check
  • d95710f Fix union validation ratcheting when oldObj is nil
  • 729062d Merge pull request #137849 from bryantbiggs/deps/update-kube-openapi
  • 13b12e6 dependencies: bump kube-openapi to drop ginkgo/gomega indirect deps
  • 27f4670 Merge pull request #136657 from Jefftree/sharding-test
  • Additional commits viewable in compare view

Updates k8s.io/client-go from 0.35.4 to 0.36.0

Commits
  • 1d95f02 Update dependencies to v0.36.0 tag
  • f22a53e Merge remote-tracking branch 'origin/master' into release-1.36
  • a948641 Update github.com/moby/spdystream from v0.5.0 to v0.5.1
  • 7e44ffc Add Workload-Aware Preemption fields to Workload and PodGroup APIs
  • df2d882 Merge pull request #136989 from nojnhuh/podgroup-resourceclaim
  • 4eece52 Workload API: PodGroup ResourceClaims (KEP-5729)
  • 3d35c51 Merge pull request #137190 from everpeace/KEP-5491-alpha
  • 0434117 Merge pull request #137028 from nmn3m/feature/dra-resource-pool-status
  • ba785be Drop CSR analogy, mark ObjectMeta +required,reduce limits (maxItems=500, maxL...
  • 4a9c878 Add ResourcePoolStatusRequest API types and generated code
  • Additional commits viewable in compare view

Updates sigs.k8s.io/agent-sandbox from 0.3.10 to 0.4.3

Release notes

Sourced from sigs.k8s.io/agent-sandbox's releases.

v0.4.3

🚀 Announcing Agent Sandbox v0.4.3!

We are excited to announce the release of Agent Sandbox v0.4.3!

This release expands documentation significantly, with new guides covering filesystems, volumes, lifecycle, snapshots, metrics, custom environments, and a Python SDK quickstart — plus a reorganized Use Cases section and Go sandbox client docs. It introduces new lifecycle APIs, including a Finished condition on Sandbox and SandboxClaim and a ttlSecondsAfterFinished field for automatic cleanup of finished claims, alongside volumeClaimTemplates support for persistent storage. Warm pool correctness improves with fixes for duplicate Sandbox adoption during informer cache lag, retain-policy deletion, and cross-namespace adoption protection. Observability gains a --version flag, an agent_sandbox_build_info Prometheus metric, and more accurate startup-latency tracking. Finally, the Python SDK adds a new SandboxInClusterConnectionConfig so in-cluster clients can bypass the router — using stable cluster DNS by default, with an opt-in low-latency pod-IP mode.

Key Highlights

  • Documentation Expansion: Comprehensive new docs covering filesystems, volumes, lifecycle/TTL, snapshots, metrics, custom environments, and use cases. Added a Python SDK quickstart, Go sandbox client docs, and a homepage Use Cases grid. The docs/examples/ section has been reorganized under docs/use-cases/.
  • Lifecycle & Cleanup: New Finished condition on Sandbox (mirrored to SandboxClaim) reporting PodSucceeded / PodFailed. New ttlSecondsAfterFinished field on SandboxClaim.spec.lifecycle for automatic cleanup of finished claims, honoring the existing shutdownPolicy (Retain, Delete, DeleteForeground).
  • Storage: Added volumeClaimTemplates support to SandboxTemplate, propagated through SandboxClaim and SandboxWarmPool to the underlying Sandbox. PVC-backed volumes use StatefulSet-style merge semantics with the pod template.
  • Warm Pool Correctness: Fixed duplicate Sandbox adoption during informer cache lag by recording the adopted Sandbox name on the claim via the agents.x-k8s.io/sandbox-name label. Fixed warm-pool sandbox deletion when shutdownPolicy: Retain is set. Added cross-namespace adoption protection.
  • Python SDK Enhancements: New SandboxInClusterConnectionConfig for in-cluster clients to bypass the router — defaults to stable cluster DNS, with an opt-in use_pod_ip=True mode for low-latency direct pod connections (with cache invalidation on errors). Sandbox.status.podIPs is now exposed end-to-end.
  • Observability: Added a --version flag and agent_sandbox_build_info Prometheus metric (with git version, SHA, build date, Go version, platform). Improved ControllerStartupLatency accuracy by keying observed-time entries on both name and UID, so recreated claims with the same name no longer reuse stale timestamps.
  • Stability: SandboxClaim now requeues quietly (instead of erroring) when its template is missing and recovers automatically when the template is created. Sandbox controller now safely handles AlreadyExists on pod creation, refusing to adopt pods owned by other controllers.
  • Testing: Go unit tests now run with -race enabled by default; new make test-e2e-race target. Added a kOps-on-GCP benchmark scenario and a resourcectl CLI for Boskos resource management.

Installation

Core & Extensions

# To install only the core components:
kubectl apply -f https://github.com/kubernetes-sigs/agent-sandbox/releases/download/v0.4.3/manifest.yaml
To install the extensions components:
kubectl apply -f https://github.com/kubernetes-sigs/agent-sandbox/releases/download/v0.4.3/extensions.yaml

Python SDK

pip install k8s-agent-sandbox==0.4.3

Contributors

A huge thank you to all the contributors who made this release possible!

@​angristan, @​noeljackson, @​vgunapati, @​igooch, @​chw120, @​yashasvimisra2798, @​bittermandel, @​Oneimu, @​alimx07, @​aleks-stefanovic, @​justinsb, @​janetkuo, @​dongjiang1989, @​rayowang, @​vicentefb, @​volatilemolotov

👋 New Contributors

@​vgunapati made their first contribution in #489 @​alimx07 made their first contribution in #645 @​bittermandel made their first contribution in #583 @​angristan made their first contribution in #240

... (truncated)

Commits
  • af42928 Docs volumes (#659)
  • 997a10e Fix SandboxClaim stuck in TemplateNotFound status (#609)
  • e0898f9 remove temp content (#708)
  • b2742aa Updating author reference for newer hugo versions (#681)
  • c8c85f5 Prevent duplicate sandbox adoptions during cache lag by using optimistic lock...
  • ee59f75 fix: cross namespace check when verifying sandbox candidate from queue (#700)
  • 73d40a8 Add volumeClaimTemplates support to SandboxTemplate (#240)
  • e960be1 Only run workflow on file changes related to toc-update check (#687)
  • c14ff67 feat: introduce TTL-based cleanups for SandboxClaims (#583)
  • fcd9e26 Fix stale observedTimes entries for ControllerStartupLatency (#546)
  • Additional commits viewable in compare view

Updates sigs.k8s.io/controller-runtime from 0.23.3 to 0.24.0

Release notes

Sourced from sigs.k8s.io/controller-runtime's releases.

v0.24.0

⚠️ Breaking Changes

🐛 Bug Fixes

  • Cache: Fix IndexField blocking until informer is synced (#3445)
  • Cache: Wait for cache sync when ReaderFailOnMissingInformer is true (#3425)
  • Client: Update typed ApplyConfigurations with server response (#3475)
  • Fakeclient: Fix SSA status patch resource version check (#3443)
  • Fakeclient: Fix panic when using CRs with embedded pointer structs (#3431)
  • Fakeclient: Fix status apply if existing object has managedFields set (#3430)
  • Fakeclient: Retry GenerateName on AlreadyExists collisions (#3498)
  • HTTP servers: Wire up base context into http servers (#3452)

🌱 Others

  • Builder/Webhooks: Remove deprecated custom path function (#3465)
  • Cache: Test cache reader waits for cache sync (#3434)
  • Certwatcher: Deflake certwatcher tests (#3457)
  • Dependencies: Use forked version of btree (#3449)
  • Envtest: Ensure envtest stops the whole process group (#3447)
  • Logging: Add missing space in zap-log-level flag description (#3492)
  • Misc: Adopt new(x) over ptr.To(x) and re-enable newexpr lint (#3489)
  • Owners: Cleanup (#3453)
  • Recorder: Add logger into context for structured logging (#3454)
  • Recorder: Switch to StartLogging for event debug logs (#3451)
  • Scheme: Deprecate the scheme builder (#3461)
  • Source/Kind: Improve logging for dynamic type kind source (#3494)
  • Webhooks: Reduce memory usage of default webhooks (#3463 #3468)

🌱 CI & linters

  • Chore: Update golangci-lint version to v2.8.0 (#3448)
  • Chore: Update golangci-lint version to v2.10.1 (#3470)
  • Chore: Update golangci-lint version to v2.11.3 (#3482)
  • Migrate away from custom GitHub action approval workflow (#3491)
  • Release: Auto-create git tags for the tools/setup-envtest submodule (#3476)

📖 Additionally, there has been 1 contribution to our documentation. (#3477)

Dependencies

Added

  • github.com/cenkalti/backoff/v5: v5.0.3
  • gonum.org/v1/gonum: v0.16.0
  • k8s.io/streaming: v0.36.0

Changed

... (truncated)

Commits
  • d3eaef3 Merge pull request #3475 from alvaroaleman/fixfix
  • 3296f32 🐛 Update typed Applyconfigurations with server response
  • c8b4b9d Merge pull request #3506 from troy0820/troy0820/update-deps-k8s
  • 557c314 update to k8s.io v1.36.0
  • e4a998c Merge pull request #3499 from kubernetes-sigs/dependabot/github_actions/all-g...
  • 1a31c56 Merge pull request #3498 from vieux/fix-fake-client-generatename-retry
  • 80bc294 fakeclient: retry GenerateName on AlreadyExists collisions (match K8s 1.32 be...
  • 77b730a 🌱 Bump the all-github-actions group with 2 updates
  • 6210f84 Merge pull request #3494 from erikgb/improve-kind-source-logging
  • 6f89e1d Improve logging for dynamic type kind source
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2 from 1.41.6 to 1.41.7

Commits

Bumps the go-minor-patch group in /go with 17 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/anthropics/anthropic-sdk-go](https://github.com/anthropics/anthropic-sdk-go) | `1.37.0` | `1.38.0` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.32.16` | `1.32.17` |
| [github.com/jedib0t/go-pretty/v6](https://github.com/jedib0t/go-pretty) | `6.7.9` | `6.7.10` |
| [github.com/modelcontextprotocol/go-sdk](https://github.com/modelcontextprotocol/go-sdk) | `1.5.0` | `1.6.0` |
| [github.com/openai/openai-go/v3](https://github.com/openai/openai-go) | `3.32.0` | `3.33.0` |
| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.27.1` | `1.28.0` |
| [google.golang.org/adk](https://github.com/google/adk-go) | `1.1.0` | `1.2.0` |
| [google.golang.org/genai](https://github.com/googleapis/go-genai) | `1.54.0` | `1.55.0` |
| [k8s.io/api](https://github.com/kubernetes/api) | `0.35.4` | `0.36.0` |
| [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.35.4` | `0.36.0` |
| [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.35.4` | `0.36.0` |
| [sigs.k8s.io/agent-sandbox](https://github.com/kubernetes-sigs/agent-sandbox) | `0.3.10` | `0.4.3` |
| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.23.3` | `0.24.0` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.41.6` | `1.41.7` |
| [github.com/aws/aws-sdk-go-v2/service/bedrockruntime](https://github.com/aws/aws-sdk-go-v2) | `1.50.5` | `1.50.6` |
| [github.com/google/jsonschema-go](https://github.com/google/jsonschema-go) | `0.4.2` | `0.4.3` |
| [github.com/ollama/ollama](https://github.com/ollama/ollama) | `0.21.0` | `0.23.0` |


Updates `github.com/anthropics/anthropic-sdk-go` from 1.37.0 to 1.38.0
- [Release notes](https://github.com/anthropics/anthropic-sdk-go/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-go/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-go@v1.37.0...v1.38.0)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.32.16 to 1.32.17
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@config/v1.32.16...config/v1.32.17)

Updates `github.com/jedib0t/go-pretty/v6` from 6.7.9 to 6.7.10
- [Release notes](https://github.com/jedib0t/go-pretty/releases)
- [Commits](jedib0t/go-pretty@v6.7.9...v6.7.10)

Updates `github.com/modelcontextprotocol/go-sdk` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/modelcontextprotocol/go-sdk/releases)
- [Commits](modelcontextprotocol/go-sdk@v1.5.0...v1.6.0)

Updates `github.com/openai/openai-go/v3` from 3.32.0 to 3.33.0
- [Release notes](https://github.com/openai/openai-go/releases)
- [Changelog](https://github.com/openai/openai-go/blob/main/CHANGELOG.md)
- [Commits](openai/openai-go@v3.32.0...v3.33.0)

Updates `go.uber.org/zap` from 1.27.1 to 1.28.0
- [Release notes](https://github.com/uber-go/zap/releases)
- [Changelog](https://github.com/uber-go/zap/blob/master/CHANGELOG.md)
- [Commits](uber-go/zap@v1.27.1...v1.28.0)

Updates `google.golang.org/adk` from 1.1.0 to 1.2.0
- [Release notes](https://github.com/google/adk-go/releases)
- [Commits](google/adk-go@v1.1.0...v1.2.0)

Updates `google.golang.org/genai` from 1.54.0 to 1.55.0
- [Release notes](https://github.com/googleapis/go-genai/releases)
- [Changelog](https://github.com/googleapis/go-genai/blob/main/CHANGELOG.md)
- [Commits](googleapis/go-genai@v1.54.0...v1.55.0)

Updates `k8s.io/api` from 0.35.4 to 0.36.0
- [Commits](kubernetes/api@v0.35.4...v0.36.0)

Updates `k8s.io/apimachinery` from 0.35.4 to 0.36.0
- [Commits](kubernetes/apimachinery@v0.35.4...v0.36.0)

Updates `k8s.io/client-go` from 0.35.4 to 0.36.0
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.35.4...v0.36.0)

Updates `sigs.k8s.io/agent-sandbox` from 0.3.10 to 0.4.3
- [Release notes](https://github.com/kubernetes-sigs/agent-sandbox/releases)
- [Changelog](https://github.com/kubernetes-sigs/agent-sandbox/blob/main/RELEASE.md)
- [Commits](kubernetes-sigs/agent-sandbox@v0.3.10...v0.4.3)

Updates `sigs.k8s.io/controller-runtime` from 0.23.3 to 0.24.0
- [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases)
- [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md)
- [Commits](kubernetes-sigs/controller-runtime@v0.23.3...v0.24.0)

Updates `github.com/aws/aws-sdk-go-v2` from 1.41.6 to 1.41.7
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.41.6...v1.41.7)

Updates `github.com/aws/aws-sdk-go-v2/service/bedrockruntime` from 1.50.5 to 1.50.6
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/ssm/v1.50.5...service/ecr/v1.50.6)

Updates `github.com/google/jsonschema-go` from 0.4.2 to 0.4.3
- [Release notes](https://github.com/google/jsonschema-go/releases)
- [Commits](google/jsonschema-go@v0.4.2...0.4.3)

Updates `github.com/ollama/ollama` from 0.21.0 to 0.23.0
- [Release notes](https://github.com/ollama/ollama/releases)
- [Commits](ollama/ollama@v0.21.0...v0.23.0)

---
updated-dependencies:
- dependency-name: github.com/anthropics/anthropic-sdk-go
  dependency-version: 1.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-version: 1.32.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-minor-patch
- dependency-name: github.com/jedib0t/go-pretty/v6
  dependency-version: 6.7.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-minor-patch
- dependency-name: github.com/modelcontextprotocol/go-sdk
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: github.com/openai/openai-go/v3
  dependency-version: 3.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: go.uber.org/zap
  dependency-version: 1.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: google.golang.org/adk
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: google.golang.org/genai
  dependency-version: 1.55.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: k8s.io/api
  dependency-version: 0.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: k8s.io/apimachinery
  dependency-version: 0.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: k8s.io/client-go
  dependency-version: 0.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: sigs.k8s.io/agent-sandbox
  dependency-version: 0.4.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: sigs.k8s.io/controller-runtime
  dependency-version: 0.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-version: 1.41.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-minor-patch
- dependency-name: github.com/aws/aws-sdk-go-v2/service/bedrockruntime
  dependency-version: 1.50.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-minor-patch
- dependency-name: github.com/google/jsonschema-go
  dependency-version: 0.4.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-minor-patch
- dependency-name: github.com/ollama/ollama
  dependency-version: 0.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 4, 2026

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Copilot AI review requested due to automatic review settings May 4, 2026 08:28
@dependabot dependabot Bot requested review from EItanya, ilackarms and yuval-k as code owners May 4, 2026 08:28
@dependabot dependabot Bot review requested due to automatic review settings May 4, 2026 08:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants