Skip to content

Commit fa54e89

Browse files
committed
Update dependencies and add notice about JetStream
We have done a lot of R&D to bring JetStream to customers, it's stable, and being used widely in production. Enjoy. Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 9dfe6fa commit fa54e89

File tree

165 files changed

+19384
-1170
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+19384
-1170
lines changed

.github/workflows/build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build:
1313
strategy:
1414
matrix:
15-
go-version: [1.19.x]
15+
go-version: [1.21.x]
1616
os: [ubuntu-latest]
1717
concurrency:
1818
group: ${{ github.ref }}

.github/workflows/publish.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build:
99
strategy:
1010
matrix:
11-
go-version: [1.19.x]
11+
go-version: [1.21.x]
1212
os: [ubuntu-latest]
1313

1414
runs-on: ${{ matrix.os }}

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.19-alpine as build
2+
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.21-alpine as build
33

44
ENV GO111MODULE=on
55
ENV CGO_ENABLED=0

README.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## Notice
2+
3+
[NATS Streaming](https://github.com/nats-io/nats-streaming-server) was deprecated in June 2023 by Synadia, and will receive no more updates, including for critical security issues.
4+
5+
Migrate to OpenFaaS Standard for NATS JetStream, learn more:
6+
7+
* [Docs: JetStream for OpenFaaS](https://docs.openfaas.com/openfaas-pro/jetstream/)
8+
* [Announcement: The Next Generation of Queuing: JetStream for OpenFaaS](https://www.openfaas.com/blog/jetstream-for-openfaas/)
9+
110
## queue-worker (Community Edition) for NATS Streaming
211

312
[![Go Report Card](https://goreportcard.com/badge/github.com/openfaas/nats-queue-worker)](https://goreportcard.com/badge/github.com/openfaas/nats-queue-worker)
@@ -10,12 +19,6 @@
1019

1120
The queue-worker (Community Edition) processes asynchronous function invocation requests, you can read more about this in the [async documentation](https://docs.openfaas.com/reference/async/)
1221

13-
## Notice
14-
15-
All OpenFaaS users will need to move to NATS JetStream before June 2022, at which point, the vendor will stop providing support and fixes.
16-
17-
Learn more: [The Next Generation of Queuing: JetStream for OpenFaaS](https://www.openfaas.com/blog/jetstream-for-openfaas/)
18-
1922
## Usage
2023

2124
Screenshots from keynote / video - find out more over at https://www.openfaas.com/

go.mod

+17-14
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,30 @@
11
module github.com/openfaas/nats-queue-worker
22

3-
go 1.18
3+
go 1.20
44

55
require (
66
github.com/nats-io/stan.go v0.10.4
7-
github.com/openfaas/faas-provider v0.19.1
7+
github.com/openfaas/faas-provider v0.24.4
88
)
99

1010
require (
1111
github.com/beorn7/perks v1.0.1 // indirect
12-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
12+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
1313
github.com/gogo/protobuf v1.3.2 // indirect
14-
github.com/golang/protobuf v1.5.2 // indirect
14+
github.com/golang/protobuf v1.5.3 // indirect
1515
github.com/gorilla/mux v1.8.0 // indirect
16-
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
17-
github.com/nats-io/nats.go v1.22.1 // indirect
18-
github.com/nats-io/nkeys v0.3.0 // indirect
16+
github.com/klauspost/compress v1.17.0 // indirect
17+
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
18+
github.com/nats-io/nats-server/v2 v2.10.3 // indirect
19+
github.com/nats-io/nats-streaming-server v0.25.5 // indirect
20+
github.com/nats-io/nats.go v1.30.2 // indirect
21+
github.com/nats-io/nkeys v0.4.5 // indirect
1922
github.com/nats-io/nuid v1.0.1 // indirect
20-
github.com/prometheus/client_golang v1.12.2 // indirect
21-
github.com/prometheus/client_model v0.2.0 // indirect
22-
github.com/prometheus/common v0.32.1 // indirect
23-
github.com/prometheus/procfs v0.7.3 // indirect
24-
golang.org/x/crypto v0.5.0 // indirect
25-
golang.org/x/sys v0.4.0 // indirect
26-
google.golang.org/protobuf v1.26.0 // indirect
23+
github.com/prometheus/client_golang v1.16.0 // indirect
24+
github.com/prometheus/client_model v0.3.0 // indirect
25+
github.com/prometheus/common v0.42.0 // indirect
26+
github.com/prometheus/procfs v0.11.0 // indirect
27+
golang.org/x/crypto v0.13.0 // indirect
28+
golang.org/x/sys v0.12.0 // indirect
29+
google.golang.org/protobuf v1.30.0 // indirect
2730
)

go.sum

+22-509
Large diffs are not rendered by default.

vendor/github.com/klauspost/compress/LICENSE

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

0 commit comments

Comments
 (0)