moul / protoc-gen-gotemplate

:open_file_folder: generic protocol generator based on golang's text/template (grpc/protobuf)
https://manfred.life/protoc-gen-gotemplate
MIT License
437 stars 70 forks source link

chore(deps): update module gorilla/mux to v1.6.2 - autoclosed #114

Closed renovate[bot] closed 5 years ago

renovate[bot] commented 5 years ago

This PR contains the following updates:

Package Type Update Change References
github.com/gorilla/mux require minor v1.5.0 -> v1.6.2 source

Release Notes

gorilla/mux ### [`v1.6.2`](https://togithub.com/gorilla/mux/releases/v1.6.2) [Compare Source](https://togithub.com/gorilla/mux/compare/v1.6.1...v1.6.2) Adds the [`CORSMethodMiddleware`](https://godoc.org/github.com/gorilla/mux#CORSMethodMiddleware) middleware, which allows package users to automatically generate a `Access-Control-Allow-Methods` HTTP 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 via `router.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`](https://togithub.com/gorilla/mux/commit/e3702be) [docs] Improve docstrings for middleware, skipclean ([#​375](https://togithub.com/gorilla/mux/issues/375)) [`fdeb7bc`](https://togithub.com/gorilla/mux/commit/fdeb7bc) [docs] Doc fix for testing variables in path ([#​374](https://togithub.com/gorilla/mux/issues/374)) [`5e55a4a`](https://togithub.com/gorilla/mux/commit/5e55a4a) Add CORSMethodMiddleware ([#​366](https://togithub.com/gorilla/mux/issues/366)) [`ded0c29`](https://togithub.com/gorilla/mux/commit/ded0c29) Fix linter issues (docs) ([#​370](https://togithub.com/gorilla/mux/issues/370)) [`b57cb16`](https://togithub.com/gorilla/mux/commit/b57cb16) [build] Update Go versions; add 1.10.x ([#​364](https://togithub.com/gorilla/mux/issues/364)) [`94231ff`](https://togithub.com/gorilla/mux/commit/94231ff) Fix table-driven example documentation ([#​363](https://togithub.com/gorilla/mux/issues/363)) [`4dbd923`](https://togithub.com/gorilla/mux/commit/4dbd923) Make Use() variadic ([#​355](https://togithub.com/gorilla/mux/issues/355)) [`07ba1fd`](https://togithub.com/gorilla/mux/commit/07ba1fd) Modify http status code to variable in README ([#​350](https://togithub.com/gorilla/mux/issues/350)) [`d284fd8`](https://togithub.com/gorilla/mux/commit/d284fd8) Modify 403 status code to const variable ([#​349](https://togithub.com/gorilla/mux/issues/349)) ### [`v1.6.1`](https://togithub.com/gorilla/mux/releases/v1.6.1) [Compare Source](https://togithub.com/gorilla/mux/compare/v1.6.0...v1.6.1) gorilla/mux now provides first-class support for "middleware" thanks to [@​roobre](https://togithub.com/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: 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`](https://togithub.com/gorilla/mux/commit/53c1911) [feat] Add middleware support as discussed in [#​293](https://togithub.com/gorilla/mux/issues/293) ([#​294](https://togithub.com/gorilla/mux/issues/294)) [`5bbbb5b`](https://togithub.com/gorilla/mux/commit/5bbbb5b) [docs] Add graceful shutdown example ([#​329](https://togithub.com/gorilla/mux/issues/329)) [`512169e`](https://togithub.com/gorilla/mux/commit/512169e) refactor routeRegexp, particularily newRouteRegexp. ([#​328](https://togithub.com/gorilla/mux/issues/328)) [`5ab525f`](https://togithub.com/gorilla/mux/commit/5ab525f) Public test API to set URL params ([#​322](https://togithub.com/gorilla/mux/issues/322)) [`7904d2e`](https://togithub.com/gorilla/mux/commit/7904d2e) [docs] Add example usage for Route.HeadersRegexp ([#​320](https://togithub.com/gorilla/mux/issues/320)) [`c572efe`](https://togithub.com/gorilla/mux/commit/c572efe) [docs] Note StrictSlash re-direct behaviour [#​308](https://togithub.com/gorilla/mux/issues/308) ([#​321](https://togithub.com/gorilla/mux/issues/321)) [`65ec724`](https://togithub.com/gorilla/mux/commit/65ec724) Create ISSUE_TEMPLATE.md ([#​318](https://togithub.com/gorilla/mux/issues/318)) [`4a3d4f3`](https://togithub.com/gorilla/mux/commit/4a3d4f3) [bugfix] Fix method subrouter handler matching ([#​300](https://togithub.com/gorilla/mux/issues/300)) ([#​317](https://togithub.com/gorilla/mux/issues/317)) [`2d5fef0`](https://togithub.com/gorilla/mux/commit/2d5fef0) [docs] fix outdated UseEncodedPath method docs ([#​314](https://togithub.com/gorilla/mux/issues/314)) ### [`v1.6.0`](https://togithub.com/gorilla/mux/releases/v1.6.0) [Compare Source](https://togithub.com/gorilla/mux/compare/v1.5.0...v1.6.0) v1.6.0 major changes: - `RouteMatch.MatchErr` is now set to `ErrNotFound` when the route does not match. - Go 1.5.x and below are no longer supported - New methods for fetching the query template have been added in [`Route.GetQueriesRegexp`](https://godoc.org/github.com/gorilla/mux#Route.GetQueriesRegexp) and [`Route.GetQueriesTemplates`](https://godoc.org/github.com/gorilla/mux#Route.GetQueriesTemplates) - Bug fixes and documentation updates, detailed below. CHANGELOG [`7f08801`](https://togithub.com/gorilla/mux/commit/7f08801) MatchErr is set to ErrNotFound if NotFoundHandler is used ([#​311](https://togithub.com/gorilla/mux/issues/311)) [`9f48112`](https://togithub.com/gorilla/mux/commit/9f48112) [docs] Document router.Match ([#​313](https://togithub.com/gorilla/mux/issues/313)) [`bc452d9`](https://togithub.com/gorilla/mux/commit/bc452d9) [build] Allow tip failures ([#​312](https://togithub.com/gorilla/mux/issues/312)) [`7625a85`](https://togithub.com/gorilla/mux/commit/7625a85) .travis.yml: Remove versions < go1.5 from build matrix [`c9183aa`](https://togithub.com/gorilla/mux/commit/c9183aa) use req.URL.EscapedPath() instead of getPath(req) ([#​306](https://togithub.com/gorilla/mux/issues/306)) [`10490f5`](https://togithub.com/gorilla/mux/commit/10490f5) GetQueryTemplates and GetQueryRegexp extraction ([#​304](https://togithub.com/gorilla/mux/issues/304)) [`9bd9ff2`](https://togithub.com/gorilla/mux/commit/9bd9ff2) Added 1.9 build step ([#​303](https://togithub.com/gorilla/mux/issues/303)) [`bdd5a5a`](https://togithub.com/gorilla/mux/commit/bdd5a5a) Fix WriteHeader in TestA301ResponseWriter. ([#​301](https://togithub.com/gorilla/mux/issues/301)) [`3f19343`](https://togithub.com/gorilla/mux/commit/3f19343) [docs] Document evaluation order for routes ([#​297](https://togithub.com/gorilla/mux/issues/297))

Renovate configuration

:date: Schedule: At any time (no schedule defined).

:vertical_traffic_light: Automerge: Disabled by config. Please merge this manually once you are satisfied.

:recycle: Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "rebase!".

:no_bell: Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Renovate Bot. View repository job log here.