v1.3.0
版本发布时间: 2017-01-18 21:46:42
gorilla/mux最新发布版本:v1.8.1(2023-11-05 10:14:50)
Summary
- Capture groups in regular expressions - e.g.
(pattern|thing)
vs(?:pattern|thing)
are have not been supported. We now fail fast (panic on startup) if we detect any routes with a capturing group. See https://github.com/gorilla/mux/issues/200 for discussion.
CHANGELOG
392c28f [bugfix] fail fast if regex is incorrectly specified using capturing groups. (#218) cafdb65 [docs] Add route listing example to README