Skip to content

Commit aec2f56

Browse files
committed
Merge remote-tracking branch 'origin/main' into reply
* origin/main: (51 commits) Fix color regressions, add `priority` color (go-gitea#37417) [skip ci] Updated translations via Crowdin Stabilize e2e logout propagation test (go-gitea#37403) refactor: serve site manifest via `/assets/site-manifest.json` endpoint (go-gitea#37405) feat(security): set X-Content-Type-Options: nosniff by default (go-gitea#37354) Refactor pull request view (1) (go-gitea#37380) Improve AGENTS.md (go-gitea#37382) Remove dead CSS (go-gitea#37376) Add pr-review e2e test and speed up e2e tests (go-gitea#37345) Drop Fomantic tab, checkbox and form patches (go-gitea#37377) fix: dump with default zip type produces uncompressed zip (go-gitea#37401) Allow fast-forward-only merge when signed commits are required (go-gitea#37335) Introduce `ActionRunAttempt` to represent each execution of a run (go-gitea#37119) Move review request functions to a standalone file (go-gitea#37358) Fix repo init README EOL (go-gitea#37388) Fix org team assignee/reviewer lookups for team member permissions (go-gitea#37365) Remove external service dependencies in migration tests (go-gitea#36866) Extend issue context popup beyond markdown content (go-gitea#36908) fix: commit status reporting (go-gitea#37372) Support for Custom URI Schemes in OAuth2 Redirect URIs (go-gitea#37356) ...
2 parents 1318f04 + 24b60f8 commit aec2f56

518 files changed

Lines changed: 10157 additions & 4874 deletions

File tree

Some content is hidden

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

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Gitea DevContainer",
3-
"image": "mcr.microsoft.com/devcontainers/go:1.25-trixie",
3+
"image": "mcr.microsoft.com/devcontainers/go:1.26-trixie",
44
"containerEnv": {
55
// override "local" from packaged version
66
"GOTOOLCHAIN": "auto"

.github/workflows/pull-compliance.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
contents: read
3939
steps:
4040
- uses: actions/checkout@v6
41-
- uses: astral-sh/setup-uv@v8.0.0
41+
- uses: astral-sh/setup-uv@v8.1.0
4242
- run: uv python install 3.14
4343
- uses: pnpm/action-setup@v5
4444
- uses: actions/setup-node@v6
@@ -58,7 +58,7 @@ jobs:
5858
contents: read
5959
steps:
6060
- uses: actions/checkout@v6
61-
- uses: astral-sh/setup-uv@v8.0.0
61+
- uses: astral-sh/setup-uv@v8.1.0
6262
- run: uv python install 3.14
6363
- run: make deps-py
6464
- run: make lint-yaml
@@ -72,9 +72,11 @@ jobs:
7272
steps:
7373
- uses: actions/checkout@v6
7474
- uses: pnpm/action-setup@v5
75-
- uses: actions/setup-node@v5
75+
- uses: actions/setup-node@v6
7676
with:
7777
node-version: 24
78+
cache: pnpm
79+
cache-dependency-path: pnpm-lock.yaml
7880
- run: make deps-frontend
7981
- run: make lint-json
8082

AGENTS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
- Run `make fmt` to format `.go` files, and run `make lint-go` to lint them
33
- Run `make lint-js` to lint `.ts` files
44
- Run `make tidy` after any `go.mod` changes
5+
- Run single go unit tests with `go test -tags 'sqlite sqlite_unlock_notify' -run '^TestName$' ./modulepath/`
6+
- Run single go integration tests with `make 'test-sqlite#TestName/Subtest'`
7+
- Run single playwright e2e test files with `GITEA_TEST_E2E_FLAGS='<filepath>' make test-e2e`
58
- Add the current year into the copyright header of new `.go` files
69
- Ensure no trailing whitespace in edited files
710
- Never force-push, amend, or squash unless asked. Use new commits and normal push for pull request updates

cmd/admin_user_change_password_test.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
package cmd
55

66
import (
7+
"io"
78
"testing"
89

910
"code.gitea.io/gitea/models/db"
@@ -82,7 +83,9 @@ func TestChangePasswordCommand(t *testing.T) {
8283

8384
for _, tc := range testCases {
8485
t.Run(tc.name, func(t *testing.T) {
85-
err := microcmdUserChangePassword().Run(ctx, tc.args)
86+
cmd := microcmdUserChangePassword()
87+
cmd.Writer, cmd.ErrWriter = io.Discard, io.Discard
88+
err := cmd.Run(ctx, tc.args)
8689
require.Error(t, err)
8790
require.Contains(t, err.Error(), tc.expectedErr)
8891
})

cmd/cert_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
package cmd
55

66
import (
7+
"io"
78
"path/filepath"
89
"testing"
910

@@ -107,6 +108,7 @@ func TestCertCommandFailures(t *testing.T) {
107108
for _, c := range cases {
108109
t.Run(c.name, func(t *testing.T) {
109110
app := cmdCert()
111+
app.Writer, app.ErrWriter = io.Discard, io.Discard
110112
tempDir := t.TempDir()
111113

112114
certFile := filepath.Join(tempDir, "cert.pem")

cmd/cmd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ func PrepareConsoleLoggerLevel(defaultLevel log.Level) func(context.Context, *cl
124124
if setting.InstallLock {
125125
// During config loading, there might also be logs (for example: deprecation warnings).
126126
// It must make sure that console logger is set up before config is loaded.
127-
log.Error("Config is loaded before console logger is setup, it will cause bugs. Please fix it.")
127+
log.Error("Config is loaded before console logger is setup, it will cause bugs. Please fix it. CustomConf=%s", setting.CustomConf)
128128
return nil, errors.New("console logger must be setup before config is loaded")
129129
}
130130
level := defaultLevel

cmd/main_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,10 @@ func runTestApp(app *cli.Command, args ...string) (runResult, error) {
6262
}
6363

6464
func TestCliCmd(t *testing.T) {
65-
defaultWorkPath := filepath.Dir(setting.AppPath)
65+
defaultWorkPath := filepath.FromSlash("/tmp/mocked-work-path")
6666
defaultCustomPath := filepath.Join(defaultWorkPath, "custom")
6767
defaultCustomConf := filepath.Join(defaultCustomPath, "conf/app.ini")
68+
defer setting.MockBuiltinPaths(defaultWorkPath, "", "")()
6869

6970
cli.CommandHelpTemplate = "(command help template)"
7071
cli.RootCommandHelpTemplate = "(app help template)"
@@ -157,7 +158,6 @@ func TestCliCmd(t *testing.T) {
157158

158159
for _, c := range cases {
159160
t.Run(c.cmd, func(t *testing.T) {
160-
defer test.MockVariableValue(&setting.InstallLock, false)()
161161
app := newTestApp(cli.Command{
162162
Action: func(ctx context.Context, cmd *cli.Command) error {
163163
_, _ = fmt.Fprint(cmd.Root().Writer, makePathOutput(setting.AppWorkPath, setting.CustomPath, setting.CustomConf))

custom/conf/app.example.ini

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,8 +525,11 @@ INTERNAL_TOKEN =
525525
;; Set to "enforced", to force users to enroll into Two-Factor Authentication, users without 2FA have no access to repositories via API or web.
526526
;TWO_FACTOR_AUTH =
527527
;;
528-
;; The value of the X-Frame-Options HTTP header for HTML responses. Use "unset" to remove the header.
528+
;; The value of the X-Frame-Options HTTP header for all responses. Use "unset" to remove the header.
529529
;X_FRAME_OPTIONS = SAMEORIGIN
530+
;;
531+
;; The value of the X-Content-Type-Options HTTP header for all responses. Use "unset" to remove the header.
532+
;X_CONTENT_TYPE_OPTIONS = nosniff
530533

531534
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
532535
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -592,6 +595,11 @@ ENABLED = true
592595
;; * https://github.com/git-ecosystem/git-credential-manager
593596
;; * https://gitea.com/gitea/tea
594597
;DEFAULT_APPLICATIONS = git-credential-oauth, git-credential-manager, tea
598+
;;
599+
;; By default, OAuth2 applications can only use "http" and "https" as their redirect URI schemes.
600+
;; If you need to use other schemes (e.g. for desktop applications), you can specify them here as a comma-separated list.
601+
;; For example: set "my-scheme, com.example.app" to support "my-scheme://..." and "com.example.app://..." redirect URIs.
602+
;CUSTOM_SCHEMES =
595603

596604
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
597605
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -2968,6 +2976,8 @@ LEVEL = Info
29682976
;; Comma-separated list of workflow directories, the first one to exist
29692977
;; in a repo is used to find Actions workflow files
29702978
;WORKFLOW_DIRS = .gitea/workflows,.github/workflows
2979+
;; Maximum number of attempts a single workflow run can have. Default value is 50.
2980+
;MAX_RERUN_ATTEMPTS = 50
29712981

29722982
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
29732983
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

go.mod

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ require (
2727
github.com/PuerkitoBio/goquery v1.12.0
2828
github.com/SaveTheRbtz/zstd-seekable-format-go/pkg v0.8.0
2929
github.com/alecthomas/chroma/v2 v2.23.1
30-
github.com/aws/aws-sdk-go-v2/credentials v1.19.14
31-
github.com/aws/aws-sdk-go-v2/service/codecommit v1.33.12
30+
github.com/aws/aws-sdk-go-v2/credentials v1.19.15
31+
github.com/aws/aws-sdk-go-v2/service/codecommit v1.33.13
3232
github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb
3333
github.com/blevesearch/bleve/v2 v2.5.7
3434
github.com/bohde/codel v0.2.0
@@ -37,7 +37,7 @@ require (
3737
github.com/charmbracelet/git-lfs-transfer v0.1.1-0.20251013092601-6327009efd21
3838
github.com/chi-middleware/proxy v1.1.1
3939
github.com/dimiro1/reply v0.0.0-20200315094148-d0136a4c9e21
40-
github.com/dlclark/regexp2 v1.11.5
40+
github.com/dlclark/regexp2 v1.12.0
4141
github.com/dsnet/compress v0.0.2-0.20230904184137-39efe44ab707
4242
github.com/dustin/go-humanize v1.0.1
4343
github.com/editorconfig/editorconfig-core-go/v2 v2.6.4
@@ -49,14 +49,14 @@ require (
4949
github.com/gliderlabs/ssh v0.3.8
5050
github.com/go-chi/chi/v5 v5.2.5
5151
github.com/go-chi/cors v1.2.2
52-
github.com/go-co-op/gocron/v2 v2.20.0
52+
github.com/go-co-op/gocron/v2 v2.21.0
5353
github.com/go-enry/go-enry/v2 v2.9.6
5454
github.com/go-git/go-billy/v5 v5.8.0
5555
github.com/go-git/go-git/v5 v5.18.0
5656
github.com/go-ldap/ldap/v3 v3.4.13
5757
github.com/go-redsync/redsync/v4 v4.16.0
5858
github.com/go-sql-driver/mysql v1.9.3
59-
github.com/go-webauthn/webauthn v0.16.4
59+
github.com/go-webauthn/webauthn v0.16.5
6060
github.com/gogs/chardet v0.0.0-20211120154057-b7413eaefb8f
6161
github.com/gogs/go-gogs-client v0.0.0-20210131175652-1d7215cd8d85
6262
github.com/golang-jwt/jwt/v5 v5.3.1
@@ -139,10 +139,10 @@ require (
139139
github.com/andybalholm/brotli v1.2.1 // indirect
140140
github.com/andybalholm/cascadia v1.3.3 // indirect
141141
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
142-
github.com/aws/aws-sdk-go-v2 v1.41.5 // indirect
143-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.21 // indirect
144-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.21 // indirect
145-
github.com/aws/smithy-go v1.24.2 // indirect
142+
github.com/aws/aws-sdk-go-v2 v1.41.6 // indirect
143+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.22 // indirect
144+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.22 // indirect
145+
github.com/aws/smithy-go v1.25.0 // indirect
146146
github.com/aymerick/douceur v0.2.0 // indirect
147147
github.com/beorn7/perks v1.0.1 // indirect
148148
github.com/bits-and-blooms/bitset v1.24.4 // indirect
@@ -258,7 +258,7 @@ require (
258258
github.com/sorairolake/lzip-go v0.3.8 // indirect
259259
github.com/spf13/afero v1.15.0 // indirect
260260
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
261-
github.com/tinylib/msgp v1.6.3 // indirect
261+
github.com/tinylib/msgp v1.6.4 // indirect
262262
github.com/unknwon/com v1.0.1 // indirect
263263
github.com/x448/float16 v0.8.4 // indirect
264264
github.com/xanzy/ssh-agent v0.3.3 // indirect

go.sum

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -92,18 +92,18 @@ github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuW
9292
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=
9393
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio=
9494
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
95-
github.com/aws/aws-sdk-go-v2 v1.41.5 h1:dj5kopbwUsVUVFgO4Fi5BIT3t4WyqIDjGKCangnV/yY=
96-
github.com/aws/aws-sdk-go-v2 v1.41.5/go.mod h1:mwsPRE8ceUUpiTgF7QmQIJ7lgsKUPQOUl3o72QBrE1o=
97-
github.com/aws/aws-sdk-go-v2/credentials v1.19.14 h1:n+UcGWAIZHkXzYt87uMFBv/l8THYELoX6gVcUvgl6fI=
98-
github.com/aws/aws-sdk-go-v2/credentials v1.19.14/go.mod h1:cJKuyWB59Mqi0jM3nFYQRmnHVQIcgoxjEMAbLkpr62w=
99-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.21 h1:Rgg6wvjjtX8bNHcvi9OnXWwcE0a2vGpbwmtICOsvcf4=
100-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.21/go.mod h1:A/kJFst/nm//cyqonihbdpQZwiUhhzpqTsdbhDdRF9c=
101-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.21 h1:PEgGVtPoB6NTpPrBgqSE5hE/o47Ij9qk/SEZFbUOe9A=
102-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.21/go.mod h1:p+hz+PRAYlY3zcpJhPwXlLC4C+kqn70WIHwnzAfs6ps=
103-
github.com/aws/aws-sdk-go-v2/service/codecommit v1.33.12 h1:yv3mfWt/eiDTTry6fkN5hh8wHJfU5ygnw+DJp10C0/c=
104-
github.com/aws/aws-sdk-go-v2/service/codecommit v1.33.12/go.mod h1:voO3LP/dZ4CTERiNWCz3DFLbK/8hbfeC1OJkLW+sang=
105-
github.com/aws/smithy-go v1.24.2 h1:FzA3bu/nt/vDvmnkg+R8Xl46gmzEDam6mZ1hzmwXFng=
106-
github.com/aws/smithy-go v1.24.2/go.mod h1:YE2RhdIuDbA5E5bTdciG9KrW3+TiEONeUWCqxX9i1Fc=
95+
github.com/aws/aws-sdk-go-v2 v1.41.6 h1:1AX0AthnBQzMx1vbmir3Y4WsnJgiydmnJjiLu+LvXOg=
96+
github.com/aws/aws-sdk-go-v2 v1.41.6/go.mod h1:dy0UzBIfwSeot4grGvY1AqFWN5zgziMmWGzysDnHFcQ=
97+
github.com/aws/aws-sdk-go-v2/credentials v1.19.15 h1:fyvgWTszojq8hEnMi8PPBTvZdTtEVmAVyo+NFLHBhH4=
98+
github.com/aws/aws-sdk-go-v2/credentials v1.19.15/go.mod h1:gJiYyMOjNg8OEdRWOf3CrFQxM2a98qmrtjx1zuiQfB8=
99+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.22 h1:GmLa5Kw1ESqtFpXsx5MmC84QWa/ZrLZvlJGa2y+4kcQ=
100+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.22/go.mod h1:6sW9iWm9DK9YRpRGga/qzrzNLgKpT2cIxb7Vo2eNOp0=
101+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.22 h1:dY4kWZiSaXIzxnKlj17nHnBcXXBfac6UlsAx2qL6XrU=
102+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.22/go.mod h1:KIpEUx0JuRZLO7U6cbV204cWAEco2iC3l061IxlwLtI=
103+
github.com/aws/aws-sdk-go-v2/service/codecommit v1.33.13 h1:IIW5QmNI9PrnDTBCPa75HcD0g+hoD/a+d388dbIAkEM=
104+
github.com/aws/aws-sdk-go-v2/service/codecommit v1.33.13/go.mod h1:B1FUSufCQp3d8VUzob1EY+AdSo2OuEWNEY6GQff7EHA=
105+
github.com/aws/smithy-go v1.25.0 h1:Sz/XJ64rwuiKtB6j98nDIPyYrV1nVNJ4YU74gttcl5U=
106+
github.com/aws/smithy-go v1.25.0/go.mod h1:YE2RhdIuDbA5E5bTdciG9KrW3+TiEONeUWCqxX9i1Fc=
107107
github.com/aymerick/douceur v0.2.0 h1:Mv+mAeH1Q+n9Fr+oyamOlAkUNPWPlA8PPGR0QAaYuPk=
108108
github.com/aymerick/douceur v0.2.0/go.mod h1:wlT5vV2O3h55X9m7iVYN0TBM0NH/MmbLnd30/FjWUq4=
109109
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
@@ -239,8 +239,8 @@ github.com/dimiro1/reply v0.0.0-20200315094148-d0136a4c9e21/go.mod h1:xJvkyD6Y2r
239239
github.com/dlclark/regexp2 v1.2.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc=
240240
github.com/dlclark/regexp2 v1.4.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc=
241241
github.com/dlclark/regexp2 v1.7.0/go.mod h1:DHkYz0B9wPfa6wondMfaivmHpzrQ3v9q8cnmRbL6yW8=
242-
github.com/dlclark/regexp2 v1.11.5 h1:Q/sSnsKerHeCkc/jSTNq1oCm7KiVgUMZRDUoRu0JQZQ=
243-
github.com/dlclark/regexp2 v1.11.5/go.mod h1:DHkYz0B9wPfa6wondMfaivmHpzrQ3v9q8cnmRbL6yW8=
242+
github.com/dlclark/regexp2 v1.12.0 h1:0j4c5qQmnC6XOWNjP3PIXURXN2gWx76rd3KvgdPkCz8=
243+
github.com/dlclark/regexp2 v1.12.0/go.mod h1:DHkYz0B9wPfa6wondMfaivmHpzrQ3v9q8cnmRbL6yW8=
244244
github.com/dsnet/compress v0.0.2-0.20230904184137-39efe44ab707 h1:2tV76y6Q9BB+NEBasnqvs7e49aEBFI8ejC89PSnWH+4=
245245
github.com/dsnet/compress v0.0.2-0.20230904184137-39efe44ab707/go.mod h1:qssHWj60/X5sZFNxpG4HBPDHVqxNm4DfnCKgrbZOT+s=
246246
github.com/dsnet/golib v0.0.0-20171103203638-1ea166775780/go.mod h1:Lj+Z9rebOhdfkVLjJ8T6VcRQv3SXugXy999NBtR9aFY=
@@ -288,8 +288,8 @@ github.com/go-chi/chi/v5 v5.2.5 h1:Eg4myHZBjyvJmAFjFvWgrqDTXFyOzjj7YIm3L3mu6Ug=
288288
github.com/go-chi/chi/v5 v5.2.5/go.mod h1:X7Gx4mteadT3eDOMTsXzmI4/rwUpOwBHLpAfupzFJP0=
289289
github.com/go-chi/cors v1.2.2 h1:Jmey33TE+b+rB7fT8MUy1u0I4L+NARQlK6LhzKPSyQE=
290290
github.com/go-chi/cors v1.2.2/go.mod h1:sSbTewc+6wYHBBCW7ytsFSn836hqM7JxpglAy2Vzc58=
291-
github.com/go-co-op/gocron/v2 v2.20.0 h1:9IMrnnVSWjfSh3E54gWmWCHbloQJLh6f9+nwyKfLNpc=
292-
github.com/go-co-op/gocron/v2 v2.20.0/go.mod h1:5lEiCKk1oVJV39Zg7/YG10OnaVrDAV5GGR6O0663k6U=
291+
github.com/go-co-op/gocron/v2 v2.21.0 h1:e1nt9AEFglarRH9/9y9q0V5sblwxlknpHPjttEajrwQ=
292+
github.com/go-co-op/gocron/v2 v2.21.0/go.mod h1:5lEiCKk1oVJV39Zg7/YG10OnaVrDAV5GGR6O0663k6U=
293293
github.com/go-enry/go-enry/v2 v2.9.6 h1:np63eOtMV56zfYDHnFVgpEVOk8fr2kmylcMnAZUDbSs=
294294
github.com/go-enry/go-enry/v2 v2.9.6/go.mod h1:9yrj4ES1YrbNb1Wb7/PWYr2bpaCXUGRt0uafN0ISyG8=
295295
github.com/go-enry/go-oniguruma v1.2.1 h1:k8aAMuJfMrqm/56SG2lV9Cfti6tC4x8673aHCcBk+eo=
@@ -325,8 +325,8 @@ github.com/go-test/deep v1.1.1 h1:0r/53hagsehfO4bzD2Pgr/+RgHqhmf+k1Bpse2cTu1U=
325325
github.com/go-test/deep v1.1.1/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE=
326326
github.com/go-viper/mapstructure/v2 v2.5.0 h1:vM5IJoUAy3d7zRSVtIwQgBj7BiWtMPfmPEgAXnvj1Ro=
327327
github.com/go-viper/mapstructure/v2 v2.5.0/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM=
328-
github.com/go-webauthn/webauthn v0.16.4 h1:R9jqR/cYZa7hRquFF7Za/8qoH/K/TIs1/Q/4CyGN+1Q=
329-
github.com/go-webauthn/webauthn v0.16.4/go.mod h1:SU2ljAgToTV/YLPI0C05QS4qn+e04WpB5g1RMfcZfS4=
328+
github.com/go-webauthn/webauthn v0.16.5 h1:x+vADHlaiIjta23kGhtwyCIlB5mayKx6SBlpwQ5NF9A=
329+
github.com/go-webauthn/webauthn v0.16.5/go.mod h1:mQC6L0lZ5Kiu35G70zeB2WnrW4+vbHjR8Koq4HdVaMg=
330330
github.com/go-webauthn/x v0.2.3 h1:8oArS+Rc1SWFLXhE17KZNx258Z4kUSyaDgsSncCO5RA=
331331
github.com/go-webauthn/x v0.2.3/go.mod h1:tM04GF3V6VYq79AZMl7vbj4q6pz9r7L2criWRzbWhPk=
332332
github.com/gobwas/httphead v0.1.0/go.mod h1:O/RXo79gxV8G+RqlR/otEwx4Q36zl9rqC5u12GKvMCM=
@@ -695,8 +695,8 @@ github.com/stvp/tempredis v0.0.0-20181119212430-b82af8480203/go.mod h1:oqN97ltKN
695695
github.com/syndtr/goleveldb v1.0.0 h1:fBdIW9lB4Iz0n9khmH8w27SJ3QEJ7+IgjPEwGSZiFdE=
696696
github.com/syndtr/goleveldb v1.0.0/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ=
697697
github.com/tinylib/msgp v1.1.0/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE=
698-
github.com/tinylib/msgp v1.6.3 h1:bCSxiTz386UTgyT1i0MSCvdbWjVW+8sG3PjkGsZQt4s=
699-
github.com/tinylib/msgp v1.6.3/go.mod h1:RSp0LW9oSxFut3KzESt5Voq4GVWyS+PSulT77roAqEA=
698+
github.com/tinylib/msgp v1.6.4 h1:mOwYbyYDLPj35mkA2BjjYejgJk9BuHxDdvRnb6v2ZcQ=
699+
github.com/tinylib/msgp v1.6.4/go.mod h1:RSp0LW9oSxFut3KzESt5Voq4GVWyS+PSulT77roAqEA=
700700
github.com/tstranex/u2f v1.0.0 h1:HhJkSzDDlVSVIVt7pDJwCHQj67k7A5EeBgPmeD+pVsQ=
701701
github.com/tstranex/u2f v1.0.0/go.mod h1:eahSLaqAS0zsIEv80+vXT7WanXs7MQQDg3j3wGBSayo=
702702
github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0=

0 commit comments

Comments
 (0)