Skip to content

Commit cb4b120

Browse files
Gaurav SahilGaurav Sahil
Gaurav Sahil
authored and
Gaurav Sahil
committed
merge main
2 parents 6ec08bb + a12aff1 commit cb4b120

File tree

11 files changed

+1138
-92
lines changed

11 files changed

+1138
-92
lines changed

.github/workflows/buf-update.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
make install-tools proto-update
2020
2121
- name: Create pull request
22-
uses: peter-evans/[email protected].7
22+
uses: peter-evans/[email protected].8
2323
with:
2424
title: Update Buf dependencies
2525
body: Automatic pull request for updating Buf dependencies

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Download the right `.deb` file for your machine architecture from the
8383
[latest release](https://github.com/conduitio/conduit/releases/latest), then run:
8484

8585
```sh
86-
dpkg -i conduit_0.13.1_Linux_x86_64.deb
86+
dpkg -i conduit_0.13.2_Linux_x86_64.deb
8787
```
8888

8989
### RPM
@@ -92,7 +92,7 @@ Download the right `.rpm` file for your machine architecture from the
9292
[latest release](https://github.com/conduitio/conduit/releases/latest), then run:
9393

9494
```sh
95-
rpm -i conduit_0.13.1_Linux_x86_64.rpm
95+
rpm -i conduit_0.13.2_Linux_x86_64.rpm
9696
```
9797

9898
### Build from source

go.mod

+29-28
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ require (
1111
github.com/cohere-ai/cohere-go/v2 v2.12.4
1212
github.com/conduitio/conduit-commons v0.5.1
1313
github.com/conduitio/conduit-connector-file v0.10.0
14-
github.com/conduitio/conduit-connector-generator v0.10.0
14+
github.com/conduitio/conduit-connector-generator v0.10.1
1515
github.com/conduitio/conduit-connector-kafka v0.12.0
1616
github.com/conduitio/conduit-connector-log v0.7.0
1717
github.com/conduitio/conduit-connector-postgres v0.11.0
@@ -26,11 +26,11 @@ require (
2626
github.com/dop251/goja_nodejs v0.0.0-20231122114759-e84d9a924c5c
2727
github.com/gammazero/deque v1.0.0
2828
github.com/goccy/go-json v0.10.5
29-
github.com/golangci/golangci-lint v1.64.5
29+
github.com/golangci/golangci-lint v1.64.6
3030
github.com/google/go-cmp v0.7.0
3131
github.com/google/uuid v1.6.0
3232
github.com/gorilla/websocket v1.5.3
33-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1
33+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3
3434
github.com/hashicorp/go-hclog v1.6.3
3535
github.com/hashicorp/go-plugin v1.6.3
3636
github.com/jpillora/backoff v1.0.0
@@ -39,10 +39,11 @@ require (
3939
github.com/neilotoole/slogt v1.1.0
4040
github.com/piotrkowalczuk/promgrpc/v4 v4.1.4
4141
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
42-
github.com/prometheus/client_golang v1.21.0
42+
github.com/prometheus/client_golang v1.21.1
4343
github.com/prometheus/client_model v0.6.1
4444
github.com/prometheus/common v0.62.0
4545
github.com/rs/zerolog v1.33.0
46+
github.com/sashabaranov/go-openai v1.38.0
4647
github.com/sourcegraph/conc v0.3.0
4748
github.com/spf13/cobra v1.9.1
4849
github.com/spf13/pflag v1.0.6
@@ -52,17 +53,17 @@ require (
5253
github.com/twmb/go-cache v1.2.1
5354
go.uber.org/mock v0.5.0
5455
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8
55-
golang.org/x/tools v0.30.0
56+
golang.org/x/tools v0.31.0
5657
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028
57-
google.golang.org/genproto/googleapis/api v0.0.0-20250204164813-702378808489
58-
google.golang.org/grpc v1.70.0
58+
google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb
59+
google.golang.org/grpc v1.71.0
5960
google.golang.org/protobuf v1.36.5
6061
gopkg.in/tomb.v2 v2.0.0-20161208151619-d5d1b5820637
6162
mvdan.cc/gofumpt v0.7.0
6263
)
6364

6465
require (
65-
4d63.com/gocheckcompilerdirectives v1.2.1 // indirect
66+
4d63.com/gocheckcompilerdirectives v1.3.0 // indirect
6667
4d63.com/gochecknoglobals v0.2.2 // indirect
6768
buf.build/gen/go/bufbuild/bufplugin/protocolbuffers/go v1.36.3-20241031151143-70f632351282.1 // indirect
6869
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.3-20241127180247-a33202765966.1 // indirect
@@ -76,7 +77,7 @@ require (
7677
connectrpc.com/connect v1.18.1 // indirect
7778
connectrpc.com/otelconnect v0.7.1 // indirect
7879
dario.cat/mergo v1.0.1 // indirect
79-
github.com/4meepo/tagalign v1.4.1 // indirect
80+
github.com/4meepo/tagalign v1.4.2 // indirect
8081
github.com/Abirdcfly/dupword v0.1.3 // indirect
8182
github.com/Antonboom/errname v1.0.0 // indirect
8283
github.com/Antonboom/nilnil v1.0.1 // indirect
@@ -85,7 +86,7 @@ require (
8586
github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c // indirect
8687
github.com/Crocmagnon/fatcontext v0.7.1 // indirect
8788
github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24 // indirect
88-
github.com/GaijinEntertainment/go-exhaustruct/v3 v3.3.0 // indirect
89+
github.com/GaijinEntertainment/go-exhaustruct/v3 v3.3.1 // indirect
8990
github.com/Masterminds/goutils v1.1.1 // indirect
9091
github.com/Masterminds/squirrel v1.5.4 // indirect
9192
github.com/Microsoft/go-winio v0.6.2 // indirect
@@ -130,7 +131,7 @@ require (
130131
github.com/bufbuild/protovalidate-go v0.8.2 // indirect
131132
github.com/butuzov/ireturn v0.3.1 // indirect
132133
github.com/butuzov/mirror v1.3.0 // indirect
133-
github.com/catenacyber/perfsprint v0.8.1 // indirect
134+
github.com/catenacyber/perfsprint v0.8.2 // indirect
134135
github.com/ccojocar/zxcvbn-go v1.0.2 // indirect
135136
github.com/cespare/xxhash/v2 v2.3.0 // indirect
136137
github.com/charithe/durationcheck v0.0.10 // indirect
@@ -207,7 +208,7 @@ require (
207208
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
208209
github.com/gordonklaus/ineffassign v0.1.0 // indirect
209210
github.com/gostaticanalysis/analysisutil v0.7.1 // indirect
210-
github.com/gostaticanalysis/comment v1.4.2 // indirect
211+
github.com/gostaticanalysis/comment v1.5.0 // indirect
211212
github.com/gostaticanalysis/forcetypeassert v0.2.0 // indirect
212213
github.com/gostaticanalysis/nilerr v0.1.1 // indirect
213214
github.com/hamba/avro/v2 v2.27.0 // indirect
@@ -233,15 +234,15 @@ require (
233234
github.com/json-iterator/go v1.1.12 // indirect
234235
github.com/julz/importas v0.2.0 // indirect
235236
github.com/karamaru-alpha/copyloopvar v1.2.1 // indirect
236-
github.com/kisielk/errcheck v1.8.0 // indirect
237-
github.com/kkHAIKE/contextcheck v1.1.5 // indirect
237+
github.com/kisielk/errcheck v1.9.0 // indirect
238+
github.com/kkHAIKE/contextcheck v1.1.6 // indirect
238239
github.com/klauspost/pgzip v1.2.6 // indirect
239240
github.com/kulti/thelper v0.6.3 // indirect
240241
github.com/kunwardeep/paralleltest v1.0.10 // indirect
241242
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
242243
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
243244
github.com/lasiar/canonicalheader v1.1.2 // indirect
244-
github.com/ldez/exptostd v0.4.1 // indirect
245+
github.com/ldez/exptostd v0.4.2 // indirect
245246
github.com/ldez/gomoddirectives v0.6.1 // indirect
246247
github.com/ldez/grignotin v0.9.0 // indirect
247248
github.com/ldez/tagliatelle v0.7.1 // indirect
@@ -255,7 +256,7 @@ require (
255256
github.com/mattn/go-colorable v0.1.14 // indirect
256257
github.com/mattn/go-isatty v0.0.20 // indirect
257258
github.com/mattn/go-runewidth v0.0.16 // indirect
258-
github.com/mgechev/revive v1.6.1 // indirect
259+
github.com/mgechev/revive v1.7.0 // indirect
259260
github.com/mitchellh/copystructure v1.2.0 // indirect
260261
github.com/mitchellh/go-homedir v1.1.0 // indirect
261262
github.com/mitchellh/mapstructure v1.5.0 // indirect
@@ -279,7 +280,7 @@ require (
279280
github.com/ncruces/go-strftime v0.1.9 // indirect
280281
github.com/nishanths/exhaustive v0.12.0 // indirect
281282
github.com/nishanths/predeclared v0.2.2 // indirect
282-
github.com/nunnatsa/ginkgolinter v0.19.0 // indirect
283+
github.com/nunnatsa/ginkgolinter v0.19.1 // indirect
283284
github.com/nxadm/tail v1.4.11 // indirect
284285
github.com/oklog/run v1.1.0 // indirect
285286
github.com/olekukonko/tablewriter v0.0.5 // indirect
@@ -304,7 +305,7 @@ require (
304305
github.com/raeperd/recvcheck v0.2.0 // indirect
305306
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
306307
github.com/rivo/uniseg v0.4.7 // indirect
307-
github.com/rogpeppe/go-internal v1.13.1 // indirect
308+
github.com/rogpeppe/go-internal v1.14.1 // indirect
308309
github.com/rs/cors v1.11.1 // indirect
309310
github.com/russross/blackfriday/v2 v2.1.0 // indirect
310311
github.com/ryancurrah/gomodguard v1.3.5 // indirect
@@ -336,8 +337,8 @@ require (
336337
github.com/stretchr/objx v0.5.2 // indirect
337338
github.com/stretchr/testify v1.10.0 // indirect
338339
github.com/subosito/gotenv v1.6.0 // indirect
339-
github.com/tdakkota/asciicheck v0.4.0 // indirect
340-
github.com/tetafro/godot v1.4.20 // indirect
340+
github.com/tdakkota/asciicheck v0.4.1 // indirect
341+
github.com/tetafro/godot v1.5.0 // indirect
341342
github.com/timakin/bodyclose v0.0.0-20241017074812-ed6a65f985e3 // indirect
342343
github.com/timonwong/loggercheck v0.10.1 // indirect
343344
github.com/tomarrell/wrapcheck/v2 v2.10.0 // indirect
@@ -373,16 +374,16 @@ require (
373374
go.uber.org/multierr v1.11.0 // indirect
374375
go.uber.org/zap v1.27.0 // indirect
375376
go.uber.org/zap/exp v0.3.0 // indirect
376-
golang.org/x/crypto v0.33.0 // indirect
377+
golang.org/x/crypto v0.36.0 // indirect
377378
golang.org/x/exp/typeparams v0.0.0-20250210185358-939b2ce775ac // indirect
378-
golang.org/x/mod v0.23.0 // indirect
379-
golang.org/x/net v0.35.0 // indirect
380-
golang.org/x/sync v0.11.0 // indirect
381-
golang.org/x/sys v0.30.0 // indirect
382-
golang.org/x/term v0.29.0 // indirect
383-
golang.org/x/text v0.22.0 // indirect
379+
golang.org/x/mod v0.24.0 // indirect
380+
golang.org/x/net v0.37.0 // indirect
381+
golang.org/x/sync v0.12.0 // indirect
382+
golang.org/x/sys v0.31.0 // indirect
383+
golang.org/x/term v0.30.0 // indirect
384+
golang.org/x/text v0.23.0 // indirect
384385
golang.org/x/time v0.10.0 // indirect
385-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250204164813-702378808489 // indirect
386+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250303144028-a0af3efb3deb // indirect
386387
gopkg.in/ini.v1 v1.67.0 // indirect
387388
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
388389
gopkg.in/yaml.v2 v2.4.0 // indirect

0 commit comments

Comments
 (0)