Update module github.com/gorilla/mux to v1.8.1#18
Open
doctolib-renovate[bot] wants to merge 1 commit into
Open
Update module github.com/gorilla/mux to v1.8.1#18doctolib-renovate[bot] wants to merge 1 commit into
doctolib-renovate[bot] wants to merge 1 commit into
Conversation
Author
|
docto-mergebot
approved these changes
May 11, 2026
|
Please add the auto-merge label to the PR. |
|
Please add the auto-merge label to the PR. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v1.3.1-0.20170228224354-599cba5e7b61->v1.8.1Release Notes
gorilla/mux (github.com/gorilla/mux)
v1.8.1Compare Source
What's Changed
authenticationMiddlewareinitialization in theREADME.mdfile by @amustaque97 in #693Single Page Applicationexample inREADME.mdfile by @amustaque97 in #678New Contributors
Full Changelog: gorilla/mux@v1.8.0...v1.8.1
v1.8.0: ☀️Compare Source
v1.8.0 addresses a minor regression with the variable extraction when using a wildcard host match. Specifying
.Host(“foo.example.com:{port:.*})will now correctly capture the port intomux.Vars.CHANGELOG
v1.7.4Compare Source
v1.7.4 addresses a number of performance improvements (#544), bugs (#509, #535), and documentation improvements.
CHANGELOG
v1.7.3Compare Source
This is a patch release that mostly incorporates test & build system updates, as well as fixing a rare cause of panics.
CHANGELOG
v1.7.2Compare Source
*Route.Host()as introduced in v1.7.0. If a port is not provided, the route will match on any port, matching behaviour for all versions of mux prior to v1.7.0.See #447 for a fuller discussion.
CHANGELOG
v1.7.1Compare Source
No notable changes 🎆
CHANGELOG
v1.7.0: 🦍 v1.7.0Compare Source
Notable changes:
gorilla/contextcode. Go 1.7 has been out since August 2016.*Route.Host()matching now includes thehost:port, as opposed to just thehost.CHANGELOG
v1.6.2: ⚡️Compare Source
Adds the
CORSMethodMiddlewaremiddleware, which allows package users to automatically generate aAccess-Control-Allow-MethodsHTTP response header based on which methods are configured for a given route. This is useful when dealing with cross-origin requests, and can be easily enabled viarouter.Use(mux.CORSMethodMiddleware).This release otherwise includes documentation fixes and improvements. We are always looking to improve the documentation for mux, and contributions are welcome!
CHANGELOG
e3702be[docs] Improve docstrings for middleware, skipclean (#375)fdeb7bc[docs] Doc fix for testing variables in path (#374)5e55a4aAdd CORSMethodMiddleware (#366)ded0c29Fix linter issues (docs) (#370)b57cb16[build] Update Go versions; add 1.10.x (#364)94231ffFix table-driven example documentation (#363)4dbd923Make Use() variadic (#355)07ba1fdModify http status code to variable in README (#350)d284fd8Modify 403 status code to const variable (#349)v1.6.1: First Class Middleware SupportCompare Source
gorilla/mux now provides first-class support for "middleware" thanks to @roobre! Middleware are handlers that can intercept request & response processing after a route match, but before/after other handlers are invoked. See the documentation for the full details: https://github.com/gorilla/mux#middleware
Previously, developers would have to use a thin wrapper to achieve this per-application. Requests for this functionality built up enough over time such that we've added it to mux's built-in methods.
CHANGELOG:
53c1911[feat] Add middleware support as discussed in #293 (#294)5bbbb5b[docs] Add graceful shutdown example (#329)512169erefactor routeRegexp, particularily newRouteRegexp. (#328)5ab525fPublic test API to set URL params (#322)7904d2e[docs] Add example usage for Route.HeadersRegexp (#320)c572efe[docs] Note StrictSlash re-direct behaviour #308 (#321)65ec724Create ISSUE_TEMPLATE.md (#318)4a3d4f3[bugfix] Fix method subrouter handler matching (#300) (#317)2d5fef0[docs] fix outdated UseEncodedPath method docs (#314)v1.6.0Compare Source
v1.6.0 major changes:
RouteMatch.MatchErris now set toErrNotFoundwhen the route does not match.Route.GetQueriesRegexpandRoute.GetQueriesTemplatesCHANGELOG
7f08801MatchErr is set to ErrNotFound if NotFoundHandler is used (#311)9f48112[docs] Document router.Match (#313)bc452d9[build] Allow tip failures (#312)7625a85.travis.yml: Remove versions < go1.5 from build matrixc9183aause req.URL.EscapedPath() instead of getPath(req) (#306)10490f5GetQueryTemplates and GetQueryRegexp extraction (#304)9bd9ff2Added 1.9 build step (#303)bdd5a5aFix WriteHeader in TestA301ResponseWriter. (#301)3f19343[docs] Document evaluation order for routes (#297)v1.5.0Compare Source
v1.5.0 major changes:
MethodNotAllowedproperty of a*Routerinstance.Walkwill now walk all attached sub-routersCHANGELOG
24fca30[docs] README.md: add missing.(#292)bb285ea[docs] Fix missing space in docstring (#289)a659b61Fix #271: Return 405 instead of 404 when request method doesn't match the routeac112f7Prefer scheme on child route when building URLs.37b3a6cUse scheme from parent router when building URLs.8c683eeFix typo18fca31Add test and fix for escaped query values.c7a138dUpdate docs.f9aa23aAdd tests for support for queries in URL reversing.9c9af15Add support for queries in URL reversing.043ee65Update Walking Routes Section59ce668Fix invalid example code85b8c20Removing half of conflict marker (#268)456bcfaUpdate README with example for Router.Walk4d814f7Update ancestors parameter for WalkFunc for matcher subroutersa322b2cUpdate Walk to match all subroutersConfiguration
📅 Schedule: Branch creation - Between 06:00 AM and 09:59 AM ( * 6-9 * * * ), Between 05:00 PM and 08:59 PM ( * 17-20 * * * ) in timezone Europe/Paris, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was created by Renovate.
Details
Check the default configuration and documentation.
See the logs on Datadog.
To replay this update, you can use the following
packageRuleson the Manual Run page:[{"matchPackageNames": ["*"], "enabled": false}, {"matchPackageNames": ["github.com/gorilla/mux"], "enabled": true}]