chore: bump Go dependencies
This commit is contained in:
parent
b3d1e4cf13
commit
e118df5dfd
1119 changed files with 126580 additions and 8706 deletions
13
vendor/github.com/labstack/echo/v4/CHANGELOG.md
generated
vendored
13
vendor/github.com/labstack/echo/v4/CHANGELOG.md
generated
vendored
|
|
@ -1,5 +1,18 @@
|
|||
# Changelog
|
||||
|
||||
## v4.13.4 - 2025-05-22
|
||||
|
||||
**Enhancements**
|
||||
|
||||
* chore: fix some typos in comment by @zhuhaicity in https://github.com/labstack/echo/pull/2735
|
||||
* CI: test with Go 1.24 by @aldas in https://github.com/labstack/echo/pull/2748
|
||||
* Add support for TLS WebSocket proxy by @t-ibayashi-safie in https://github.com/labstack/echo/pull/2762
|
||||
|
||||
**Security**
|
||||
|
||||
* Update dependencies for [GO-2025-3487](https://pkg.go.dev/vuln/GO-2025-3487), [GO-2025-3503](https://pkg.go.dev/vuln/GO-2025-3503) and [GO-2025-3595](https://pkg.go.dev/vuln/GO-2025-3595) in https://github.com/labstack/echo/pull/2780
|
||||
|
||||
|
||||
## v4.13.3 - 2024-12-19
|
||||
|
||||
**Security**
|
||||
|
|
|
|||
4
vendor/github.com/labstack/echo/v4/Makefile
generated
vendored
4
vendor/github.com/labstack/echo/v4/Makefile
generated
vendored
|
|
@ -31,6 +31,6 @@ benchmark: ## Run benchmarks
|
|||
help: ## Display this help screen
|
||||
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
||||
|
||||
goversion ?= "1.20"
|
||||
test_version: ## Run tests inside Docker with given version (defaults to 1.20 oldest supported). Example: make test_version goversion=1.20
|
||||
goversion ?= "1.21"
|
||||
test_version: ## Run tests inside Docker with given version (defaults to 1.21 oldest supported). Example: make test_version goversion=1.21
|
||||
@docker run --rm -it -v $(shell pwd):/project golang:$(goversion) /bin/sh -c "cd /project && make init check"
|
||||
|
|
|
|||
2
vendor/github.com/labstack/echo/v4/bind.go
generated
vendored
2
vendor/github.com/labstack/echo/v4/bind.go
generated
vendored
|
|
@ -269,7 +269,7 @@ func (b *DefaultBinder) bindData(destination interface{}, data map[string][]stri
|
|||
continue
|
||||
}
|
||||
|
||||
// we could be dealing with pointer to slice `*[]string` so dereference it. There are wierd OpenAPI generators
|
||||
// we could be dealing with pointer to slice `*[]string` so dereference it. There are weird OpenAPI generators
|
||||
// that could create struct fields like that.
|
||||
if structFieldKind == reflect.Pointer {
|
||||
structFieldKind = structField.Elem().Kind()
|
||||
|
|
|
|||
2
vendor/github.com/labstack/echo/v4/echo.go
generated
vendored
2
vendor/github.com/labstack/echo/v4/echo.go
generated
vendored
|
|
@ -259,7 +259,7 @@ const (
|
|||
|
||||
const (
|
||||
// Version of Echo
|
||||
Version = "4.13.3"
|
||||
Version = "4.13.4"
|
||||
website = "https://echo.labstack.com"
|
||||
// http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo
|
||||
banner = `
|
||||
|
|
|
|||
2
vendor/github.com/labstack/echo/v4/ip.go
generated
vendored
2
vendor/github.com/labstack/echo/v4/ip.go
generated
vendored
|
|
@ -24,7 +24,7 @@ To retrieve IP address reliably/securely, you must let your application be aware
|
|||
In Echo, this can be done by configuring `Echo#IPExtractor` appropriately.
|
||||
This guides show you why and how.
|
||||
|
||||
> Note: if you dont' set `Echo#IPExtractor` explicitly, Echo fallback to legacy behavior, which is not a good choice.
|
||||
> Note: if you don't set `Echo#IPExtractor` explicitly, Echo fallback to legacy behavior, which is not a good choice.
|
||||
|
||||
Let's start from two questions to know the right direction:
|
||||
|
||||
|
|
|
|||
23
vendor/github.com/labstack/echo/v4/middleware/proxy.go
generated
vendored
23
vendor/github.com/labstack/echo/v4/middleware/proxy.go
generated
vendored
|
|
@ -5,6 +5,7 @@ package middleware
|
|||
|
||||
import (
|
||||
"context"
|
||||
"crypto/tls"
|
||||
"fmt"
|
||||
"io"
|
||||
"math/rand"
|
||||
|
|
@ -130,7 +131,21 @@ var DefaultProxyConfig = ProxyConfig{
|
|||
ContextKey: "target",
|
||||
}
|
||||
|
||||
func proxyRaw(t *ProxyTarget, c echo.Context) http.Handler {
|
||||
func proxyRaw(t *ProxyTarget, c echo.Context, config ProxyConfig) http.Handler {
|
||||
var dialFunc func(ctx context.Context, network, addr string) (net.Conn, error)
|
||||
if transport, ok := config.Transport.(*http.Transport); ok {
|
||||
if transport.TLSClientConfig != nil {
|
||||
d := tls.Dialer{
|
||||
Config: transport.TLSClientConfig,
|
||||
}
|
||||
dialFunc = d.DialContext
|
||||
}
|
||||
}
|
||||
if dialFunc == nil {
|
||||
var d net.Dialer
|
||||
dialFunc = d.DialContext
|
||||
}
|
||||
|
||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
in, _, err := c.Response().Hijack()
|
||||
if err != nil {
|
||||
|
|
@ -138,13 +153,11 @@ func proxyRaw(t *ProxyTarget, c echo.Context) http.Handler {
|
|||
return
|
||||
}
|
||||
defer in.Close()
|
||||
|
||||
out, err := net.Dial("tcp", t.URL.Host)
|
||||
out, err := dialFunc(c.Request().Context(), "tcp", t.URL.Host)
|
||||
if err != nil {
|
||||
c.Set("_error", echo.NewHTTPError(http.StatusBadGateway, fmt.Sprintf("proxy raw, dial error=%v, url=%s", err, t.URL)))
|
||||
return
|
||||
}
|
||||
defer out.Close()
|
||||
|
||||
// Write header
|
||||
err = r.Write(out)
|
||||
|
|
@ -365,7 +378,7 @@ func ProxyWithConfig(config ProxyConfig) echo.MiddlewareFunc {
|
|||
// Proxy
|
||||
switch {
|
||||
case c.IsWebSocket():
|
||||
proxyRaw(tgt, c).ServeHTTP(res, req)
|
||||
proxyRaw(tgt, c, config).ServeHTTP(res, req)
|
||||
default: // even SSE requests
|
||||
proxyHTTP(tgt, c, config).ServeHTTP(res, req)
|
||||
}
|
||||
|
|
|
|||
2
vendor/github.com/labstack/echo/v4/middleware/rate_limiter.go
generated
vendored
2
vendor/github.com/labstack/echo/v4/middleware/rate_limiter.go
generated
vendored
|
|
@ -191,7 +191,7 @@ NewRateLimiterMemoryStoreWithConfig returns an instance of RateLimiterMemoryStor
|
|||
with the provided configuration. Rate must be provided. Burst will be set to the rounded down value of
|
||||
the configured rate if not provided or set to 0.
|
||||
|
||||
The build-in memory store is usually capable for modest loads. For higher loads other
|
||||
The built-in memory store is usually capable for modest loads. For higher loads other
|
||||
store implementations should be considered.
|
||||
|
||||
Characteristics:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue