Skip to content

Tags: maplebed/mux

Tags

v1.6.2

Toggle v1.6.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[docs] Improve docstrings for middleware, skipclean (gorilla#375)

v1.6.1

Toggle v1.6.1's commit message
[feat] Add middleware support as discussed in gorilla#293 (gorilla#294)

* mux.Router now has a `Use` method that allows you to add middleware to request processing.

v1.6.0

Toggle v1.6.0's commit message
MatchErr is set to ErrNotFound if NotFoundHandler is used (gorilla#311)

v1.5.0

Toggle v1.5.0's commit message
[docs] README.md: add missing `.` (gorilla#292)

v1.4.0

Toggle v1.4.0's commit message
Support building URLs with non-http schemes. (gorilla#260)

* Move misplaced tests and fix comments.

* Support building URLs with non-http schemes.

- Capture first scheme configured for a route for use when building
  URLs.
- Add new Route.URLScheme method similar to URLHost and URLPath.
- Update Route.URLHost and Route.URL to use the captured scheme if
  present.

* Remove Route.URLScheme method.

* Remove UTF-8 BOM.

v1.3.0

Toggle v1.3.0's commit message
[bugfix] fail fast if regex is incorrectly specified using capturing …

…groups. (gorilla#218)

v1.2.0

Toggle v1.2.0's commit message
Merge pull request gorilla#199 from wirehead/minor-doc-tweek

Clarify how route variables work. (gorilla#151)

v1.1

Toggle v1.1's commit message
Merge pull request gorilla#158 from raninho/master

[tests] old_test: const DefaultRemoteAddr is unused.