Update module github.com/gorilla/websocket to v1.5.3 #3

Open
renovate wants to merge 1 commit from renovate/github.com-gorilla-websocket-1.5.x into main
Member

This PR contains the following updates:

Package Change Age Confidence
github.com/gorilla/websocket v1.5.1v1.5.3 age confidence

Release Notes

gorilla/websocket (github.com/gorilla/websocket)

v1.5.3

Compare Source

Important change

This reverts the websockets package back to 931041c

What's Changed

New Contributors

Full Changelog: https://github.com/gorilla/websocket/compare/v1.5.1...v1.5.3

v1.5.2

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/gorilla/websocket/compare/v1.5.1...v1.5.2


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate CLI.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [github.com/gorilla/websocket](https://github.com/gorilla/websocket) | `v1.5.1` → `v1.5.3` | ![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgorilla%2fwebsocket/v1.5.3?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgorilla%2fwebsocket/v1.5.1/v1.5.3?slim=true) | --- ### Release Notes <details> <summary>gorilla/websocket (github.com/gorilla/websocket)</summary> ### [`v1.5.3`](https://github.com/gorilla/websocket/releases/tag/v1.5.3) [Compare Source](https://github.com/gorilla/websocket/compare/v1.5.2...v1.5.3) #### Important change This reverts the websockets package back to [`931041c`](https://github.com/gorilla/websocket/commit/931041c5ee6de24fe9cba1aa16f1a0b910284d6d) #### What's Changed - Fixes subprotocol selection (aling with rfc6455) by [@&#8203;KSDaemon](https://github.com/KSDaemon) in [#&#8203;823](https://github.com/gorilla/websocket/pull/823) - Update README.md, replace master to main by [@&#8203;mstmdev](https://github.com/mstmdev) in [#&#8203;862](https://github.com/gorilla/websocket/pull/862) - Use status code constant by [@&#8203;mstmdev](https://github.com/mstmdev) in [#&#8203;864](https://github.com/gorilla/websocket/pull/864) - conn.go: default close handler should not return ErrCloseSent. by [@&#8203;pnx](https://github.com/pnx) in [#&#8203;865](https://github.com/gorilla/websocket/pull/865) - fix: replace ioutil.readfile with os.readfile by [@&#8203;rfyiamcool](https://github.com/rfyiamcool) in [#&#8203;868](https://github.com/gorilla/websocket/pull/868) - fix: add comment for the readBufferSize and writeBufferSize by [@&#8203;rfyiamcool](https://github.com/rfyiamcool) in [#&#8203;869](https://github.com/gorilla/websocket/pull/869) - Remove noisy printf in NextReader() and beginMessage() by [@&#8203;bcreane](https://github.com/bcreane) in [#&#8203;878](https://github.com/gorilla/websocket/pull/878) - docs(echoreadall): fix function echoReadAll comment by [@&#8203;XdpCs](https://github.com/XdpCs) in [#&#8203;881](https://github.com/gorilla/websocket/pull/881) - make tests parallel by [@&#8203;ninedraft](https://github.com/ninedraft) in [#&#8203;872](https://github.com/gorilla/websocket/pull/872) - Upgrader.Upgrade: use http.ResposnseController by [@&#8203;ninedraft](https://github.com/ninedraft) in [#&#8203;871](https://github.com/gorilla/websocket/pull/871) - Do not handle network error in `SetCloseHandler()` by [@&#8203;nak3](https://github.com/nak3) in [#&#8203;863](https://github.com/gorilla/websocket/pull/863) - perf: reduce timer in write\_control by [@&#8203;rfyiamcool](https://github.com/rfyiamcool) in [#&#8203;879](https://github.com/gorilla/websocket/pull/879) - fix: lint example code by [@&#8203;rfyiamcool](https://github.com/rfyiamcool) in [#&#8203;890](https://github.com/gorilla/websocket/pull/890) - feat: format message type by [@&#8203;rfyiamcool](https://github.com/rfyiamcool) in [#&#8203;889](https://github.com/gorilla/websocket/pull/889) - Remove hideTempErr to allow downstream users to check for errors like net.ErrClosed by [@&#8203;UnAfraid](https://github.com/UnAfraid) in [#&#8203;894](https://github.com/gorilla/websocket/pull/894) - Do not timeout when WriteControl deadline is zero in [#&#8203;898](https://github.com/gorilla/websocket/pull/898) - Excludes errchecks linter by [@&#8203;apoorvajagtap](https://github.com/apoorvajagtap) in [#&#8203;904](https://github.com/gorilla/websocket/pull/904) - Return errors instead of printing to logs by [@&#8203;apoorvajagtap](https://github.com/apoorvajagtap) in [#&#8203;897](https://github.com/gorilla/websocket/pull/897) - Revert " Update go version & add verification/testing tools ([#&#8203;840](https://github.com/gorilla/websocket/issues/840))" by [@&#8203;apoorvajagtap](https://github.com/apoorvajagtap) in [#&#8203;908](https://github.com/gorilla/websocket/pull/908) - Fixes broken random value generation by [@&#8203;apoorvajagtap](https://github.com/apoorvajagtap) in [#&#8203;926](https://github.com/gorilla/websocket/pull/926) - Reverts back to v1.5.0 by [@&#8203;apoorvajagtap](https://github.com/apoorvajagtap) in [#&#8203;929](https://github.com/gorilla/websocket/pull/929) #### New Contributors - [@&#8203;KSDaemon](https://github.com/KSDaemon) made their first contribution in [#&#8203;823](https://github.com/gorilla/websocket/pull/823) - [@&#8203;mstmdev](https://github.com/mstmdev) made their first contribution in [#&#8203;862](https://github.com/gorilla/websocket/pull/862) - [@&#8203;pnx](https://github.com/pnx) made their first contribution in [#&#8203;865](https://github.com/gorilla/websocket/pull/865) - [@&#8203;rfyiamcool](https://github.com/rfyiamcool) made their first contribution in [#&#8203;868](https://github.com/gorilla/websocket/pull/868) - [@&#8203;bcreane](https://github.com/bcreane) made their first contribution in [#&#8203;878](https://github.com/gorilla/websocket/pull/878) - [@&#8203;XdpCs](https://github.com/XdpCs) made their first contribution in [#&#8203;881](https://github.com/gorilla/websocket/pull/881) - [@&#8203;ninedraft](https://github.com/ninedraft) made their first contribution in [#&#8203;872](https://github.com/gorilla/websocket/pull/872) - [@&#8203;nak3](https://github.com/nak3) made their first contribution in [#&#8203;863](https://github.com/gorilla/websocket/pull/863) - [@&#8203;UnAfraid](https://github.com/UnAfraid) made their first contribution in [#&#8203;894](https://github.com/gorilla/websocket/pull/894) - [@&#8203;apoorvajagtap](https://github.com/apoorvajagtap) made their first contribution in [#&#8203;904](https://github.com/gorilla/websocket/pull/904) **Full Changelog**: <https://github.com/gorilla/websocket/compare/v1.5.1...v1.5.3> ### [`v1.5.2`](https://github.com/gorilla/websocket/releases/tag/v1.5.2) [Compare Source](https://github.com/gorilla/websocket/compare/v1.5.1...v1.5.2) #### What's Changed - Fixes subprotocol selection (aling with rfc6455) by [@&#8203;KSDaemon](https://github.com/KSDaemon) in [#&#8203;823](https://github.com/gorilla/websocket/pull/823) - Update README.md, replace master to main by [@&#8203;mstmdev](https://github.com/mstmdev) in [#&#8203;862](https://github.com/gorilla/websocket/pull/862) - Use status code constant by [@&#8203;mstmdev](https://github.com/mstmdev) in [#&#8203;864](https://github.com/gorilla/websocket/pull/864) - conn.go: default close handler should not return ErrCloseSent. by [@&#8203;pnx](https://github.com/pnx) in [#&#8203;865](https://github.com/gorilla/websocket/pull/865) - fix: replace ioutil.readfile with os.readfile by [@&#8203;rfyiamcool](https://github.com/rfyiamcool) in [#&#8203;868](https://github.com/gorilla/websocket/pull/868) - fix: add comment for the readBufferSize and writeBufferSize by [@&#8203;rfyiamcool](https://github.com/rfyiamcool) in [#&#8203;869](https://github.com/gorilla/websocket/pull/869) - Remove noisy printf in NextReader() and beginMessage() by [@&#8203;bcreane](https://github.com/bcreane) in [#&#8203;878](https://github.com/gorilla/websocket/pull/878) - docs(echoreadall): fix function echoReadAll comment by [@&#8203;XdpCs](https://github.com/XdpCs) in [#&#8203;881](https://github.com/gorilla/websocket/pull/881) - make tests parallel by [@&#8203;ninedraft](https://github.com/ninedraft) in [#&#8203;872](https://github.com/gorilla/websocket/pull/872) - Upgrader.Upgrade: use http.ResposnseController by [@&#8203;ninedraft](https://github.com/ninedraft) in [#&#8203;871](https://github.com/gorilla/websocket/pull/871) - Do not handle network error in `SetCloseHandler()` by [@&#8203;nak3](https://github.com/nak3) in [#&#8203;863](https://github.com/gorilla/websocket/pull/863) - perf: reduce timer in write\_control by [@&#8203;rfyiamcool](https://github.com/rfyiamcool) in [#&#8203;879](https://github.com/gorilla/websocket/pull/879) - fix: lint example code by [@&#8203;rfyiamcool](https://github.com/rfyiamcool) in [#&#8203;890](https://github.com/gorilla/websocket/pull/890) - feat: format message type by [@&#8203;rfyiamcool](https://github.com/rfyiamcool) in [#&#8203;889](https://github.com/gorilla/websocket/pull/889) - Remove hideTempErr to allow downstream users to check for errors like net.ErrClosed by [@&#8203;UnAfraid](https://github.com/UnAfraid) in [#&#8203;894](https://github.com/gorilla/websocket/pull/894) - Do not timeout when WriteControl deadline is zero in [#&#8203;898](https://github.com/gorilla/websocket/pull/898) - Excludes errchecks linter by [@&#8203;apoorvajagtap](https://github.com/apoorvajagtap) in [#&#8203;904](https://github.com/gorilla/websocket/pull/904) - Return errors instead of printing to logs by [@&#8203;apoorvajagtap](https://github.com/apoorvajagtap) in [#&#8203;897](https://github.com/gorilla/websocket/pull/897) - Revert " Update go version & add verification/testing tools ([#&#8203;840](https://github.com/gorilla/websocket/issues/840))" by [@&#8203;apoorvajagtap](https://github.com/apoorvajagtap) in [#&#8203;908](https://github.com/gorilla/websocket/pull/908) - Fixes broken random value generation by [@&#8203;apoorvajagtap](https://github.com/apoorvajagtap) in [#&#8203;926](https://github.com/gorilla/websocket/pull/926) #### New Contributors - [@&#8203;KSDaemon](https://github.com/KSDaemon) made their first contribution in [#&#8203;823](https://github.com/gorilla/websocket/pull/823) - [@&#8203;mstmdev](https://github.com/mstmdev) made their first contribution in [#&#8203;862](https://github.com/gorilla/websocket/pull/862) - [@&#8203;pnx](https://github.com/pnx) made their first contribution in [#&#8203;865](https://github.com/gorilla/websocket/pull/865) - [@&#8203;rfyiamcool](https://github.com/rfyiamcool) made their first contribution in [#&#8203;868](https://github.com/gorilla/websocket/pull/868) - [@&#8203;bcreane](https://github.com/bcreane) made their first contribution in [#&#8203;878](https://github.com/gorilla/websocket/pull/878) - [@&#8203;XdpCs](https://github.com/XdpCs) made their first contribution in [#&#8203;881](https://github.com/gorilla/websocket/pull/881) - [@&#8203;ninedraft](https://github.com/ninedraft) made their first contribution in [#&#8203;872](https://github.com/gorilla/websocket/pull/872) - [@&#8203;nak3](https://github.com/nak3) made their first contribution in [#&#8203;863](https://github.com/gorilla/websocket/pull/863) - [@&#8203;UnAfraid](https://github.com/UnAfraid) made their first contribution in [#&#8203;894](https://github.com/gorilla/websocket/pull/894) - [@&#8203;apoorvajagtap](https://github.com/apoorvajagtap) made their first contribution in [#&#8203;904](https://github.com/gorilla/websocket/pull/904) **Full Changelog**: <https://github.com/gorilla/websocket/compare/v1.5.1...v1.5.2> </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate CLI](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yODguMCIsInVwZGF0ZWRJblZlciI6IjQ0LjE3LjIiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImdvIiwicGF0Y2gtdXBkYXRlIl19-->
Update module github.com/gorilla/websocket to v1.5.3
Some checks failed
renovate/artifacts Artifact file update failure
b5e9713e26
Author
Member

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: install-tool golang 1.22.2

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: go.sum ``` Command failed: install-tool golang 1.22.2 ```
Some checks failed
renovate/artifacts Artifact file update failure
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/github.com-gorilla-websocket-1.5.x:renovate/github.com-gorilla-websocket-1.5.x
git switch renovate/github.com-gorilla-websocket-1.5.x

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch main
git merge --no-ff renovate/github.com-gorilla-websocket-1.5.x
git switch renovate/github.com-gorilla-websocket-1.5.x
git rebase main
git switch main
git merge --ff-only renovate/github.com-gorilla-websocket-1.5.x
git switch renovate/github.com-gorilla-websocket-1.5.x
git rebase main
git switch main
git merge --no-ff renovate/github.com-gorilla-websocket-1.5.x
git switch main
git merge --squash renovate/github.com-gorilla-websocket-1.5.x
git switch main
git merge --ff-only renovate/github.com-gorilla-websocket-1.5.x
git switch main
git merge renovate/github.com-gorilla-websocket-1.5.x
git push origin main
Sign in to join this conversation.
No reviewers
No labels
No milestone
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set

Reference
SisyphusMD/frigate-b2-uploader!3
No description provided.