Skip to content

Commit 004ffff

Browse files
committedFeb 19, 2025
Revert "upgrade to Go 1.24"
This reverts commit 29b237e.
1 parent 29b237e commit 004ffff

File tree

54 files changed

+58
-56
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+58
-56
lines changed
 

‎go.mod

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module github.com/estuary/connectors
22

3-
go 1.24.0
3+
go 1.22.4
4+
5+
toolchain go1.22.5
46

57
require (
68
cloud.google.com/go v0.115.0
@@ -54,7 +56,6 @@ require (
5456
github.com/mitchellh/mapstructure v1.5.0
5557
github.com/pinecone-io/go-pinecone v1.1.1
5658
github.com/pkg/sftp v1.13.6
57-
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
5859
github.com/segmentio/encoding v0.4.0
5960
github.com/senseyeio/duration v0.0.0-20180430131211-7c2a214ada46
6061
github.com/sijms/go-ora/v2 v2.8.19
@@ -78,7 +79,6 @@ require (
7879
google.golang.org/genproto v0.0.0-20240610135401-a8a62080eff3
7980
google.golang.org/grpc v1.65.0
8081
google.golang.org/protobuf v1.34.2
81-
gopkg.in/yaml.v3 v3.0.1
8282
vitess.io/vitess v0.15.3
8383
)
8484

@@ -199,6 +199,7 @@ require (
199199
github.com/pingcap/errors v0.11.5-0.20240311024730-e056997136bb // indirect
200200
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
201201
github.com/pkg/errors v0.9.1 // indirect
202+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
202203
github.com/prometheus/client_golang v1.19.1 // indirect
203204
github.com/prometheus/client_model v0.6.1 // indirect
204205
github.com/prometheus/common v0.54.0 // indirect
@@ -248,6 +249,7 @@ require (
248249
gopkg.in/jcmturner/dnsutils.v1 v1.0.1 // indirect
249250
gopkg.in/jcmturner/gokrb5.v6 v6.1.1 // indirect
250251
gopkg.in/jcmturner/rpc.v1 v1.1.0 // indirect
252+
gopkg.in/yaml.v3 v3.0.1 // indirect
251253
gotest.tools/gotestsum v1.8.2 // indirect
252254
k8s.io/apimachinery v0.23.17 // indirect
253255
nhooyr.io/websocket v1.8.7 // indirect

‎materialize-azure-fabric-warehouse/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG BASE_IMAGE=ghcr.io/estuary/base-image:v1
22

33
# Build Stage
44
################################################################################
5-
FROM --platform=linux/amd64 golang:1.24-bullseye as builder
5+
FROM --platform=linux/amd64 golang:1.22-bullseye as builder
66

77
WORKDIR /builder
88

0 commit comments

Comments
 (0)
Please sign in to comment.