Skip to content

Commit f67b42f

Browse files
committed
update dependencies
1 parent a03373a commit f67b42f

File tree

7 files changed

+111
-66
lines changed

7 files changed

+111
-66
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/checkout@v5
2525

2626
- name: Set up Go 1.x
27-
uses: actions/setup-go@v5
27+
uses: actions/setup-go@v6
2828
with:
2929
go-version-file: './go.mod'
3030
check-latest: true

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343

4444
- name: Set up Go 1.x
45-
uses: actions/setup-go@v5
45+
uses: actions/setup-go@v6
4646
with:
4747
go-version-file: './go.mod'
4848
check-latest: true

configuration.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,10 @@ func homeDir() (home string) {
4141
}
4242

4343
if home == "" {
44-
if runtime.GOOS == "plan9" {
44+
switch runtime.GOOS {
45+
case "plan9":
4546
home = os.Getenv("home")
46-
} else if runtime.GOOS == "windows" {
47+
case "windows":
4748
home = os.Getenv("HOMEDRIVE") + os.Getenv("HOMEPATH")
4849
if home == "" {
4950
home = os.Getenv("USERPROFILE")

context/context.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2956,6 +2956,8 @@ const CSRFTokenFormKey = "csrf.token"
29562956
// It supports any kind of type, including custom structs.
29572957
// It will return nothing if request data are empty.
29582958
// The struct field tag is "form".
2959+
// If tag is missing it tries to bind using the field's name.
2960+
// To ignore a specific field from binding use tag value "-".
29592961
// Note that it will return nil error on empty form data if `Configuration.FireEmptyFormError`
29602962
// is false (as defaulted) in this case the caller should check the pointer to
29612963
// see if something was actually binded.
@@ -3122,6 +3124,8 @@ func distinctStrings(values []string) []string {
31223124
}
31233125

31243126
// ReadQuery binds URL Query to "ptr". The struct field tag is "url".
3127+
// If tag is missing it tries to bind using the field's name.
3128+
// To ignore a specific field from binding use tag value "-".
31253129
//
31263130
// Example: https://github.com/kataras/iris/blob/main/_examples/request-body/read-query/main.go
31273131
func (ctx *Context) ReadQuery(ptr any) error {

go.mod

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,20 @@ require (
3232
github.com/mailgun/raymond/v2 v2.0.48
3333
github.com/mailru/easyjson v0.9.0
3434
github.com/microcosm-cc/bluemonday v1.0.27
35-
github.com/redis/go-redis/v9 v9.12.1
35+
github.com/redis/go-redis/v9 v9.14.0
3636
github.com/schollz/closestmatch v2.1.0+incompatible
3737
github.com/shirou/gopsutil/v3 v3.24.5
38-
github.com/tdewolff/minify/v2 v2.23.11
38+
github.com/tdewolff/minify/v2 v2.24.3
3939
github.com/vmihailenco/msgpack/v5 v5.4.1
4040
github.com/yosssi/ace v0.0.5
41-
go.etcd.io/bbolt v1.4.2
42-
golang.org/x/crypto v0.41.0
43-
golang.org/x/exp v0.0.0-20250813145105-42675adae3e6
44-
golang.org/x/net v0.43.0
45-
golang.org/x/sys v0.35.0
46-
golang.org/x/text v0.28.0
47-
golang.org/x/time v0.12.0
48-
google.golang.org/protobuf v1.36.7
41+
go.etcd.io/bbolt v1.4.3
42+
golang.org/x/crypto v0.42.0
43+
golang.org/x/exp v0.0.0-20250911091902-df9299821621
44+
golang.org/x/net v0.44.0
45+
golang.org/x/sys v0.36.0
46+
golang.org/x/text v0.29.0
47+
golang.org/x/time v0.13.0
48+
google.golang.org/protobuf v1.36.9
4949
gopkg.in/ini.v1 v1.67.0
5050
gopkg.in/yaml.v3 v3.0.1
5151
)
@@ -56,7 +56,7 @@ require (
5656
github.com/aymerick/douceur v0.2.0 // indirect
5757
github.com/cespare/xxhash/v2 v2.3.0 // indirect
5858
github.com/davecgh/go-spew v1.1.1 // indirect
59-
github.com/dgraph-io/ristretto/v2 v2.2.0 // indirect
59+
github.com/dgraph-io/ristretto/v2 v2.3.0 // indirect
6060
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
6161
github.com/dustin/go-humanize v1.0.1 // indirect
6262
github.com/fatih/color v1.18.0 // indirect
@@ -73,14 +73,14 @@ require (
7373
github.com/gorilla/websocket v1.5.3 // indirect
7474
github.com/imkira/go-interpol v1.1.0 // indirect
7575
github.com/josharian/intern v1.0.0 // indirect
76-
github.com/lufia/plan9stats v0.0.0-20250317134145-8bc96cf8fc35 // indirect
76+
github.com/lufia/plan9stats v0.0.0-20250827001030-24949be3fa54 // indirect
7777
github.com/mattn/go-colorable v0.1.14 // indirect
7878
github.com/mattn/go-isatty v0.0.20 // indirect
7979
github.com/mediocregopher/radix/v3 v3.8.1 // indirect
8080
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
8181
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
8282
github.com/modern-go/reflect2 v1.0.2 // indirect
83-
github.com/nats-io/nats.go v1.44.0 // indirect
83+
github.com/nats-io/nats.go v1.45.0 // indirect
8484
github.com/nats-io/nkeys v0.4.11 // indirect
8585
github.com/nats-io/nuid v1.0.1 // indirect
8686
github.com/nxadm/tail v1.4.11 // indirect
@@ -91,8 +91,8 @@ require (
9191
github.com/sergi/go-diff v1.4.0 // indirect
9292
github.com/shoenig/go-m1cpu v0.1.6 // indirect
9393
github.com/sirupsen/logrus v1.9.3 // indirect
94-
github.com/stretchr/testify v1.10.0 // indirect
95-
github.com/tdewolff/parse/v2 v2.8.2-0.20250806174018-50048bb39781 // indirect
94+
github.com/stretchr/testify v1.11.1 // indirect
95+
github.com/tdewolff/parse/v2 v2.8.3 // indirect
9696
github.com/tklauser/go-sysconf v0.3.15 // indirect
9797
github.com/tklauser/numcpus v0.10.0 // indirect
9898
github.com/valyala/bytebufferpool v1.0.0 // indirect
@@ -104,10 +104,10 @@ require (
104104
github.com/yudai/gojsondiff v1.0.0 // indirect
105105
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
106106
github.com/yusufpapurcu/wmi v1.2.4 // indirect
107-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
108-
go.opentelemetry.io/otel v1.37.0 // indirect
109-
go.opentelemetry.io/otel/metric v1.37.0 // indirect
110-
go.opentelemetry.io/otel/trace v1.37.0 // indirect
107+
go.opentelemetry.io/auto/sdk v1.2.0 // indirect
108+
go.opentelemetry.io/otel v1.38.0 // indirect
109+
go.opentelemetry.io/otel/metric v1.38.0 // indirect
110+
go.opentelemetry.io/otel/trace v1.38.0 // indirect
111111
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
112112
moul.io/http2curl/v2 v2.3.0 // indirect
113113
)

go.sum

Lines changed: 42 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)