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

Skip to content

Tags: mwf/chi

Tags

v3.3.3

Toggle v3.3.3's commit message
add go.mod, assuming current master is a v3 branch

Import paths are changed according to Semantic Import Versions rationale.
Otherwise `vgo test ./middleware` fails bacause of import path interpretation - it assumes
that "github.com/go-chi/chi" points to v1, fails to find some public functions from v3 and dies.

As semantic import versioning seems to be the official way, we should respect it.

This is an experimental way of implementing go-chi#302 without major version bump.
Backwards compatibility is done via `v3` symlink - old go is OK with it.

v3.3.1

Toggle v3.3.1's commit message
Release v3.3.1

v3.3.0

Toggle v3.3.0's commit message
Release v3.3.0

v3.2.1

Toggle v3.2.1's commit message
Release v3.2.1

v3.2.0

Toggle v3.2.0's commit message
FindRoute now returns specific method handler along with endpoints map

v3.1.5

Toggle v3.1.5's commit message
go vet and golint the project, release 3.1.5

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