Skip to content

Commit 3b64102

Browse files
authored
bump dagger to v0.18.11 (#140)
Signed-off-by: Andrea Luzzardi <[email protected]>
1 parent 002eb45 commit 3b64102

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24.3
55
toolchain go1.24.4
66

77
require (
8-
dagger.io/dagger v0.18.10
8+
dagger.io/dagger v0.18.11
99
github.com/dustin/go-humanize v1.0.1
1010
github.com/dustinkirkland/golang-petname v0.0.0-20240428194347-eebcea082ee0
1111
github.com/mark3labs/mcp-go v0.29.0
@@ -16,15 +16,15 @@ require (
1616
)
1717

1818
require (
19-
github.com/99designs/gqlgen v0.17.74 // indirect
19+
github.com/99designs/gqlgen v0.17.75 // indirect
2020
github.com/Khan/genqlient v0.8.1 // indirect
2121
github.com/adrg/xdg v0.5.3 // indirect
2222
github.com/cenkalti/backoff/v5 v5.0.2 // indirect
2323
github.com/davecgh/go-spew v1.1.1 // indirect
2424
github.com/go-logr/logr v1.4.3 // indirect
2525
github.com/go-logr/stdr v1.2.2 // indirect
2626
github.com/google/uuid v1.6.0 // indirect
27-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
27+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.1 // indirect
2828
github.com/inconshreveable/mousetrap v1.1.0 // indirect
2929
github.com/pkg/term v1.1.0 // indirect
3030
github.com/pmezard/go-difflib v1.0.0 // indirect
@@ -33,7 +33,7 @@ require (
3333
github.com/sosodev/duration v1.3.1 // indirect
3434
github.com/spf13/cast v1.7.1 // indirect
3535
github.com/spf13/pflag v1.0.6 // indirect
36-
github.com/vektah/gqlparser/v2 v2.5.27 // indirect
36+
github.com/vektah/gqlparser/v2 v2.5.28 // indirect
3737
github.com/yosida95/uritemplate/v3 v3.0.2 // indirect
3838
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
3939
go.opentelemetry.io/otel v1.36.0 // indirect

go.sum

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
dagger.io/dagger v0.18.10 h1:Ibyz5LqxjjEHfLMlaU9PJ3xt3ju7p29RWy0lVfvSNU0=
2-
dagger.io/dagger v0.18.10/go.mod h1:VSj+2HMd/EnaCVt7gTY70p8LBW+oQDYjA1XTadr8vBE=
3-
github.com/99designs/gqlgen v0.17.74 h1:1FuVtkXxOc87xpKio3f6sohREmec+Jvy86PcYOuwgWo=
4-
github.com/99designs/gqlgen v0.17.74/go.mod h1:a+iR6mfRLNRp++kDpooFHiPWYiWX3Yu1BIilQRHgh10=
1+
dagger.io/dagger v0.18.11 h1:6lSfemlbGM2HmdOjhgevrX2+orMDGKU/xTaBMZ+otyY=
2+
dagger.io/dagger v0.18.11/go.mod h1:azlZ24m2br95t0jQHUBpL5SiafeqtVDLl1Itlq6GO+4=
3+
github.com/99designs/gqlgen v0.17.75 h1:GwHJsptXWLHeY7JO8b7YueUI4w9Pom6wJTICosDtQuI=
4+
github.com/99designs/gqlgen v0.17.75/go.mod h1:p7gbTpdnHyl70hmSpM8XG8GiKwmCv+T5zkdY8U8bLog=
55
github.com/Khan/genqlient v0.8.1 h1:wtOCc8N9rNynRLXN3k3CnfzheCUNKBcvXmVv5zt6WCs=
66
github.com/Khan/genqlient v0.8.1/go.mod h1:R2G6DzjBvCbhjsEajfRjbWdVglSH/73kSivC9TLWVjU=
77
github.com/adrg/xdg v0.5.3 h1:xRnxJXne7+oWDatRhR1JLnvuccuIeCoBu2rtuLqQB78=
@@ -31,8 +31,8 @@ github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
3131
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
3232
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
3333
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
34-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 h1:5ZPtiqj0JL5oKWmcsq4VMaAW5ukBEgSGXEN89zeH1Jo=
35-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3/go.mod h1:ndYquD05frm2vACXE1nsccT4oJzjhw2arTS2cpUD1PI=
34+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.1 h1:X5VWvz21y3gzm9Nw/kaUeku/1+uBhcekkmy4IkffJww=
35+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.1/go.mod h1:Zanoh4+gvIgluNqcfMVTJueD4wSS5hT7zTt4Mrutd90=
3636
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
3737
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
3838
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
@@ -69,8 +69,8 @@ github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOf
6969
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
7070
github.com/tiborvass/go-watch v0.0.0-20250607214558-08999a83bf8b h1:W24fsALOtQ9v3b0mK4yR8wrmhPx4lqJAMMJ+d338fqM=
7171
github.com/tiborvass/go-watch v0.0.0-20250607214558-08999a83bf8b/go.mod h1:oAWYkECp9mFVuJQQzHtoHhepQKbme1gLM4fYH0KWvzk=
72-
github.com/vektah/gqlparser/v2 v2.5.27 h1:RHPD3JOplpk5mP5JGX8RKZkt2/Vwj/PZv0HxTdwFp0s=
73-
github.com/vektah/gqlparser/v2 v2.5.27/go.mod h1:D1/VCZtV3LPnQrcPBeR/q5jkSQIPti0uYCP/RI0gIeo=
72+
github.com/vektah/gqlparser/v2 v2.5.28 h1:bIulcl3LF69ba6EiZVGD88y4MkM+Jxrf3P2MX8xLRkY=
73+
github.com/vektah/gqlparser/v2 v2.5.28/go.mod h1:D1/VCZtV3LPnQrcPBeR/q5jkSQIPti0uYCP/RI0gIeo=
7474
github.com/yosida95/uritemplate/v3 v3.0.2 h1:Ed3Oyj9yrmi9087+NczuL5BwkIc4wvTb5zIM+UJPGz4=
7575
github.com/yosida95/uritemplate/v3 v3.0.2/go.mod h1:ILOh0sOhIJR3+L/8afwt/kE++YT040gmv5BQTMR2HP4=
7676
go.opentelemetry.io/auto/sdk v1.1.0 h1:cH53jehLUN6UFLY71z+NDOiNJqDdPRaXzTel0sJySYA=

0 commit comments

Comments
 (0)