11module code.gitea.io/gitea
22
3- go 1.22
3+ go 1.23
4+
5+ // rfc5280 said: "The serial number is an integer assigned by the CA to each certificate."
6+ // But some CAs use negative serial number, just relax the check. related:
7+ // Default TLS cert uses negative serial number #895 https://github.com/microsoft/mssql-docker/issues/895
8+ godebug x509negativeserial=1
49
510require (
611 code.gitea.io/actions-proto-go v0.4.0
@@ -9,11 +14,12 @@ require (
914 codeberg.org/gusted/mcaptcha v0.0.0-20220723083913-4f3072e1d570
1015 connectrpc.com/connect v1.15.0
1116 gitea.com/go-chi/binding v0.0.0-20240430071103-39a851e106ed
12- gitea.com/go-chi/cache v0.2.0
17+ gitea.com/go-chi/cache v0.2.1
1318 gitea.com/go-chi/captcha v0.0.0-20240315150714-fb487f629098
1419 gitea.com/go-chi/session v0.0.0-20240316035857-16768d98ec96
1520 gitea.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96
1621 gitea.com/lunny/levelqueue v0.4.2-0.20230414023320-3c0159fe0fe4
22+ github.com/42wim/httpsig v1.2.2
1723 github.com/42wim/sshsig v0.0.0-20211121163825-841cf5bbc121
1824 github.com/Azure/azure-sdk-for-go/sdk/azcore v1.12.0
1925 github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2
@@ -22,6 +28,9 @@ require (
2228 github.com/PuerkitoBio/goquery v1.9.2
2329 github.com/SaveTheRbtz/zstd-seekable-format-go/pkg v0.7.2
2430 github.com/alecthomas/chroma/v2 v2.14.0
31+ github.com/aws/aws-sdk-go v1.43.21
32+ github.com/aws/aws-sdk-go-v2/credentials v1.17.30
33+ github.com/aws/aws-sdk-go-v2/service/codecommit v1.25.1
2534 github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb
2635 github.com/blevesearch/bleve/v2 v2.4.2
2736 github.com/buildkite/terminal-to-html/v3 v3.12.1
@@ -45,7 +54,6 @@ require (
4554 github.com/go-chi/cors v1.2.1
4655 github.com/go-co-op/gocron v1.37.0
4756 github.com/go-enry/go-enry/v2 v2.8.8
48- github.com/go-fed/httpsig v1.1.1-0.20201223112313-55836744818e
4957 github.com/go-git/go-billy/v5 v5.5.0
5058 github.com/go-git/go-git/v5 v5.12.0
5159 github.com/go-ldap/ldap/v3 v3.4.6
@@ -110,13 +118,13 @@ require (
110118 github.com/yuin/goldmark v1.7.2
111119 github.com/yuin/goldmark-highlighting/v2 v2.0.0-20230729083705-37449abec8cc
112120 github.com/yuin/goldmark-meta v1.1.0
113- golang.org/x/crypto v0.24 .0
121+ golang.org/x/crypto v0.26 .0
114122 golang.org/x/image v0.18.0
115- golang.org/x/net v0.26 .0
123+ golang.org/x/net v0.28 .0
116124 golang.org/x/oauth2 v0.21.0
117- golang.org/x/sys v0.21 .0
118- golang.org/x/text v0.16 .0
119- golang.org/x/tools v0.22 .0
125+ golang.org/x/sys v0.23 .0
126+ golang.org/x/text v0.17 .0
127+ golang.org/x/tools v0.24 .0
120128 google.golang.org/grpc v1.62.1
121129 google.golang.org/protobuf v1.34.2
122130 gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
@@ -146,6 +154,10 @@ require (
146154 github.com/andybalholm/cascadia v1.3.2 // indirect
147155 github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
148156 github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
157+ github.com/aws/aws-sdk-go-v2 v1.30.4 // indirect
158+ github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.16 // indirect
159+ github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.16 // indirect
160+ github.com/aws/smithy-go v1.20.4 // indirect
149161 github.com/aymerick/douceur v0.2.0 // indirect
150162 github.com/beorn7/perks v1.0.1 // indirect
151163 github.com/bits-and-blooms/bitset v1.13.0 // indirect
@@ -190,6 +202,7 @@ require (
190202 github.com/go-enry/go-oniguruma v1.2.1 // indirect
191203 github.com/go-faster/city v1.0.1 // indirect
192204 github.com/go-faster/errors v0.7.1 // indirect
205+ github.com/go-fed/httpsig v1.1.1-0.20201223112313-55836744818e // indirect
193206 github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
194207 github.com/go-openapi/analysis v0.23.0 // indirect
195208 github.com/go-openapi/errors v0.22.0 // indirect
@@ -248,18 +261,20 @@ require (
248261 github.com/modern-go/reflect2 v1.0.2 // indirect
249262 github.com/mrjones/oauth v0.0.0-20190623134757-126b35219450 // indirect
250263 github.com/mschoch/smat v0.2.0 // indirect
264+ github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
251265 github.com/nwaples/rardecode v1.1.3 // indirect
252266 github.com/oklog/ulid v1.3.1 // indirect
253267 github.com/olekukonko/tablewriter v0.0.5 // indirect
254268 github.com/onsi/ginkgo v1.16.5 // indirect
269+ github.com/onsi/gomega v1.33.1 // indirect
255270 github.com/paulmach/orb v0.11.1 // indirect
256- github.com/pelletier/go-toml/v2 v2.1.1 // indirect
271+ github.com/pelletier/go-toml/v2 v2.2.2 // indirect
257272 github.com/pierrec/lz4/v4 v4.1.21 // indirect
258273 github.com/pjbgf/sha1cd v0.3.0 // indirect
259274 github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
260- github.com/prometheus/client_model v0.6.0 // indirect
261- github.com/prometheus/common v0.50 .0 // indirect
262- github.com/prometheus/procfs v0.13.0 // indirect
275+ github.com/prometheus/client_model v0.6.1 // indirect
276+ github.com/prometheus/common v0.55 .0 // indirect
277+ github.com/prometheus/procfs v0.15.1 // indirect
263278 github.com/rhysd/actionlint v1.7.1 // indirect
264279 github.com/rivo/uniseg v0.4.7 // indirect
265280 github.com/rogpeppe/go-internal v1.12.0 // indirect
@@ -299,8 +314,8 @@ require (
299314 go.uber.org/multierr v1.11.0 // indirect
300315 go.uber.org/zap v1.27.0 // indirect
301316 golang.org/x/exp v0.0.0-20240314144324-c7f7c6466f7f // indirect
302- golang.org/x/mod v0.18 .0 // indirect
303- golang.org/x/sync v0.7 .0 // indirect
317+ golang.org/x/mod v0.20 .0 // indirect
318+ golang.org/x/sync v0.8 .0 // indirect
304319 golang.org/x/time v0.5.0 // indirect
305320 google.golang.org/genproto/googleapis/rpc v0.0.0-20240314234333-6e1732d8331c // indirect
306321 gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
0 commit comments