Skip to content

Commit a1c137c

Browse files
committed
Update dependencies for CVEs
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 4003a91 commit a1c137c

22 files changed

+197
-1339
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ faas-netes - Serverless Functions For Kubernetes with OpenFaaS
99

1010
`faas-netes` is an [OpenFaaS provider](https://github.com/openfaas/faas-provider) which enables Kubernetes for [OpenFaaS](https://github.com/openfaas/faas). It's part of a larger stack that brings a cloud-agnostic serverless experience to Kubernetes.
1111

12-
The existing REST API, CLI and UI are fully compatible. With OpenFaaS Pro, you have an optional *operator* mode so that you can manage functions with `kubectl` and a `CustomResource`.
12+
The existing REST API, CLI and UI are fully compatible. With OpenFaaS Standard/Enterprise, you have an optional *operator* mode so that you can manage functions with `kubectl` and a `CustomResource`.
1313

1414
You can deploy OpenFaaS to any Kubernetes service - whether managed or local, including to OpenShift. You will find any specific instructions and additional links in the documentation.
1515

@@ -20,7 +20,7 @@ You can deploy OpenFaaS to any Kubernetes service - whether managed or local, in
2020
2121
## Highlights
2222

23-
* Free for personal, non-commercial use, commercial use limited to 60 days.
23+
* Free for personal & non-commercial use. Commercial use limited to 60 days, then you [must buy a license](https://openfaas.com/pricing/).
2424
* Platform for deploying [serverless-style workloads](https://docs.openfaas.com/reference/workloads/) - microservices and functions
2525
* Native Kubernetes integrations (API and ecosystem)
2626
* Built-in UI portal
@@ -73,8 +73,8 @@ The rest of this document is dedicated to technical and operational information
7373

7474
There are two modes available for faas-netes, the classic mode is the default.
7575

76-
* Classic mode (aka faas-netes) - includes a REST API, multiple-namespace support but no Function CRD - available in Community Edition and OpenFaaS Pro/Enteprise
77-
* Operator mode (aka "The OpenFaaS Operator") - includes a REST API, with a "Function" CRD and multiple-namespace [OpenFaaS Pro/Enterprise](https://openfaas.com/pricing/)
76+
* Classic mode (aka faas-netes) - includes a REST API, multiple-namespace support but no Function CRD - available in Community Edition and OpenFaaS Standard/Enteprise
77+
* Operator mode (aka "The OpenFaaS Operator") - includes a REST API, with a "Function" CRD and multiple-namespace [OpenFaaS Standard/Enterprise](https://openfaas.com/pricing/)
7878

7979
See also: [README for "The OpenFaaS Operator"](README-OPERATOR.md)
8080

go.mod

+40-36
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ require (
77
github.com/gorilla/mux v1.8.1
88
github.com/openfaas/faas-provider v0.25.3
99
github.com/pkg/errors v0.9.1
10-
k8s.io/api v0.29.0
11-
k8s.io/apimachinery v0.29.0
12-
k8s.io/client-go v0.29.0
13-
k8s.io/code-generator v0.29.0
10+
k8s.io/api v0.29.2
11+
k8s.io/apimachinery v0.29.2
12+
k8s.io/client-go v0.29.2
13+
k8s.io/code-generator v0.29.2
1414
k8s.io/klog v1.0.0
1515
sigs.k8s.io/structured-merge-diff/v4 v4.4.1
1616
)
@@ -20,60 +20,64 @@ require github.com/google/go-containerregistry v0.19.0
2020
require (
2121
github.com/beorn7/perks v1.0.1 // indirect
2222
github.com/cespare/xxhash/v2 v2.2.0 // indirect
23-
github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect
23+
github.com/containerd/stargz-snapshotter/estargz v0.15.1 // indirect
2424
github.com/davecgh/go-spew v1.1.1 // indirect
25-
github.com/docker/cli v24.0.0+incompatible // indirect
26-
github.com/docker/distribution v2.8.2+incompatible // indirect
27-
github.com/docker/docker v24.0.0+incompatible // indirect
28-
github.com/docker/docker-credential-helpers v0.7.0 // indirect
29-
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
30-
github.com/evanphx/json-patch v5.7.0+incompatible // indirect
31-
github.com/go-logr/logr v1.3.0 // indirect
32-
github.com/go-openapi/jsonpointer v0.20.0 // indirect
33-
github.com/go-openapi/jsonreference v0.20.2 // indirect
34-
github.com/go-openapi/swag v0.22.4 // indirect
25+
github.com/distribution/reference v0.5.0 // indirect
26+
github.com/docker/cli v25.0.3+incompatible // indirect
27+
github.com/docker/distribution v2.8.3+incompatible // indirect
28+
github.com/docker/docker v25.0.3+incompatible // indirect
29+
github.com/docker/docker-credential-helpers v0.8.1 // indirect
30+
github.com/emicklei/go-restful/v3 v3.11.2 // indirect
31+
github.com/evanphx/json-patch v5.9.0+incompatible // indirect
32+
github.com/fatih/color v1.15.0 // indirect
33+
github.com/go-logr/logr v1.4.1 // indirect
34+
github.com/go-openapi/jsonpointer v0.20.2 // indirect
35+
github.com/go-openapi/jsonreference v0.20.4 // indirect
36+
github.com/go-openapi/swag v0.22.9 // indirect
3537
github.com/gogo/protobuf v1.3.2 // indirect
3638
github.com/golang/protobuf v1.5.3 // indirect
3739
github.com/google/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 // indirect
3840
github.com/google/gofuzz v1.2.0 // indirect
39-
github.com/google/uuid v1.4.0 // indirect
40-
github.com/imdario/mergo v0.3.6 // indirect
41+
github.com/google/uuid v1.6.0 // indirect
4142
github.com/josharian/intern v1.0.0 // indirect
4243
github.com/json-iterator/go v1.1.12 // indirect
43-
github.com/klauspost/compress v1.16.5 // indirect
44+
github.com/klauspost/compress v1.17.7 // indirect
45+
github.com/magefile/mage v1.14.0 // indirect
4446
github.com/mailru/easyjson v0.7.7 // indirect
47+
github.com/mattn/go-colorable v0.1.13 // indirect
48+
github.com/mattn/go-isatty v0.0.17 // indirect
4549
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
4650
github.com/mitchellh/go-homedir v1.1.0 // indirect
4751
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4852
github.com/modern-go/reflect2 v1.0.2 // indirect
4953
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5054
github.com/opencontainers/go-digest v1.0.0 // indirect
51-
github.com/opencontainers/image-spec v1.1.0-rc3 // indirect
52-
github.com/prometheus/client_golang v1.17.0 // indirect
53-
github.com/prometheus/client_model v0.5.0 // indirect
54-
github.com/prometheus/common v0.45.0 // indirect
55+
github.com/opencontainers/image-spec v1.1.0 // indirect
56+
github.com/prometheus/client_golang v1.18.0 // indirect
57+
github.com/prometheus/client_model v0.6.0 // indirect
58+
github.com/prometheus/common v0.47.0 // indirect
5559
github.com/prometheus/procfs v0.12.0 // indirect
56-
github.com/sirupsen/logrus v1.9.1 // indirect
60+
github.com/sirupsen/logrus v1.9.3 // indirect
5761
github.com/spf13/pflag v1.0.5 // indirect
58-
github.com/vbatts/tar-split v0.11.3 // indirect
59-
golang.org/x/mod v0.14.0 // indirect
60-
golang.org/x/net v0.19.0 // indirect
61-
golang.org/x/oauth2 v0.15.0 // indirect
62-
golang.org/x/sync v0.5.0 // indirect
63-
golang.org/x/sys v0.15.0 // indirect
64-
golang.org/x/term v0.15.0 // indirect
62+
github.com/vbatts/tar-split v0.11.5 // indirect
63+
golang.org/x/mod v0.15.0 // indirect
64+
golang.org/x/net v0.21.0 // indirect
65+
golang.org/x/oauth2 v0.17.0 // indirect
66+
golang.org/x/sync v0.6.0 // indirect
67+
golang.org/x/sys v0.17.0 // indirect
68+
golang.org/x/term v0.17.0 // indirect
6569
golang.org/x/text v0.14.0 // indirect
6670
golang.org/x/time v0.5.0 // indirect
67-
golang.org/x/tools v0.16.0 // indirect
71+
golang.org/x/tools v0.18.0 // indirect
6872
google.golang.org/appengine v1.6.8 // indirect
69-
google.golang.org/protobuf v1.31.0 // indirect
73+
google.golang.org/protobuf v1.32.0 // indirect
7074
gopkg.in/inf.v0 v0.9.1 // indirect
7175
gopkg.in/yaml.v2 v2.4.0 // indirect
7276
gopkg.in/yaml.v3 v3.0.1 // indirect
73-
k8s.io/gengo v0.0.0-20230829151522-9cce18d56c01 // indirect
74-
k8s.io/klog/v2 v2.110.1 // indirect
75-
k8s.io/kube-openapi v0.0.0-20231129212854-f0671cc7e66a // indirect
76-
k8s.io/utils v0.0.0-20231127182322-b307cd553661 // indirect
77+
k8s.io/gengo v0.0.0-20240129211411-f967bbeff4b4 // indirect
78+
k8s.io/klog/v2 v2.120.1 // indirect
79+
k8s.io/kube-openapi v0.0.0-20240221221325-2ac9dc51f3f1 // indirect
80+
k8s.io/utils v0.0.0-20240102154912-e7106e64919e // indirect
7781
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
7882
sigs.k8s.io/yaml v1.4.0 // indirect
7983
)

0 commit comments

Comments
 (0)