-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Migrate to go1.15 and confluent-kafka-go v1.5.2 (#10) * update confluent-kafka-go dependency to v1.5.2 * fix build * fix tests * add logs * Fix worflow * Fix integration test (#9) * use environnement variable to define boostrap server * Update to go1.22 and confluente-kafka-go v2.3.0 * Update actions/checkout * Update run_tests.sh * Update run_tests.sh * Update to kcat * Add context to transform and project operations --------- Co-authored-by: Laurent Dechoux <[email protected]> Co-authored-by: Vincent Composieux <[email protected]> Co-authored-by: Fatih KARAKAŞ <[email protected]>
- Loading branch information
1 parent
c0f5f1c
commit 5959cb4
Showing
42 changed files
with
257 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
GOLANG_VERSION?=1.17 | ||
GOLANG_VERSION?=1.22 | ||
|
||
.PHONY: dev.up | ||
dev.up: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,25 @@ | ||
module github.com/etf1/kafka-transformer/examples | ||
|
||
go 1.15 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/confluentinc/confluent-kafka-go v1.5.2 | ||
github.com/confluentinc/confluent-kafka-go/v2 v2.3.0 | ||
github.com/etf1/kafka-transformer v0.0.0-20200327090708-353621d904e9 | ||
github.com/go-redis/redis/v7 v7.2.0 | ||
github.com/prometheus/client_golang v1.5.1 | ||
github.com/sirupsen/logrus v1.4.2 | ||
github.com/sirupsen/logrus v1.8.1 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.1 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.9.1 // indirect | ||
github.com/prometheus/procfs v0.0.8 // indirect | ||
golang.org/x/sys v0.6.0 // indirect | ||
google.golang.org/protobuf v1.30.0 // indirect | ||
) | ||
|
||
replace github.com/etf1/kafka-transformer => ../ |
Oops, something went wrong.