Skip to content

Commit 1c788c7

Browse files
committed
Support forwarding of websockets
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 3ec7549 commit 1c788c7

25 files changed

+748
-144
lines changed

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ go 1.23
55
require (
66
github.com/docker/go-units v0.5.0
77
github.com/openfaas/faas-middleware v1.2.4
8-
github.com/openfaas/faas-provider v0.25.5
9-
github.com/prometheus/client_golang v1.20.5
8+
github.com/openfaas/faas-provider v0.25.6
9+
github.com/prometheus/client_golang v1.21.0
1010
)
1111

1212
require (

go.sum

+4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,14 @@ github.com/openfaas/faas-middleware v1.2.4 h1:NuZsuFismTx0AQcQJUotN4PnRMiw4m2TEx
3030
github.com/openfaas/faas-middleware v1.2.4/go.mod h1:XiprV9UlhsiC4drJ2rdo9q+IHBvcL5P607PDqzM6Yjg=
3131
github.com/openfaas/faas-provider v0.25.5 h1:qW2izX1otKfbOhArgf1GK9JjTqwBRL4BWioiJJVYH58=
3232
github.com/openfaas/faas-provider v0.25.5/go.mod h1:rMXbj+AYVpn82UoHIOgWHiDeV118t0bSxyoC9d00jpc=
33+
github.com/openfaas/faas-provider v0.25.6 h1:dAAR2L/LEy9lCneEqJG+mddDaVVDn9uKZ81egUg+tgo=
34+
github.com/openfaas/faas-provider v0.25.6/go.mod h1:rMXbj+AYVpn82UoHIOgWHiDeV118t0bSxyoC9d00jpc=
3335
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
3436
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
3537
github.com/prometheus/client_golang v1.20.5 h1:cxppBPuYhUnsO6yo/aoRol4L7q7UFfdm+bR9r+8l63Y=
3638
github.com/prometheus/client_golang v1.20.5/go.mod h1:PIEt8X02hGcP8JWbeHyeZ53Y/jReSnHgO035n//V5WE=
39+
github.com/prometheus/client_golang v1.21.0 h1:DIsaGmiaBkSangBgMtWdNfxbMNdku5IK6iNhrEqWvdA=
40+
github.com/prometheus/client_golang v1.21.0/go.mod h1:U9NM32ykUErtVBxdvD3zfi+EuFkkaBvMb09mIfe0Zgg=
3741
github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E=
3842
github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY=
3943
github.com/prometheus/common v0.62.0 h1:xasJaQlnWAeyHdUBeGjXmutelfJHWMRr+Fg4QszZ2Io=

vendor/github.com/prometheus/client_golang/prometheus/atomic_update.go

+50
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/prometheus/client_golang/prometheus/counter.go

+3-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/prometheus/client_golang/prometheus/desc.go

+9-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/prometheus/client_golang/prometheus/gauge.go

+3-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/prometheus/client_golang/prometheus/go_collector_latest.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)