Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: zemirco/chi

Tags

v3.1.4

Toggle v3.1.4's commit message
Ensure enough param values in mount handler

v3.1.3

Toggle v3.1.3's commit message
Implement router tree Walker, an analogy to filepath.Walk (go-chi#222)

* Implement router tree Walker, an analogy to filepath.Walk

func Walk(r Routes, walkFn WalkFunc) error
type WalkFunc func(method string, route string, handler http.Handler, middlewares ...func(http.Handler) http.Handler) error

* Move Walker to tree.go

v3.1.2

Toggle v3.1.2's commit message
Flatten Context.URLParams data structure

v3.1.1

Toggle v3.1.1's commit message
Merge branch 'master' of github.com:go-chi/chi

v3.1.0

Toggle v3.1.0's commit message
v3.1.0 release

v3.0.0

Toggle v3.0.0's commit message
Update README with latest benchmarks of v3

v2.1.0

Toggle v2.1.0's commit message
Update README, CHANGELOG, other comments

v2.0.0

Toggle v2.0.0's commit message
Release v2.0.0 with support for go1.8, http2 and http.Pusher

v2.0.0rc1

Toggle v2.0.0rc1's commit message
Import ordering for travis

v1.0.0

Toggle v1.0.0's commit message
Ensure we dont route to an empty mux, fixes go-chi#42