Skip to content

Commit 6d7b0a8

Browse files
committed
Bump all dependencies
Wow! So, it turns out that Slack's deprecation is only for legacy custom _bots_, and not the legacy slash command integration (which some instances of this system definitely still use). The most interesting thing about this is that bbolt is receiving updates! v1.4.0 came out yesterday, and for the most part it looks like a lot of internal refactoring. This version has been in a prerelease state for over a year, so I'll assume the etcd folks have worked out any issues by now. (And yes, I read about the typosquatting attack on an unrelated fork of Bolt, for whatever that's worth.) Once again the binary protobuf stuff annoys me. Protobuf-related code feels like quite a substantial portion of these changes. But I'm still just complaining about it without taking action, so...
1 parent 1e2dd3f commit 6d7b0a8

File tree

967 files changed

+51972
-38254
lines changed

Some content is hidden

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

967 files changed

+51972
-38254
lines changed

go.mod

+54-56
Original file line numberDiff line numberDiff line change
@@ -3,73 +3,71 @@ module github.com/ahamlinman/randomizer
33
go 1.23
44

55
require (
6-
cloud.google.com/go/firestore v1.16.0
6+
cloud.google.com/go/firestore v1.18.0
77
github.com/aws/aws-lambda-go v1.47.0
8-
github.com/aws/aws-sdk-go-v2 v1.30.4
9-
github.com/aws/aws-sdk-go-v2/config v1.27.28
10-
github.com/aws/aws-sdk-go-v2/feature/dynamodb/expression v1.7.33
11-
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.34.5
12-
github.com/aws/aws-sdk-go-v2/service/ssm v1.52.5
13-
github.com/aws/aws-xray-sdk-go v1.8.4
8+
github.com/aws/aws-sdk-go-v2 v1.36.1
9+
github.com/aws/aws-sdk-go-v2/config v1.29.6
10+
github.com/aws/aws-sdk-go-v2/feature/dynamodb/expression v1.7.69
11+
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.40.0
12+
github.com/aws/aws-sdk-go-v2/service/ssm v1.56.12
13+
github.com/aws/aws-xray-sdk-go v1.8.5
1414
github.com/awslabs/aws-lambda-go-api-proxy v0.16.2
15-
github.com/googleapis/gax-go/v2 v2.13.0
15+
github.com/googleapis/gax-go/v2 v2.14.1
1616
github.com/spf13/cobra v1.8.1
17-
go.etcd.io/bbolt v1.3.10
18-
google.golang.org/grpc v1.65.0
17+
go.etcd.io/bbolt v1.4.0
18+
google.golang.org/grpc v1.70.0
1919
)
2020

2121
require (
22-
cloud.google.com/go v0.115.1 // indirect
23-
cloud.google.com/go/auth v0.8.1 // indirect
24-
cloud.google.com/go/auth/oauth2adapt v0.2.4 // indirect
25-
cloud.google.com/go/compute/metadata v0.5.0 // indirect
26-
cloud.google.com/go/longrunning v0.5.12 // indirect
27-
github.com/andybalholm/brotli v1.1.0 // indirect
28-
github.com/aws/aws-sdk-go v1.55.5 // indirect
29-
github.com/aws/aws-sdk-go-v2/credentials v1.17.28 // indirect
30-
github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.14.11 // indirect
31-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.12 // indirect
32-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.16 // indirect
33-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.16 // indirect
34-
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
35-
github.com/aws/aws-sdk-go-v2/service/dynamodbstreams v1.22.4 // indirect
36-
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.4 // indirect
37-
github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.9.17 // indirect
38-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.18 // indirect
39-
github.com/aws/aws-sdk-go-v2/service/sso v1.22.5 // indirect
40-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.5 // indirect
41-
github.com/aws/aws-sdk-go-v2/service/sts v1.30.4 // indirect
42-
github.com/aws/smithy-go v1.20.4 // indirect
22+
cloud.google.com/go v0.118.2 // indirect
23+
cloud.google.com/go/auth v0.14.1 // indirect
24+
cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect
25+
cloud.google.com/go/compute/metadata v0.6.0 // indirect
26+
cloud.google.com/go/longrunning v0.6.4 // indirect
27+
github.com/andybalholm/brotli v1.1.1 // indirect
28+
github.com/aws/aws-sdk-go v1.55.6 // indirect
29+
github.com/aws/aws-sdk-go-v2/credentials v1.17.59 // indirect
30+
github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.18.3 // indirect
31+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.28 // indirect
32+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.32 // indirect
33+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.32 // indirect
34+
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.2 // indirect
35+
github.com/aws/aws-sdk-go-v2/service/dynamodbstreams v1.24.20 // indirect
36+
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.2 // indirect
37+
github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.10.13 // indirect
38+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.13 // indirect
39+
github.com/aws/aws-sdk-go-v2/service/sso v1.24.15 // indirect
40+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.14 // indirect
41+
github.com/aws/aws-sdk-go-v2/service/sts v1.33.14 // indirect
42+
github.com/aws/smithy-go v1.22.2 // indirect
4343
github.com/felixge/httpsnoop v1.0.4 // indirect
4444
github.com/go-logr/logr v1.4.2 // indirect
4545
github.com/go-logr/stdr v1.2.2 // indirect
46-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
47-
github.com/golang/protobuf v1.5.4 // indirect
48-
github.com/google/s2a-go v0.1.8 // indirect
49-
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
46+
github.com/google/s2a-go v0.1.9 // indirect
47+
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
5048
github.com/inconshreveable/mousetrap v1.1.0 // indirect
5149
github.com/jmespath/go-jmespath v0.4.0 // indirect
52-
github.com/klauspost/compress v1.17.9 // indirect
50+
github.com/klauspost/compress v1.17.11 // indirect
5351
github.com/pkg/errors v0.9.1 // indirect
54-
github.com/spf13/pflag v1.0.5 // indirect
52+
github.com/spf13/pflag v1.0.6 // indirect
5553
github.com/valyala/bytebufferpool v1.0.0 // indirect
56-
github.com/valyala/fasthttp v1.55.0 // indirect
57-
go.opencensus.io v0.24.0 // indirect
58-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 // indirect
59-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
60-
go.opentelemetry.io/otel v1.28.0 // indirect
61-
go.opentelemetry.io/otel/metric v1.28.0 // indirect
62-
go.opentelemetry.io/otel/trace v1.28.0 // indirect
63-
golang.org/x/crypto v0.31.0 // indirect
64-
golang.org/x/net v0.33.0 // indirect
65-
golang.org/x/oauth2 v0.22.0 // indirect
66-
golang.org/x/sync v0.10.0 // indirect
67-
golang.org/x/sys v0.28.0 // indirect
68-
golang.org/x/text v0.21.0 // indirect
69-
golang.org/x/time v0.6.0 // indirect
70-
google.golang.org/api v0.192.0 // indirect
71-
google.golang.org/genproto v0.0.0-20240814211410-ddb44dafa142 // indirect
72-
google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 // indirect
73-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect
74-
google.golang.org/protobuf v1.34.2 // indirect
54+
github.com/valyala/fasthttp v1.58.0 // indirect
55+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
56+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0 // indirect
57+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 // indirect
58+
go.opentelemetry.io/otel v1.34.0 // indirect
59+
go.opentelemetry.io/otel/metric v1.34.0 // indirect
60+
go.opentelemetry.io/otel/trace v1.34.0 // indirect
61+
golang.org/x/crypto v0.32.0 // indirect
62+
golang.org/x/net v0.34.0 // indirect
63+
golang.org/x/oauth2 v0.26.0 // indirect
64+
golang.org/x/sync v0.11.0 // indirect
65+
golang.org/x/sys v0.30.0 // indirect
66+
golang.org/x/text v0.22.0 // indirect
67+
golang.org/x/time v0.10.0 // indirect
68+
google.golang.org/api v0.220.0 // indirect
69+
google.golang.org/genproto v0.0.0-20250204164813-702378808489 // indirect
70+
google.golang.org/genproto/googleapis/api v0.0.0-20250204164813-702378808489 // indirect
71+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250204164813-702378808489 // indirect
72+
google.golang.org/protobuf v1.36.5 // indirect
7573
)

0 commit comments

Comments
 (0)