Releases: go-chi/chi
Releases · go-chi/chi
v5.0.5
- Fix middleware.Recoverer under Go 1.17+ (again)
- Update middleware.Heartbeat to respond to both HEAD and GET requests
- History of changes, see: v5.0.4...v5.0.5
v5.0.4
- Fix middleware.Recoverer under Go 1.17+ (#633)
- New in middleware: PageRoute and PathRewrite
- New docs site! https://go-chi.io -- thank you @Shubhaankar-Sharma for all the amazing work 🥇 💯
- History of changes, see: v5.0.3...v5.0.4
v5.0.3
- History of changes: see v5.0.2...v5.0.3
v5.0.2
- fix previous regression
- History of changes: see v5.0.1...v5.0.2
v5.0.1
- Small improvements
- History of changes: see v5.0.0...v5.0.1
v5.0.0
- chi v5,
github.com/go-chi/chi/v5
introduces the adoption of Go's SIV to adhere to the current state-of-the-tools in Go. - chi v1.5.x did not work out as planned, as the Go tooling is too powerful and chi's adoption is too wide.
The most responsible thing to do for everyone's benefit is to just release v5 with SIV, so I present to you all,
chi v5 atgithub.com/go-chi/chi/v5
. I hope someday the developer experience and ergonomics I've been seeking
will still come to fruition in some form, see golang/go#44550 - History of changes: see v1.5.4...v5.0.0
v1.5.4
- Undo prior retraction in v1.5.3 as we prepare for v5.0.0 release
- History of changes: see v1.5.3...v1.5.4
v1.5.3
- Update go.mod to go 1.16 with new retract directive marking all versions without prior go.mod support
- History of changes: see v1.5.2...v1.5.3
v1.5.2
- Reverting allocation optimization as a precaution as go test -race fails.
- Minor improvements, see history below
- History of changes: see v1.5.1...v1.5.2
v1.5.1
- Performance improvement: removing 1 allocation by foregoing context.WithValue, thank you @bouk for
your contribution (#555). Note: new benchmarks posted in README. middleware.CleanPath
: new middleware that clean's request path of double slashes- deprecate & remove
chi.ServerBaseContext
in favour of stdlibhttp.Server#BaseContext
- plus other tiny improvements, see full commit history below
- History of changes: see v4.1.2...v1.5.1