Skip to content

Commit 904126c

Browse files
vishrclaude
andcommitted
docs: fix review findings in README/ROADMAP
- Correct net/http interop claim: Echo handlers are not http.Handler; interop is via WrapHandler/WrapMiddleware - Clarify binding ships with a pluggable validator (not built-in validation) - ROADMAP: reference canonical auto-HEAD issue/PR (#2895/#2949) instead of the duplicate PRs (#2944/#2937) slated for closure Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 5c5f412 commit 904126c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
High performance, extensible, minimalist Go web framework.
1515

16-
Echo is built on Go's standard `net/http`handlers stay `http.Handler`-compatible — and adds the parts the standard library leaves to you: a fast radix-tree router, request binding and validation, a deep middleware ecosystem, and centralized error handling. Actively maintained, with `v5` as the current release line (see badges above for the latest version and most recent commit).
16+
Echo is built on Go's standard `net/http`and interoperates with it via `echo.WrapHandler` / `echo.WrapMiddleware` — adding the parts the standard library leaves to you: a fast radix-tree router, request binding (with a pluggable validator), a deep middleware ecosystem, and centralized error handling. Actively maintained, with `v5` as the current release line (see badges above for the latest version and most recent commit).
1717

1818
* [Official website](https://echo.labstack.com)
1919
* [Quick start](https://echo.labstack.com/docs/quick-start)

ROADMAP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Echo supports the **latest four Go major releases** and may work with older vers
3030
These are frequently-requested items being discussed. Inclusion here is **not** a
3131
commitment — each still needs design agreement before implementation:
3232

33-
- **Automatic `HEAD` for `GET` routes** (#2944, #2937) — opt-in, likely via an
33+
- **Automatic `HEAD` for `GET` routes** (#2895; see #2949) — opt-in, likely via an
3434
`OnAddRoute` hook so users keep control.
3535
- **Rate limiter response metadata** — expose `Retry-After` / remaining quota
3636
through the store interface (#2961).

0 commit comments

Comments
 (0)