1
0
mirror of https://github.com/labstack/echo.git synced 2024-11-24 08:22:21 +02:00
echo/middleware
teslaedison 34717b717d
fix some typos (#2603)
Signed-off-by: teslaedison <qingchengqiushuang@gmail.com>
2024-03-06 21:43:59 +02:00
..
basic_auth_test.go Add Skipper Unit Test In BasicBasicAuthConfig and Add More Detail Explanation regarding BasicAuthValidator (#2461) 2024-02-18 15:47:13 +02:00
basic_auth.go Add Skipper Unit Test In BasicBasicAuthConfig and Add More Detail Explanation regarding BasicAuthValidator (#2461) 2024-02-18 15:47:13 +02:00
body_dump_test.go Replace "io/ioutil" 2022-11-21 15:59:14 +02:00
body_dump.go Replace "io/ioutil" 2022-11-21 15:59:14 +02:00
body_limit_test.go delete unused context in body_limit.go (#2483) 2023-07-21 11:07:25 +03:00
body_limit.go delete unused context in body_limit.go (#2483) 2023-07-21 11:07:25 +03:00
compress_test.go fix gzip not sending response code for no content responses (404, 301/302 redirects etc) 2023-07-16 20:35:09 +03:00
compress.go fix gzip not sending response code for no content responses (404, 301/302 redirects etc) 2023-07-16 20:35:09 +03:00
context_timeout_test.go Clean on go1.20 (#2406) 2023-02-22 00:00:52 +02:00
context_timeout.go fix some typos (#2511) 2023-09-13 22:41:58 +03:00
cors_test.go cors middleware: allow sending Access-Control-Max-Age: 0 value with config.MaxAge being negative number. (#2518) 2023-09-19 08:24:47 +03:00
cors.go Mark unmarshallable yaml struct tags as ignored (#2536) 2023-10-24 21:12:13 +03:00
csrf_test.go CSRF/RequestID mw: switch math/random usage to crypto/random 2023-07-21 13:10:56 +03:00
csrf.go CSRF/RequestID mw: switch math/random usage to crypto/random 2023-07-21 13:10:56 +03:00
decompress_test.go Remove default charset from 'application/json' Content-Type header (#2568) 2024-02-06 07:41:33 +02:00
decompress.go gofmt fixes to comments 2023-05-12 22:14:29 +03:00
extractor_test.go Expose middleware.CreateExtractors function so we can use it from echo-contrib repository 2022-11-12 23:34:04 +02:00
extractor.go Expose middleware.CreateExtractors function so we can use it from echo-contrib repository 2022-11-12 23:34:04 +02:00
jwt_test.go refactor assertions (#2301) 2022-10-12 21:47:21 +03:00
jwt.go use different variable name so returned function would not accidentally be able to use it in future and cause data race 2023-02-22 00:05:31 +02:00
key_auth_test.go JWT, KeyAuth, CSRF multivalue extractors (#2060) 2022-01-24 22:03:45 +02:00
key_auth.go use different variable name so returned function would not accidentally be able to use it in future and cause data race 2023-02-22 00:05:31 +02:00
logger_test.go Add request route with "route" tag to logger middleware (#2162) 2022-12-04 19:38:45 +01:00
logger.go Add request route with "route" tag to logger middleware (#2162) 2022-12-04 19:38:45 +01:00
method_override_test.go Introduced Go module support as v4, removed obsolete CloseNotifier() mechanism 2019-01-30 16:11:42 +02:00
method_override.go Introduced Go module support as v4, removed obsolete CloseNotifier() mechanism 2019-01-30 16:11:42 +02:00
middleware_test.go Allow proxy middleware to use query part in rewrite (fix #1798) (#1802) 2021-03-09 13:22:11 +01:00
middleware.go refactor: use strings.ReplaceAll directly 2023-03-31 20:59:08 +03:00
proxy_test.go proxy middleware: reuse echo request context (#2537) 2023-11-05 18:01:01 +02:00
proxy.go proxy middleware: reuse echo request context (#2537) 2023-11-05 18:01:01 +02:00
rate_limiter_test.go CSRF/RequestID mw: switch math/random usage to crypto/random 2023-07-21 13:10:56 +03:00
rate_limiter.go do not use global timeNow variables (#2477) 2023-07-11 23:36:05 +03:00
recover_test.go Added a optional config variable to disable centralized error handler in recovery middleware (#2410) 2023-02-24 13:09:40 +02:00
recover.go Check whether is nil before invoking centralized error handling. 2023-04-15 21:48:33 +03:00
redirect_test.go Fix panic in redirect middleware on short host name (fix #1811) (#1813) 2021-04-06 09:11:31 +02:00
redirect.go Fix panic in redirect middleware on short host name (fix #1811) (#1813) 2021-04-06 09:11:31 +02:00
request_id_test.go Add support for configurable target header for the request_id middleware 2021-12-07 21:34:16 +02:00
request_id.go CSRF/RequestID mw: switch math/random usage to crypto/random 2023-07-21 13:10:56 +03:00
request_logger_test.go fix some typos (#2603) 2024-03-06 21:43:59 +02:00
request_logger.go request logger: add example for Slog https://pkg.go.dev/log/slog (#2543) 2023-11-07 15:09:43 +02:00
rewrite_test.go Replace "io/ioutil" 2022-11-21 15:59:14 +02:00
rewrite.go Mark unmarshallable yaml struct tags as ignored (#2536) 2023-10-24 21:12:13 +03:00
secure_test.go Add ReferrerPolicy to Secure middleware (#1363) 2019-08-01 15:27:09 -07:00
secure.go Add ReferrerPolicy to Secure middleware (#1363) 2019-08-01 15:27:09 -07:00
slash_test.go Fix open redirect vulnerability with AddTrailingSlashWithConfig and RemoveTrailingSlashWithConfig (#1775,#1771) 2021-02-11 14:53:22 +01:00
slash.go Modify comment syntax error 2022-11-12 23:56:47 +02:00
static_other.go Clean on go1.20 (#2406) 2023-02-22 00:00:52 +02:00
static_test.go Fix #2259 open redirect vulnerability in echo.StaticDirectoryHandler (used by e.Static, e.StaticFs etc) 2022-09-04 22:50:54 +03:00
static_windows.go Clean on go1.20 (#2406) 2023-02-22 00:00:52 +02:00
static.go Clean on go1.20 (#2406) 2023-02-22 00:00:52 +02:00
timeout_test.go remediate flaky timeout tests 2023-02-19 20:26:17 +02:00
timeout.go Timeout middleware write race 2022-03-16 08:09:29 +02:00
util_test.go fix(sec): randomString bias (#2492) 2023-07-22 07:08:34 +03:00
util.go docs: add comments to util.go randomString (#2494) 2023-07-22 23:47:35 +03:00