mirror of
https://github.com/gesellix/Bose-SoundTouch.git
synced 2026-09-07 15:07:17 +00:00
Bumps [github.com/go-chi/chi/v5](https://github.com/go-chi/chi) from 5.3.1 to 5.3.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/go-chi/chi/releases">github.com/go-chi/chi/v5's releases</a>.</em></p> <blockquote> <h2>v5.3.2</h2> <h2>What's Changed</h2> <ul> <li>feat(middleware): add text/markdown, text/csv, text/vtt to default compressible types by <a href="https://github.com/VojtechVitek"><code>@VojtechVitek</code></a> in <a href="https://redirect.github.com/go-chi/chi/pull/1151">go-chi/chi#1151</a></li> <li>docs: deployment recipe for middleware.ClientIPFromXFFTrustedProxies() by <a href="https://github.com/VojtechVitek"><code>@VojtechVitek</code></a> in <a href="https://redirect.github.com/go-chi/chi/pull/1111">go-chi/chi#1111</a></li> <li>fix: don't drop handlers that collide with a Mount()/Route() pattern by <a href="https://github.com/VojtechVitek"><code>@VojtechVitek</code></a> in <a href="https://redirect.github.com/go-chi/chi/pull/1148">go-chi/chi#1148</a></li> <li>Don't duplicate methods in Allow: header for 405 responses by <a href="https://github.com/flimzy"><code>@flimzy</code></a> in <a href="https://redirect.github.com/go-chi/chi/pull/1029">go-chi/chi#1029</a></li> <li>fix(middleware): reject catch-all compress wildcards by <a href="https://github.com/VojtechVitek"><code>@VojtechVitek</code></a> in <a href="https://redirect.github.com/go-chi/chi/pull/1156">go-chi/chi#1156</a> <ul> <li><code>middleware.NewCompressor(level, "/*")</code> never worked and silently compressed nothing. Instead of turning it into a compress-everything catch-all (as proposed in <a href="https://redirect.github.com/go-chi/chi/issues/868">go-chi/chi#868</a> and <a href="https://redirect.github.com/go-chi/chi/pull/1121">go-chi/chi#1121</a>), we decided to reject both "/<em>" and "</em>/*" at construction and panic. Compressing every response wastes CPU on already-compressed types (zip, jpeg, png), which is why the middleware keeps a curated default list. Users should pass explicit content types.</li> </ul> </li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/go-chi/chi/compare/v5.3.1...v5.3.2">https://github.com/go-chi/chi/compare/v5.3.1...v5.3.2</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/go-chi/chi/commit/38939062c5df4d3e8814aad1a488983112627ced"><code>3893906</code></a> fix(middleware): reject catch-all compress wildcards "/<em>" and "</em>/*" (<a href="https://redirect.github.com/go-chi/chi/issues/1156">#1156</a>)</li> <li><a href="https://github.com/go-chi/chi/commit/9b6ddcddb96aa14648702e7eaabef38e14e65157"><code>9b6ddcd</code></a> Don't duplicate methods in Allow: header for 405 responses (<a href="https://redirect.github.com/go-chi/chi/issues/1029">#1029</a>)</li> <li><a href="https://github.com/go-chi/chi/commit/29164f023bf9319e74d5961a21a712653bb98c83"><code>29164f0</code></a> fix: don't drop handlers that collide with a Mount()/Route() pattern (<a href="https://redirect.github.com/go-chi/chi/issues/1148">#1148</a>)</li> <li><a href="https://github.com/go-chi/chi/commit/bc02284e9db220c644912320fe1db6bc9b4a087c"><code>bc02284</code></a> docs: deployment recipe + verify checklist for ClientIPFromXFFTrustedProxies ...</li> <li><a href="https://github.com/go-chi/chi/commit/60ecea54191a4cad3d5a96568708dad996509b17"><code>60ecea5</code></a> feat(middleware): add text/markdown, text/csv, text/vtt to default compressib...</li> <li>See full diff in <a href="https://github.com/go-chi/chi/compare/v5.3.1...v5.3.2">compare view</a></li> </ul> </details> <br /> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
39 lines
1.3 KiB
AMPL
39 lines
1.3 KiB
AMPL
module github.com/gesellix/bose-soundtouch
|
|
|
|
go 1.26.6
|
|
|
|
require (
|
|
filippo.io/age v1.3.1
|
|
github.com/chromedp/chromedp v0.16.0
|
|
github.com/go-chi/chi/v5 v5.3.2
|
|
github.com/google/gopacket v1.1.19
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/hashicorp/mdns v1.0.7
|
|
github.com/miekg/dns v1.1.73
|
|
github.com/russross/blackfriday/v2 v2.1.0
|
|
github.com/sergi/go-diff v1.4.0
|
|
github.com/srwiley/oksvg v0.0.0-20221011165216-be6e8873101c
|
|
github.com/srwiley/rasterx v0.0.0-20220730225603-2ab79fcdd4ef
|
|
github.com/urfave/cli/v2 v2.27.7
|
|
golang.org/x/crypto v0.55.0
|
|
golang.org/x/mod v0.40.0
|
|
golang.org/x/net v0.58.0
|
|
golang.org/x/term v0.45.0
|
|
)
|
|
|
|
require (
|
|
filippo.io/edwards25519 v1.2.0 // indirect
|
|
filippo.io/hpke v0.4.0 // indirect
|
|
github.com/chromedp/cdproto v0.0.0-20260714215040-dc233986426f // indirect
|
|
github.com/chromedp/sysutil v1.1.0 // indirect
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
|
|
github.com/go-json-experiment/json v0.0.0-20260623181947-01eb4420fa68 // indirect
|
|
github.com/gobwas/httphead v0.1.0 // indirect
|
|
github.com/gobwas/pool v0.2.1 // indirect
|
|
github.com/gobwas/ws v1.4.0 // indirect
|
|
github.com/xrash/smetrics v0.0.0-20250705151800-55b8f293f342 // indirect
|
|
golang.org/x/image v0.45.0 // indirect
|
|
golang.org/x/sys v0.47.0 // indirect
|
|
golang.org/x/text v0.41.0 // indirect
|
|
)
|