-
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.
Merge pull request #28 from configcat/dep-updates
Update dependencies due to security vulnerability reports
- Loading branch information
Showing
3 changed files
with
131 additions
and
107 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.22.1-alpine3.19 AS build | ||
FROM golang:1.23-alpine3.21 AS build | ||
|
||
WORKDIR /go/src/configcat_proxy | ||
|
||
|
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,60 +1,62 @@ | ||
module github.com/configcat/configcat-proxy | ||
|
||
go 1.21 | ||
go 1.23 | ||
|
||
require ( | ||
github.com/alicebob/miniredis/v2 v2.33.0 | ||
github.com/aws/aws-sdk-go-v2 v1.30.3 | ||
github.com/aws/aws-sdk-go-v2/config v1.27.27 | ||
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.34.4 | ||
github.com/alicebob/miniredis/v2 v2.34.0 | ||
github.com/aws/aws-sdk-go-v2 v1.34.0 | ||
github.com/aws/aws-sdk-go-v2/config v1.29.2 | ||
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.39.6 | ||
github.com/cespare/xxhash/v2 v2.3.0 | ||
github.com/configcat/go-sdk/v9 v9.0.7 | ||
github.com/fsnotify/fsnotify v1.7.0 | ||
github.com/fsnotify/fsnotify v1.8.0 | ||
github.com/julienschmidt/httprouter v1.3.0 | ||
github.com/prometheus/client_golang v1.19.1 | ||
github.com/redis/go-redis/v9 v9.6.1 | ||
github.com/stretchr/testify v1.9.0 | ||
go.mongodb.org/mongo-driver v1.16.1 | ||
google.golang.org/grpc v1.65.0 | ||
google.golang.org/protobuf v1.34.2 | ||
github.com/prometheus/client_golang v1.20.5 | ||
github.com/redis/go-redis/v9 v9.7.0 | ||
github.com/stretchr/testify v1.10.0 | ||
go.mongodb.org/mongo-driver v1.17.2 | ||
google.golang.org/grpc v1.70.0 | ||
google.golang.org/protobuf v1.36.4 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.17.27 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.11 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.15 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.15 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.3 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.9.16 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.17 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.22.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.30.3 // indirect | ||
github.com/aws/smithy-go v1.20.3 // indirect | ||
github.com/alicebob/gopher-json v0.0.0-20230218143504-906a9b012302 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.17.55 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.25 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.29 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.29 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.10.10 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.10 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.24.12 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.11 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.33.10 // indirect | ||
github.com/aws/smithy-go v1.22.2 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/blang/semver/v4 v4.0.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/klauspost/compress v1.13.6 // indirect | ||
github.com/klauspost/compress v1.17.11 // indirect | ||
github.com/kylelemons/godebug v1.1.0 // indirect | ||
github.com/montanaflynn/stats v0.7.1 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.5.0 // indirect | ||
github.com/prometheus/common v0.48.0 // indirect | ||
github.com/prometheus/procfs v0.12.0 // indirect | ||
github.com/prometheus/client_model v0.6.1 // indirect | ||
github.com/prometheus/common v0.62.0 // indirect | ||
github.com/prometheus/procfs v0.15.1 // indirect | ||
github.com/xdg-go/pbkdf2 v1.0.0 // indirect | ||
github.com/xdg-go/scram v1.1.2 // indirect | ||
github.com/xdg-go/stringprep v1.0.4 // indirect | ||
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect | ||
github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78 // indirect | ||
github.com/yuin/gopher-lua v1.1.1 // indirect | ||
golang.org/x/crypto v0.24.0 // indirect | ||
golang.org/x/net v0.25.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/sys v0.21.0 // indirect | ||
golang.org/x/text v0.16.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240528184218-531527333157 // indirect | ||
golang.org/x/crypto v0.32.0 // indirect | ||
golang.org/x/net v0.34.0 // indirect | ||
golang.org/x/sync v0.10.0 // indirect | ||
golang.org/x/sys v0.29.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20250127172529-29210b9bc287 // indirect | ||
) |
Oops, something went wrong.