Skip to content

Commit ca27539

Browse files
Update module github.com/gorilla/pat to v1.0.2 (#1904)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/gorilla/pat](https://redirect.github.com/gorilla/pat) | require | patch | `v1.0.1` -> `v1.0.2` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>gorilla/pat (github.com/gorilla/pat)</summary> ### [`v1.0.2`](https://redirect.github.com/gorilla/pat/releases/tag/v1.0.2) [Compare Source](https://redirect.github.com/gorilla/pat/compare/v1.0.1...v1.0.2) #### What's Changed - 👷 This library is in maintenance mode. by [@&#8203;elithrar](https://redirect.github.com/elithrar) in [https://github.com/gorilla/pat/pull/22](https://redirect.github.com/gorilla/pat/pull/22) - Update README.md by [@&#8203;coreydaley](https://redirect.github.com/coreydaley) in [https://github.com/gorilla/pat/pull/23](https://redirect.github.com/gorilla/pat/pull/23) - Update go version, add tools for verification and testing by [@&#8203;coreydaley](https://redirect.github.com/coreydaley) in [https://github.com/gorilla/pat/pull/25](https://redirect.github.com/gorilla/pat/pull/25) - Update issues.yml by [@&#8203;coreydaley](https://redirect.github.com/coreydaley) in [https://github.com/gorilla/pat/pull/26](https://redirect.github.com/gorilla/pat/pull/26) - update GitHub workflows by [@&#8203;coreydaley](https://redirect.github.com/coreydaley) in [https://github.com/gorilla/pat/pull/27](https://redirect.github.com/gorilla/pat/pull/27) - Remove documentation loop by [@&#8203;apoorvajagtap](https://redirect.github.com/apoorvajagtap) in [https://github.com/gorilla/pat/pull/28](https://redirect.github.com/gorilla/pat/pull/28) - bumping dependencies and adding vendor dir by [@&#8203;coreydaley](https://redirect.github.com/coreydaley) in [https://github.com/gorilla/pat/pull/29](https://redirect.github.com/gorilla/pat/pull/29) #### New Contributors - [@&#8203;coreydaley](https://redirect.github.com/coreydaley) made their first contribution in [https://github.com/gorilla/pat/pull/23](https://redirect.github.com/gorilla/pat/pull/23) - [@&#8203;apoorvajagtap](https://redirect.github.com/apoorvajagtap) made their first contribution in [https://github.com/gorilla/pat/pull/28](https://redirect.github.com/gorilla/pat/pull/28) **Full Changelog**: gorilla/pat@v1.0.1...v1.0.2 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - "every weekday" (UTC). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOS4wIiwidXBkYXRlZEluVmVyIjoiMzkuMTkuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJpbXBhY3Qvbm8tY2hhbmdlbG9nLXJlcXVpcmVkIl19--> Co-authored-by: pulumi-renovate[bot] <189166143+pulumi-renovate[bot]@users.noreply.github.com>
1 parent 50dcb9f commit ca27539

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

aws-ts-netlify-cms-and-oauth/cms-oauth/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.14
44

55
require (
66
github.com/davecgh/go-spew v1.1.1 // indirect
7-
github.com/gorilla/pat v1.0.1
7+
github.com/gorilla/pat v1.0.2
88
github.com/markbates/goth v1.64.2
99
github.com/pmezard/go-difflib v1.0.0 // indirect
1010
golang.org/x/net v0.7.0 // indirect

aws-ts-netlify-cms-and-oauth/cms-oauth/go.sum

+6-4
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs
33
github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=
44
github.com/golang/protobuf v1.3.1 h1:YF8+flBXS5eO826T4nzqPrxfhQThhXl0YzfuUPu4SBg=
55
github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
6-
github.com/gorilla/context v1.1.1 h1:AWwleXJkX/nhcU9bZSnZoi3h/qGYqQAGhq6zZe/aQW8=
76
github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg=
8-
github.com/gorilla/mux v1.6.2 h1:Pgr17XVTNXAk3q/r4CpKzC5xBM/qW1uVLV+IhRZpIIk=
7+
github.com/gorilla/context v1.1.2 h1:WRkNAv2uoa03QNIc1A6u4O7DAGMUVoopZhkiXWA2V1o=
8+
github.com/gorilla/context v1.1.2/go.mod h1:KDPwT9i/MeWHiLl90fuTgrt4/wPcv75vFAZLaOOcbxM=
99
github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs=
10+
github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY=
11+
github.com/gorilla/mux v1.8.1/go.mod h1:AKf9I4AEqPTmMytcMc0KkNouC66V3BtZ4qD5fmWSiMQ=
1012
github.com/gorilla/pat v0.0.0-20180118222023-199c85a7f6d1/go.mod h1:YeAe0gNeiNT5hoiZRI4yiOky6jVdNvfO2N6Kav/HmxY=
11-
github.com/gorilla/pat v1.0.1 h1:OeSoj6sffw4/majibAY2BAUsXjNP7fEE+w30KickaL4=
12-
github.com/gorilla/pat v1.0.1/go.mod h1:YeAe0gNeiNT5hoiZRI4yiOky6jVdNvfO2N6Kav/HmxY=
13+
github.com/gorilla/pat v1.0.2 h1:TDh/RulbnPxMQACcwbgMF5Bf00jaGoeYBNu+XUFuwtE=
14+
github.com/gorilla/pat v1.0.2/go.mod h1:ioQ7dFQ2KXmOmWLJs6vZAfRikcm2D2JyuLrL9b5wVCg=
1315
github.com/gorilla/securecookie v1.1.1 h1:miw7JPhV+b/lAHSXz4qd/nN9jRiAFV5FwjeKyCS8BvQ=
1416
github.com/gorilla/securecookie v1.1.1/go.mod h1:ra0sb63/xPlUeL+yeDciTfxMRAA+MP+HVt/4epWDjd4=
1517
github.com/gorilla/sessions v1.1.1 h1:YMDmfaK68mUixINzY/XjscuJ47uXFWSSHzFbBQM0PrE=

0 commit comments

Comments
 (0)