Skip to content

Commit e9a7ba0

Browse files
fix(deps): update module github.com/gofiber/fiber/v3 to v3.1.0 (#471)
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [github.com/gofiber/fiber/v3](https://redirect.github.com/gofiber/fiber) | `v3.0.0` → `v3.1.0` | ![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgofiber%2ffiber%2fv3/v3.1.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgofiber%2ffiber%2fv3/v3.0.0/v3.1.0?slim=true) | --- ### Release Notes <details> <summary>gofiber/fiber (github.com/gofiber/fiber/v3)</summary> ### [`v3.1.0`](https://redirect.github.com/gofiber/fiber/releases/tag/v3.1.0) [Compare Source](https://redirect.github.com/gofiber/fiber/compare/v3.0.0...v3.1.0) #### 🚀 New - expand middleware context helpers ([#&#8203;4079](https://redirect.github.com/gofiber/fiber/issues/4079)) ```go app := fiber.New(fiber.Config{ PassLocalsToContext: true, // default: false }) // Works for requestid, csrf, session, basicauth, keyauth middlewares app.Use(requestid.New()) app.Get("/", func(ctx fiber.Ctx) error { // Value helpers from middlewares works now with 3 different context items id := requestid.FromContext(ctx) // works always id := requestid.FromContext(ctx.RequestCtx()) // works always id := requestid.FromContext(ctx.Context()) // works only when `PassLocalsToContext` is true return c.SendString(id) }) ``` <https://docs.gofiber.io/api/fiber/#passlocalstocontext> #### 🧹 Updates - update utils and add go 1.26 for test workflow ([#&#8203;4087](https://redirect.github.com/gofiber/fiber/issues/4087)) - optimize helpers performance ([#&#8203;4049](https://redirect.github.com/gofiber/fiber/issues/4049)) - harden numeric constraint parsing and expand route tests ([#&#8203;4054](https://redirect.github.com/gofiber/fiber/issues/4054)) #### 🐛 Fixes - harden DefaultRes.Format against nil handler panics ([#&#8203;4105](https://redirect.github.com/gofiber/fiber/issues/4105)) - guard nil request in adaptor LocalContextFromHTTPRequest ([#&#8203;4097](https://redirect.github.com/gofiber/fiber/issues/4097)) - fix Unix-socket support in IsProxyTrusted ([#&#8203;4088](https://redirect.github.com/gofiber/fiber/issues/4088)) - harden proxy nil client handling in Do/Forward paths ([#&#8203;4083](https://redirect.github.com/gofiber/fiber/issues/4083)) - add nil-safety to response decode helpers ([#&#8203;4081](https://redirect.github.com/gofiber/fiber/issues/4081)) - sanitize attachment/download filenames ([#&#8203;4070](https://redirect.github.com/gofiber/fiber/issues/4070)) - harden flash cookie detection ([#&#8203;4078](https://redirect.github.com/gofiber/fiber/issues/4078)) - fix bind struct validation only for struct targets ([#&#8203;4082](https://redirect.github.com/gofiber/fiber/issues/4082)) - enforce Range header limit configuration ([#&#8203;4071](https://redirect.github.com/gofiber/fiber/issues/4071)) - apply limits to msgp serialization ([#&#8203;4065](https://redirect.github.com/gofiber/fiber/issues/4065)) - fix sanitizePath validation logic ([#&#8203;4064](https://redirect.github.com/gofiber/fiber/issues/4064)) - fix Test method returning empty response on timeout ([#&#8203;4063](https://redirect.github.com/gofiber/fiber/issues/4063)) - fix nil pointer dereference in context methods when accessed after release ([#&#8203;4062](https://redirect.github.com/gofiber/fiber/issues/4062)) - retry addon: remove unnecessary sleep after last failed attempt ([#&#8203;4060](https://redirect.github.com/gofiber/fiber/issues/4060)) - make TLS listener config discovery safer ([#&#8203;4055](https://redirect.github.com/gofiber/fiber/issues/4055)) - validate nil services early and during lifecycle ([#&#8203;4050](https://redirect.github.com/gofiber/fiber/issues/4050)) - skip non-string state keys during iteration ([#&#8203;4048](https://redirect.github.com/gofiber/fiber/issues/4048)) - harden Port() handling ([#&#8203;4051](https://redirect.github.com/gofiber/fiber/issues/4051)) - prevent panics on non-string log keys ([#&#8203;4046](https://redirect.github.com/gofiber/fiber/issues/4046)) #### 🛠️ Maintenance - bump streetsidesoftware/cspell-action from 8.2.0 to 8.3.0 ([#&#8203;4111](https://redirect.github.com/gofiber/fiber/issues/4111)) - bump the golang-modules group with 3 updates ([#&#8203;4080](https://redirect.github.com/gofiber/fiber/issues/4080)) - bump github.com/shamaton/msgpack/v3 from 3.0.0 to 3.1.0 ([#&#8203;4075](https://redirect.github.com/gofiber/fiber/issues/4075)) - bump github.com/klauspost/compress from 1.18.3 to 1.18.4 ([#&#8203;4076](https://redirect.github.com/gofiber/fiber/issues/4076)) - bump github.com/gofiber/schema from 1.6.0 to 1.7.0 ([#&#8203;4074](https://redirect.github.com/gofiber/fiber/issues/4074)) - bump golang.org/x/sys from 0.40.0 to 0.41.0 in the golang-modules group ([#&#8203;4073](https://redirect.github.com/gofiber/fiber/issues/4073)) - bump github/codeql-action from 4.32.3 to 4.32.4 ([#&#8203;4104](https://redirect.github.com/gofiber/fiber/issues/4104)) - bump github/codeql-action from 4.32.1 to 4.32.2 ([#&#8203;4058](https://redirect.github.com/gofiber/fiber/issues/4058)) - bump github/codeql-action from 4.32.0 to 4.32.1 ([#&#8203;4047](https://redirect.github.com/gofiber/fiber/issues/4047)) #### 📚 Documentation - update versioned storage imports in middleware docs ([#&#8203;4102](https://redirect.github.com/gofiber/fiber/issues/4102)) - update documentation for parser configuration and request handling ([#&#8203;4096](https://redirect.github.com/gofiber/fiber/issues/4096)) - fix invalid Go slice literal in middleware registration example ([#&#8203;4095](https://redirect.github.com/gofiber/fiber/issues/4095)) - document `uri` struct tag for `ctx.Bind().URI()` in migration guide ([#&#8203;4092](https://redirect.github.com/gofiber/fiber/issues/4092)) - document logger Stream rename ([#&#8203;4057](https://redirect.github.com/gofiber/fiber/issues/4057)) **📒 Documentation**: <https://docs.gofiber.io/next/> **💬 Discord**: <https://gofiber.io/discord> **Full Changelog**: <gofiber/fiber@v3.0.0...v3.1.0> Thank you [@&#8203;ReneWerner87](https://redirect.github.com/ReneWerner87), [@&#8203;SadikSunbul](https://redirect.github.com/SadikSunbul), [@&#8203;gaby](https://redirect.github.com/gaby) and [@&#8203;sixcolors](https://redirect.github.com/sixcolors) for making this release possible. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/netresearch/ldap-selfservice-password-changer). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4zMi4wIiwidXBkYXRlZEluVmVyIjoiNDMuMzIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
2 parents 18d54bf + d6a5243 commit e9a7ba0

File tree

2 files changed

+24
-8
lines changed

2 files changed

+24
-8
lines changed

go.mod

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/netresearch/ldap-selfservice-password-changer
33
go 1.26
44

55
require (
6-
github.com/gofiber/fiber/v3 v3.0.0
6+
github.com/gofiber/fiber/v3 v3.1.0
77
github.com/joho/godotenv v1.5.1
88
github.com/netresearch/simple-ldap-go v1.8.0
99
github.com/stretchr/testify v1.11.1
@@ -35,10 +35,10 @@ require (
3535
github.com/go-logr/logr v1.4.3 // indirect
3636
github.com/go-logr/stdr v1.2.2 // indirect
3737
github.com/go-ole/go-ole v1.3.0 // indirect
38-
github.com/gofiber/schema v1.6.0 // indirect
39-
github.com/gofiber/utils/v2 v2.0.0 // indirect
38+
github.com/gofiber/schema v1.7.0 // indirect
39+
github.com/gofiber/utils/v2 v2.0.2 // indirect
4040
github.com/google/uuid v1.6.0 // indirect
41-
github.com/klauspost/compress v1.18.3 // indirect
41+
github.com/klauspost/compress v1.18.4 // indirect
4242
github.com/lufia/plan9stats v0.0.0-20251013123823-9fd1530e3ec3 // indirect
4343
github.com/magiconair/properties v1.8.10 // indirect
4444
github.com/mattn/go-colorable v0.1.14 // indirect
@@ -71,9 +71,9 @@ require (
7171
go.opentelemetry.io/otel v1.40.0 // indirect
7272
go.opentelemetry.io/otel/metric v1.40.0 // indirect
7373
go.opentelemetry.io/otel/trace v1.40.0 // indirect
74-
golang.org/x/crypto v0.47.0 // indirect
75-
golang.org/x/net v0.49.0 // indirect
76-
golang.org/x/sys v0.40.0 // indirect
77-
golang.org/x/text v0.33.0 // indirect
74+
golang.org/x/crypto v0.48.0 // indirect
75+
golang.org/x/net v0.50.0 // indirect
76+
golang.org/x/sys v0.41.0 // indirect
77+
golang.org/x/text v0.34.0 // indirect
7878
gopkg.in/yaml.v3 v3.0.1 // indirect
7979
)

go.sum

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,16 @@ github.com/go-ole/go-ole v1.3.0 h1:Dt6ye7+vXGIKZ7Xtk4s6/xVdGDQynvom7xCFEdWr6uE=
5858
github.com/go-ole/go-ole v1.3.0/go.mod h1:5LS6F96DhAwUc7C+1HLexzMXY1xGRSryjyPPKW6zv78=
5959
github.com/gofiber/fiber/v3 v3.0.0 h1:GPeCG8X60L42wLKrzgeewDHBr6pE6veAvwaXsqD3Xjk=
6060
github.com/gofiber/fiber/v3 v3.0.0/go.mod h1:kVZiO/AwyT5Pq6PgC8qRCJ+j/BHrMy5jNw1O9yH38aY=
61+
github.com/gofiber/fiber/v3 v3.1.0 h1:1p4I820pIa+FGxfwWuQZ5rAyX0WlGZbGT6Hnuxt6hKY=
62+
github.com/gofiber/fiber/v3 v3.1.0/go.mod h1:n2nYQovvL9z3Too/FGOfgtERjW3GQcAUqgfoezGBZdU=
6163
github.com/gofiber/schema v1.6.0 h1:rAgVDFwhndtC+hgV7Vu5ItQCn7eC2mBA4Eu1/ZTiEYY=
6264
github.com/gofiber/schema v1.6.0/go.mod h1:WNZWpQx8LlPSK7ZaX0OqOh+nQo/eW2OevsXs1VZfs/s=
65+
github.com/gofiber/schema v1.7.0 h1:yNM+FNRZjyYEli9Ey0AXRBrAY9jTnb+kmGs3lJGPvKg=
66+
github.com/gofiber/schema v1.7.0/go.mod h1:A/X5Ffyru4p9eBdp99qu+nzviHzQiZ7odLT+TwxWhbk=
6367
github.com/gofiber/utils/v2 v2.0.0 h1:SCC3rpsEDWupFSHtc0RKxg/BKgV0s1qKfZg9Jv6D0sM=
6468
github.com/gofiber/utils/v2 v2.0.0/go.mod h1:xF9v89FfmbrYqI/bQUGN7gR8ZtXot2jxnZvmAUtiavE=
69+
github.com/gofiber/utils/v2 v2.0.2 h1:ShRRssz0F3AhTlAQcuEj54OEDtWF7+HJDwEi/aa6QLI=
70+
github.com/gofiber/utils/v2 v2.0.2/go.mod h1:+9Ub4NqQ+IaJoTliq5LfdmOJAA/Hzwf4pXOxOa3RrJ0=
6571
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
6672
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
6773
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
@@ -86,6 +92,8 @@ github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0=
8692
github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4=
8793
github.com/klauspost/compress v1.18.3 h1:9PJRvfbmTabkOX8moIpXPbMMbYN60bWImDDU7L+/6zw=
8894
github.com/klauspost/compress v1.18.3/go.mod h1:R0h/fSBs8DE4ENlcrlib3PsXS61voFxhIs2DeRhCvJ4=
95+
github.com/klauspost/compress v1.18.4 h1:RPhnKRAQ4Fh8zU2FY/6ZFDwTVTxgJ/EMydqSTzE9a2c=
96+
github.com/klauspost/compress v1.18.4/go.mod h1:R0h/fSBs8DE4ENlcrlib3PsXS61voFxhIs2DeRhCvJ4=
8997
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
9098
github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
9199
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
@@ -184,19 +192,27 @@ go.opentelemetry.io/proto/otlp v1.0.0 h1:T0TX0tmXU8a3CbNXzEKGeU5mIVOdf0oykP+u2lI
184192
go.opentelemetry.io/proto/otlp v1.0.0/go.mod h1:Sy6pihPLfYHkr3NkUbEhGHFhINUSI/v80hjKIs5JXpM=
185193
golang.org/x/crypto v0.47.0 h1:V6e3FRj+n4dbpw86FJ8Fv7XVOql7TEwpHapKoMJ/GO8=
186194
golang.org/x/crypto v0.47.0/go.mod h1:ff3Y9VzzKbwSSEzWqJsJVBnWmRwRSHt/6Op5n9bQc4A=
195+
golang.org/x/crypto v0.48.0 h1:/VRzVqiRSggnhY7gNRxPauEQ5Drw9haKdM0jqfcCFts=
196+
golang.org/x/crypto v0.48.0/go.mod h1:r0kV5h3qnFPlQnBSrULhlsRfryS2pmewsg+XfMgkVos=
187197
golang.org/x/net v0.49.0 h1:eeHFmOGUTtaaPSGNmjBKpbng9MulQsJURQUAfUwY++o=
188198
golang.org/x/net v0.49.0/go.mod h1:/ysNB2EvaqvesRkuLAyjI1ycPZlQHM3q01F02UY/MV8=
199+
golang.org/x/net v0.50.0 h1:ucWh9eiCGyDR3vtzso0WMQinm2Dnt8cFMuQa9K33J60=
200+
golang.org/x/net v0.50.0/go.mod h1:UgoSli3F/pBgdJBHCTc+tp3gmrU4XswgGRgtnwWTfyM=
189201
golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
190202
golang.org/x/sys v0.0.0-20201204225414-ed752295db88/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
191203
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
192204
golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
193205
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
194206
golang.org/x/sys v0.40.0 h1:DBZZqJ2Rkml6QMQsZywtnjnnGvHza6BTfYFWY9kjEWQ=
195207
golang.org/x/sys v0.40.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
208+
golang.org/x/sys v0.41.0 h1:Ivj+2Cp/ylzLiEU89QhWblYnOE9zerudt9Ftecq2C6k=
209+
golang.org/x/sys v0.41.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
196210
golang.org/x/term v0.39.0 h1:RclSuaJf32jOqZz74CkPA9qFuVTX7vhLlpfj/IGWlqY=
197211
golang.org/x/term v0.39.0/go.mod h1:yxzUCTP/U+FzoxfdKmLaA0RV1WgE0VY7hXBwKtY/4ww=
198212
golang.org/x/text v0.33.0 h1:B3njUFyqtHDUI5jMn1YIr5B0IE2U0qck04r6d4KPAxE=
199213
golang.org/x/text v0.33.0/go.mod h1:LuMebE6+rBincTi9+xWTY8TztLzKHc/9C1uBCG27+q8=
214+
golang.org/x/text v0.34.0 h1:oL/Qq0Kdaqxa1KbNeMKwQq0reLCCaFtqu2eNuSeNHbk=
215+
golang.org/x/text v0.34.0/go.mod h1:homfLqTYRFyVYemLBFl5GgL/DWEiH5wcsQ5gSh1yziA=
200216
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 h1:vVKdlvoWBphwdxWKrFZEuM0kGgGLxUOYcY4U/2Vjg44=
201217
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
202218
google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 h1:wKguEg1hsxI2/L3hUYrpo1RVi48K+uTyzKqprwLXsb8=

0 commit comments

Comments
 (0)