Skip to content

Commit bec16b7

Browse files
authored
Merge pull request #418 from target/Golang1.21.5
Updating Golang version to 1.21.5
2 parents c30f478 + 2374072 commit bec16b7

File tree

9 files changed

+2255
-32
lines changed

9 files changed

+2255
-32
lines changed

CONTRIBUTORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ git log -p <file>
88
# Target Team
99
- Paul Hutelmyer - Lead
1010
- Ryan O'Horo
11+
- Sara Kalupa
1112

1213
# External Collaborators
1314
- Josh Liburdi ([@jshlbrd](https://twitter.com/jshlbrd))

build/go/fileshot/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Strelka Fileshot
22
# Client is designed to one-shot upload files and retrieve their results
33
# For more information, please see: https://target.github.io/strelka/#/?id=strelka-fileshot
4-
FROM golang:1.19 AS build
4+
FROM golang:1.21.5 AS build
55
LABEL maintainer="Target Brands, Inc. TTS-CFC-OpenSource@target.com"
66

77
# Copy source files and set the working directory

build/go/filestream/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Strelka Filestream
22
# Client is designed to continuously stream files and retrieves their results.
33
# For more information, please see: https://target.github.io/strelka/#/?id=strelka-filestream
4-
FROM golang:1.17.6 AS build
4+
FROM golang:1.21.5 AS build
55
LABEL maintainer="Target Brands, Inc. TTS-CFC-OpenSource@target.com"
66

77
# Copy source files and set the working directory

build/go/frontend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Strelka Frontend
22
# The frontend for a cluster in which clients can connect directly via Envoy.
33
# For more information, please see: https://target.github.io/strelka/#/?id=strelka-frontend
4-
FROM golang:1.17.6-alpine AS build
4+
FROM golang:1.21.5-alpine AS build
55
LABEL maintainer="Target Brands, Inc. TTS-CFC-OpenSource@target.com"
66

77
RUN apk add openssl-dev bash build-base pkgconfig librdkafka librdkafka-dev

build/go/manager/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Strelka Manager
22
# Manages portions of Strelka's Redis database.
33
# For more information, please see: https://target.github.io/strelka/#/?id=strelka-manager
4-
FROM golang:1.17.6 AS build
4+
FROM golang:1.21.5 AS build
55
LABEL maintainer="Target Brands, Inc. TTS-CFC-OpenSource@target.com"
66

77
# Copy source files and set the working directory

build/go/oneshot/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Strelka Oneshot
22
# Client is designed to be used to submit a single file from command line and receive the result for it immediately.
33
# For more information, please see: https://target.github.io/strelka/#/?id=strelka-oneshot
4-
FROM golang:1.17.6 AS build
4+
FROM golang:1.21.5 AS build
55
LABEL maintainer="Target Brands, Inc. TTS-CFC-OpenSource@target.com"
66

77
# Copy source files and set the working directory

go.mod

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
module github.com/target/strelka
22

3-
go 1.19
3+
go 1.21
44

55
require (
6+
github.com/confluentinc/confluent-kafka-go/v2 v2.2.0
67
github.com/gabriel-vasile/mimetype v1.4.1
78
github.com/go-redis/redis/v8 v8.11.5
89
github.com/golang/protobuf v1.5.3
@@ -11,11 +12,8 @@ require (
1112
gopkg.in/yaml.v2 v2.4.0
1213
)
1314

14-
require gopkg.in/confluentinc/confluent-kafka-go.v1 v1.8.2 // indirect
15-
1615
require (
1716
github.com/cespare/xxhash/v2 v2.2.0 // indirect
18-
github.com/confluentinc/confluent-kafka-go v1.9.2
1917
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
2018
golang.org/x/net v0.17.0 // indirect
2119
golang.org/x/sys v0.13.0 // indirect

go.sum

Lines changed: 2246 additions & 22 deletions
Large diffs are not rendered by default.

src/go/cmd/strelka-frontend/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"github.com/target/strelka/src/go/pkg/rpc"
2424
"github.com/target/strelka/src/go/pkg/structs"
2525

26-
"github.com/confluentinc/confluent-kafka-go/kafka"
26+
"github.com/confluentinc/confluent-kafka-go/v2/kafka"
2727
)
2828

2929
type coord struct {

0 commit comments

Comments
 (0)