Skip to content

Commit 0001516

Browse files
authored
Merge pull request #1582 from dgageot/bump-dependencies-6
Bump dependencies
2 parents e7e750d + a25ece1 commit 0001516

File tree

4 files changed

+85
-78
lines changed

4 files changed

+85
-78
lines changed

e2e/cagent_a2a_test.go

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ func TestA2AServer_Invoke(t *testing.T) {
6565
"method": "message/send",
6666
"params": map[string]any{
6767
"message": map[string]any{
68-
"role": "user",
68+
"messageId": "msg-1",
69+
"role": "user",
6970
"parts": []map[string]any{
7071
{
7172
"kind": "text",
@@ -128,7 +129,8 @@ func TestA2AServer_MultipleRequests(t *testing.T) {
128129
"method": "message/send",
129130
"params": map[string]any{
130131
"message": map[string]any{
131-
"role": "user",
132+
"messageId": fmt.Sprintf("msg-%d", i),
133+
"role": "user",
132134
"parts": []map[string]any{
133135
{
134136
"kind": "text",
@@ -179,7 +181,8 @@ func TestA2AServer_MultiAgent(t *testing.T) {
179181
"method": "message/send",
180182
"params": map[string]any{
181183
"message": map[string]any{
182-
"role": "user",
184+
"messageId": "msg-multi-1",
185+
"role": "user",
183186
"parts": []map[string]any{
184187
{
185188
"kind": "text",

go.mod

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,31 @@ require (
1111
connectrpc.com/connect v1.19.1
1212
github.com/JohannesKaufmann/html-to-markdown/v2 v2.5.0
1313
github.com/Microsoft/go-winio v0.6.2
14-
github.com/a2aproject/a2a-go v0.3.4
15-
github.com/alecthomas/chroma/v2 v2.23.0
14+
github.com/a2aproject/a2a-go v0.3.6
15+
github.com/alecthomas/chroma/v2 v2.23.1
1616
github.com/alpkeskin/gotoon v0.1.1
17-
github.com/anthropics/anthropic-sdk-go v1.19.0
17+
github.com/anthropics/anthropic-sdk-go v1.20.0
1818
github.com/atotto/clipboard v0.1.4
1919
github.com/aws/aws-sdk-go-v2 v1.41.1
2020
github.com/aws/aws-sdk-go-v2/config v1.32.7
2121
github.com/aws/aws-sdk-go-v2/credentials v1.19.7
22-
github.com/aws/aws-sdk-go-v2/service/bedrockruntime v1.47.2
22+
github.com/aws/aws-sdk-go-v2/service/bedrockruntime v1.48.0
2323
github.com/aws/aws-sdk-go-v2/service/sts v1.41.6
2424
github.com/aymanbagabas/go-udiff v0.3.1
2525
github.com/blevesearch/bleve/v2 v2.5.7
26-
github.com/bmatcuk/doublestar/v4 v4.9.2
26+
github.com/bmatcuk/doublestar/v4 v4.10.0
2727
github.com/charmbracelet/glamour/v2 v2.0.0-20251106195642-800eb8175930
28-
github.com/charmbracelet/x/ansi v0.11.4
29-
github.com/clipperhouse/displaywidth v0.7.0
30-
github.com/clipperhouse/uax29/v2 v2.3.1
28+
github.com/charmbracelet/x/ansi v0.11.5
29+
github.com/clipperhouse/displaywidth v0.9.0
30+
github.com/clipperhouse/uax29/v2 v2.5.0
3131
github.com/coder/acp-go-sdk v0.6.3
3232
github.com/docker/go-units v0.5.0
3333
github.com/dop251/goja v0.0.0-20260106131823-651366fbe6e3
3434
github.com/fatih/color v1.18.0
3535
github.com/fsnotify/fsnotify v1.9.0
3636
github.com/go-git/go-git/v5 v5.16.4
3737
github.com/goccy/go-yaml v1.19.2
38-
github.com/golang-jwt/jwt/v5 v5.3.0
38+
github.com/golang-jwt/jwt/v5 v5.3.1
3939
github.com/google/go-containerregistry v0.20.7
4040
github.com/google/jsonschema-go v0.4.2
4141
github.com/google/uuid v1.6.0
@@ -47,7 +47,7 @@ require (
4747
github.com/mattn/go-runewidth v0.0.19
4848
github.com/modelcontextprotocol/go-sdk v1.2.1-0.20260115164613-13488f7da1ed
4949
github.com/natefinch/atomic v1.0.1
50-
github.com/openai/openai-go/v3 v3.16.0
50+
github.com/openai/openai-go/v3 v3.17.0
5151
github.com/rivo/uniseg v0.4.7
5252
github.com/smacker/go-tree-sitter v0.0.0-20240827094217-dd81d9e9be82
5353
github.com/spf13/cobra v1.10.2
@@ -56,21 +56,21 @@ require (
5656
github.com/wk8/go-ordered-map/v2 v2.1.9-0.20250401010720-46d686821e33
5757
github.com/xeipuuv/gojsonschema v1.2.0
5858
github.com/yuin/goldmark v1.7.16
59-
go.opentelemetry.io/otel v1.39.0
60-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.39.0
61-
go.opentelemetry.io/otel/sdk v1.39.0
62-
go.opentelemetry.io/otel/trace v1.39.0
59+
go.opentelemetry.io/otel v1.40.0
60+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.40.0
61+
go.opentelemetry.io/otel/sdk v1.40.0
62+
go.opentelemetry.io/otel/trace v1.40.0
6363
golang.org/x/net v0.49.0
6464
golang.org/x/oauth2 v0.34.0
6565
golang.org/x/sync v0.19.0
6666
golang.org/x/sys v0.40.0
6767
golang.org/x/term v0.39.0
68-
google.golang.org/adk v0.3.0
69-
google.golang.org/genai v1.42.0
68+
google.golang.org/adk v0.4.0
69+
google.golang.org/genai v1.44.0
7070
google.golang.org/protobuf v1.36.11
7171
gopkg.in/dnaeon/go-vcr.v4 v4.0.6
7272
gotest.tools/v3 v3.5.2
73-
modernc.org/sqlite v1.44.1
73+
modernc.org/sqlite v1.44.3
7474
)
7575

7676
require (
@@ -147,7 +147,7 @@ require (
147147
github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect
148148
github.com/googleapis/gax-go/v2 v2.15.0 // indirect
149149
github.com/gorilla/css v1.0.1 // indirect
150-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3 // indirect
150+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.7 // indirect
151151
github.com/inconshreveable/mousetrap v1.1.0 // indirect
152152
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
153153
github.com/json-iterator/go v0.0.0-20171115153421-f7279a603ede // indirect
@@ -188,17 +188,17 @@ require (
188188
go.etcd.io/bbolt v1.4.0 // indirect
189189
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
190190
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0 // indirect
191-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.39.0 // indirect
192-
go.opentelemetry.io/otel/metric v1.39.0 // indirect
191+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.40.0 // indirect
192+
go.opentelemetry.io/otel/metric v1.40.0 // indirect
193193
go.opentelemetry.io/proto/otlp v1.9.0 // indirect
194194
go.yaml.in/yaml/v4 v4.0.0-rc.3 // indirect
195195
golang.org/x/crypto v0.47.0 // indirect
196196
golang.org/x/exp v0.0.0-20251023183803-a4bb9ffd2546 // indirect
197197
golang.org/x/text v0.33.0 // indirect
198198
golang.org/x/time v0.14.0 // indirect
199-
google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 // indirect
200-
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect
201-
google.golang.org/grpc v1.77.0 // indirect
199+
google.golang.org/genproto/googleapis/api v0.0.0-20260128011058-8636f8732409 // indirect
200+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260128011058-8636f8732409 // indirect
201+
google.golang.org/grpc v1.78.0 // indirect
202202
gopkg.in/warnings.v0 v0.1.2 // indirect
203203
gopkg.in/yaml.v3 v3.0.1 // indirect
204204
modernc.org/libc v1.67.6 // indirect

0 commit comments

Comments
 (0)