Skip to content

Commit a39c549

Browse files
authored
[#1871]: release: 2023.3.11
2 parents 5bb3efe + 84e2dbd commit a39c549

File tree

4 files changed

+265
-259
lines changed

4 files changed

+265
-259
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# CHANGELOG
22

3+
# <center> 🚀 v2023.3.11 🚀 </center>
4+
5+
### `Centrifuge` plugin:
6+
- 🐛️ Check the connection propertly before attempting to send a request: [PR](https://github.com/roadrunner-server/centrifuge/pull/78)
7+
8+
### `OTEL` plugin:
9+
- 🐛️ Do not force to set `endpoint` and `headers`: [BUG](https://github.com/roadrunner-server/roadrunner/issues/1848). Update docs on OTEL env usage: [Docs](https://docs.roadrunner.dev/logging-and-observability/otel), (thanks @fasdalf and @arku31).
10+
11+
### <center>🧹 Chore:</center>
12+
13+
- 🧑‍🏭 **Dependencies**: Build with Go 1.22.0.
14+
15+
---
16+
317
# <center> 🚀 v2023.3.10 🚀 </center>
418

519
### Core `SDK` bugfixes:

go.mod

+83-87
Original file line numberDiff line numberDiff line change
@@ -1,84 +1,83 @@
11
module github.com/roadrunner-server/roadrunner/v2023
22

3-
go 1.22
4-
5-
toolchain go1.22.0
3+
go 1.22.0
64

75
require (
86
github.com/buger/goterm v1.0.4
97
github.com/dustin/go-humanize v1.0.1
108
github.com/fatih/color v1.16.0
119
github.com/joho/godotenv v1.5.1
1210
github.com/olekukonko/tablewriter v0.0.5
13-
github.com/roadrunner-server/amqp/v4 v4.9.12
11+
github.com/roadrunner-server/amqp/v4 v4.9.13
1412
github.com/roadrunner-server/api/v4 v4.10.0
15-
github.com/roadrunner-server/app-logger/v4 v4.2.11
16-
github.com/roadrunner-server/beanstalk/v4 v4.6.5
17-
github.com/roadrunner-server/boltdb/v4 v4.7.13
18-
github.com/roadrunner-server/centrifuge/v4 v4.6.3
19-
github.com/roadrunner-server/config/v4 v4.6.7
13+
github.com/roadrunner-server/app-logger/v4 v4.2.12
14+
github.com/roadrunner-server/beanstalk/v4 v4.6.6
15+
github.com/roadrunner-server/boltdb/v4 v4.7.14
16+
github.com/roadrunner-server/centrifuge/v4 v4.6.5
17+
github.com/roadrunner-server/config/v4 v4.6.8
2018
github.com/roadrunner-server/endure/v2 v2.4.3
2119
github.com/roadrunner-server/errors v1.4.0
22-
github.com/roadrunner-server/fileserver/v4 v4.1.15
20+
github.com/roadrunner-server/fileserver/v4 v4.1.16
2321
github.com/roadrunner-server/goridge/v3 v3.8.1
24-
github.com/roadrunner-server/grpc/v4 v4.6.5
25-
github.com/roadrunner-server/gzip/v4 v4.1.15
26-
github.com/roadrunner-server/headers/v4 v4.2.16
27-
github.com/roadrunner-server/http/v4 v4.5.1
28-
github.com/roadrunner-server/informer/v4 v4.3.14
29-
github.com/roadrunner-server/jobs/v4 v4.7.13
30-
github.com/roadrunner-server/kafka/v4 v4.4.16
31-
github.com/roadrunner-server/kv/v4 v4.4.14
32-
github.com/roadrunner-server/lock/v4 v4.5.12
33-
github.com/roadrunner-server/logger/v4 v4.2.14
34-
github.com/roadrunner-server/memcached/v4 v4.3.13
35-
github.com/roadrunner-server/memory/v4 v4.6.14
36-
github.com/roadrunner-server/metrics/v4 v4.1.16
37-
github.com/roadrunner-server/nats/v4 v4.6.7
38-
github.com/roadrunner-server/otel/v4 v4.3.12
39-
github.com/roadrunner-server/prometheus/v4 v4.1.15
40-
github.com/roadrunner-server/proxy_ip_parser/v4 v4.1.15
41-
github.com/roadrunner-server/redis/v4 v4.2.16
42-
github.com/roadrunner-server/resetter/v4 v4.0.21
43-
github.com/roadrunner-server/rpc/v4 v4.2.15
22+
github.com/roadrunner-server/grpc/v4 v4.6.6
23+
github.com/roadrunner-server/gzip/v4 v4.1.16
24+
github.com/roadrunner-server/headers/v4 v4.2.17
25+
github.com/roadrunner-server/http/v4 v4.5.2
26+
github.com/roadrunner-server/informer/v4 v4.3.15
27+
github.com/roadrunner-server/jobs/v4 v4.7.14
28+
github.com/roadrunner-server/kafka/v4 v4.4.17
29+
github.com/roadrunner-server/kv/v4 v4.4.15
30+
github.com/roadrunner-server/lock/v4 v4.5.13
31+
github.com/roadrunner-server/logger/v4 v4.2.15
32+
github.com/roadrunner-server/memcached/v4 v4.3.14
33+
github.com/roadrunner-server/memory/v4 v4.6.15
34+
github.com/roadrunner-server/metrics/v4 v4.1.17
35+
github.com/roadrunner-server/nats/v4 v4.6.8
36+
github.com/roadrunner-server/otel/v4 v4.3.14
37+
github.com/roadrunner-server/prometheus/v4 v4.1.16
38+
github.com/roadrunner-server/proxy_ip_parser/v4 v4.1.16
39+
github.com/roadrunner-server/redis/v4 v4.2.17
40+
github.com/roadrunner-server/resetter/v4 v4.1.1
41+
github.com/roadrunner-server/rpc/v4 v4.2.16
4442
github.com/roadrunner-server/sdk/v4 v4.6.0
45-
github.com/roadrunner-server/send/v4 v4.2.15
46-
github.com/roadrunner-server/server/v4 v4.5.7
47-
github.com/roadrunner-server/service/v4 v4.5.3
48-
github.com/roadrunner-server/sqs/v4 v4.6.2
49-
github.com/roadrunner-server/static/v4 v4.1.15
50-
github.com/roadrunner-server/status/v4 v4.4.13
51-
github.com/roadrunner-server/tcp/v4 v4.3.12
43+
github.com/roadrunner-server/send/v4 v4.2.16
44+
github.com/roadrunner-server/server/v4 v4.5.8
45+
github.com/roadrunner-server/service/v4 v4.5.4
46+
github.com/roadrunner-server/sqs/v4 v4.6.3
47+
github.com/roadrunner-server/static/v4 v4.1.16
48+
github.com/roadrunner-server/status/v4 v4.4.14
49+
github.com/roadrunner-server/tcp/v4 v4.3.13
5250
github.com/spf13/cobra v1.8.0
5351
github.com/spf13/viper v1.18.2
5452
github.com/stretchr/testify v1.8.4
55-
github.com/temporalio/roadrunner-temporal/v4 v4.5.9
53+
github.com/temporalio/roadrunner-temporal/v4 v4.6.0
5654
go.uber.org/automaxprocs v1.5.3
5755
)
5856

5957
exclude (
6058
github.com/spf13/viper v1.18.0
6159
github.com/spf13/viper v1.18.1
60+
github.com/uber-go/tally/v4 v4.1.11
6261
go.temporal.io/api v1.26.1
6362
)
6463

6564
require (
6665
github.com/andybalholm/brotli v1.1.0 // indirect
67-
github.com/aws/aws-sdk-go v1.50.9 // indirect
68-
github.com/aws/aws-sdk-go-v2 v1.24.1 // indirect
69-
github.com/aws/aws-sdk-go-v2/config v1.26.6 // indirect
70-
github.com/aws/aws-sdk-go-v2/credentials v1.16.16 // indirect
71-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.11 // indirect
72-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.10 // indirect
73-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.10 // indirect
74-
github.com/aws/aws-sdk-go-v2/internal/ini v1.7.3 // indirect
75-
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.4 // indirect
76-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.10 // indirect
77-
github.com/aws/aws-sdk-go-v2/service/sqs v1.29.7 // indirect
78-
github.com/aws/aws-sdk-go-v2/service/sso v1.18.7 // indirect
79-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.7 // indirect
80-
github.com/aws/aws-sdk-go-v2/service/sts v1.26.7 // indirect
81-
github.com/aws/smithy-go v1.19.0 // indirect
66+
github.com/aws/aws-sdk-go v1.50.18 // indirect
67+
github.com/aws/aws-sdk-go-v2 v1.25.0 // indirect
68+
github.com/aws/aws-sdk-go-v2/config v1.27.0 // indirect
69+
github.com/aws/aws-sdk-go-v2/credentials v1.17.0 // indirect
70+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.15.0 // indirect
71+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.0 // indirect
72+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.0 // indirect
73+
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect
74+
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.0 // indirect
75+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.0 // indirect
76+
github.com/aws/aws-sdk-go-v2/service/sqs v1.30.0 // indirect
77+
github.com/aws/aws-sdk-go-v2/service/sso v1.19.0 // indirect
78+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.22.0 // indirect
79+
github.com/aws/aws-sdk-go-v2/service/sts v1.27.0 // indirect
80+
github.com/aws/smithy-go v1.20.0 // indirect
8281
github.com/beanstalkd/go-beanstalk v0.2.0 // indirect
8382
github.com/beorn7/perks v1.0.1 // indirect
8483
github.com/bradfitz/gomemcache v0.0.0-20230905024940-24af94b03874 // indirect
@@ -98,20 +97,17 @@ require (
9897
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
9998
github.com/goccy/go-json v0.10.2 // indirect
10099
github.com/gofiber/fiber/v2 v2.52.0 // indirect
101-
github.com/gogo/googleapis v1.4.1 // indirect
102100
github.com/gogo/protobuf v1.3.2 // indirect
103-
github.com/gogo/status v1.1.1 // indirect
104101
github.com/golang/mock v1.7.0-rc.1 // indirect
105102
github.com/golang/protobuf v1.5.3 // indirect
106-
github.com/google/pprof v0.0.0-20240130152714-0ed6a68c8d9e // indirect
103+
github.com/google/pprof v0.0.0-20240207164012-fb44976bdcd5 // indirect
107104
github.com/google/uuid v1.6.0 // indirect
108105
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
109-
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
110106
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1 // indirect
111107
github.com/hashicorp/hcl v1.0.0 // indirect
112108
github.com/inconshreveable/mousetrap v1.1.0 // indirect
113109
github.com/jmespath/go-jmespath v0.4.0 // indirect
114-
github.com/klauspost/compress v1.17.5 // indirect
110+
github.com/klauspost/compress v1.17.6 // indirect
115111
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
116112
github.com/libdns/libdns v0.2.1 // indirect
117113
github.com/magiconair/properties v1.8.7 // indirect
@@ -121,7 +117,7 @@ require (
121117
github.com/mholt/acmez v1.2.0 // indirect
122118
github.com/miekg/dns v1.1.58 // indirect
123119
github.com/mitchellh/mapstructure v1.5.0 // indirect
124-
github.com/nats-io/nats.go v1.32.0 // indirect
120+
github.com/nats-io/nats.go v1.33.0 // indirect
125121
github.com/nats-io/nkeys v0.4.7 // indirect
126122
github.com/nats-io/nuid v1.0.1 // indirect
127123
github.com/onsi/ginkgo/v2 v2.15.0 // indirect
@@ -133,15 +129,15 @@ require (
133129
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
134130
github.com/prometheus/client_golang v1.18.0 // indirect
135131
github.com/prometheus/client_model v0.5.0 // indirect
136-
github.com/prometheus/common v0.46.0 // indirect
132+
github.com/prometheus/common v0.47.0 // indirect
137133
github.com/prometheus/procfs v0.12.0 // indirect
138134
github.com/quic-go/qpack v0.4.0 // indirect
139135
github.com/quic-go/quic-go v0.41.0 // indirect
140136
github.com/rabbitmq/amqp091-go v1.9.0 // indirect
141137
github.com/redis/go-redis/extra/rediscmd/v9 v9.0.5 // indirect
142138
github.com/redis/go-redis/extra/redisotel/v9 v9.0.5 // indirect
143139
github.com/redis/go-redis/v9 v9.4.0 // indirect
144-
github.com/rivo/uniseg v0.4.6 // indirect
140+
github.com/rivo/uniseg v0.4.7 // indirect
145141
github.com/roadrunner-server/tcplisten v1.4.0 // indirect
146142
github.com/robfig/cron v1.2.0 // indirect
147143
github.com/rs/cors v1.10.1 // indirect
@@ -156,54 +152,54 @@ require (
156152
github.com/subosito/gotenv v1.6.0 // indirect
157153
github.com/tklauser/go-sysconf v0.3.13 // indirect
158154
github.com/tklauser/numcpus v0.7.0 // indirect
159-
github.com/twmb/franz-go v1.16.0 // indirect
155+
github.com/twmb/franz-go v1.16.1 // indirect
160156
github.com/twmb/franz-go/pkg/kmsg v1.7.0 // indirect
161157
github.com/twmb/murmur3 v1.1.8 // indirect
162158
github.com/uber-go/tally/v4 v4.1.10 // indirect
163159
github.com/valyala/bytebufferpool v1.0.0 // indirect
164-
github.com/valyala/fasthttp v1.51.0 // indirect
160+
github.com/valyala/fasthttp v1.52.0 // indirect
165161
github.com/valyala/tcplisten v1.0.0 // indirect
166162
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
167163
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
168164
github.com/yusufpapurcu/wmi v1.2.4 // indirect
169165
github.com/zeebo/blake3 v0.2.3 // indirect
170166
go.etcd.io/bbolt v1.3.8 // indirect
171167
go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache v0.43.0 // indirect
172-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0 // indirect
173-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect
174-
go.opentelemetry.io/contrib/propagators/jaeger v1.22.0 // indirect
175-
go.opentelemetry.io/otel v1.22.0 // indirect
176-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.22.0 // indirect
177-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.22.0 // indirect
178-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.22.0 // indirect
179-
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.22.0 // indirect
180-
go.opentelemetry.io/otel/exporters/zipkin v1.22.0 // indirect
181-
go.opentelemetry.io/otel/metric v1.22.0 // indirect
182-
go.opentelemetry.io/otel/sdk v1.22.0 // indirect
183-
go.opentelemetry.io/otel/trace v1.22.0 // indirect
168+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.48.0 // indirect
169+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.48.0 // indirect
170+
go.opentelemetry.io/contrib/propagators/jaeger v1.23.0 // indirect
171+
go.opentelemetry.io/otel v1.23.1 // indirect
172+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.23.1 // indirect
173+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.23.1 // indirect
174+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.23.1 // indirect
175+
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.23.1 // indirect
176+
go.opentelemetry.io/otel/exporters/zipkin v1.23.1 // indirect
177+
go.opentelemetry.io/otel/metric v1.23.1 // indirect
178+
go.opentelemetry.io/otel/sdk v1.23.1 // indirect
179+
go.opentelemetry.io/otel/trace v1.23.1 // indirect
184180
go.opentelemetry.io/proto/otlp v1.1.0 // indirect
185-
go.temporal.io/api v1.26.0 // indirect
186-
go.temporal.io/sdk v1.25.1 // indirect
181+
go.temporal.io/api v1.27.0 // indirect
182+
go.temporal.io/sdk v1.26.0-rc.2 // indirect
187183
go.temporal.io/sdk/contrib/opentelemetry v0.4.0 // indirect
188184
go.temporal.io/sdk/contrib/tally v0.2.0 // indirect
189185
go.temporal.io/server v1.22.4 // indirect
190186
go.uber.org/atomic v1.11.0 // indirect
191187
go.uber.org/mock v0.4.0 // indirect
192188
go.uber.org/multierr v1.11.0 // indirect
193189
go.uber.org/zap v1.26.0 // indirect
194-
golang.org/x/crypto v0.18.0 // indirect
195-
golang.org/x/exp v0.0.0-20240119083558-1b970713d09a // indirect
196-
golang.org/x/mod v0.14.0 // indirect
197-
golang.org/x/net v0.20.0 // indirect
190+
golang.org/x/crypto v0.19.0 // indirect
191+
golang.org/x/exp v0.0.0-20240213143201-ec583247a57a // indirect
192+
golang.org/x/mod v0.15.0 // indirect
193+
golang.org/x/net v0.21.0 // indirect
198194
golang.org/x/sync v0.6.0 // indirect
199-
golang.org/x/sys v0.16.0 // indirect
195+
golang.org/x/sys v0.17.0 // indirect
200196
golang.org/x/text v0.14.0 // indirect
201197
golang.org/x/time v0.5.0 // indirect
202-
golang.org/x/tools v0.17.0 // indirect
203-
google.golang.org/genproto v0.0.0-20240125205218-1f4bbc51befe // indirect
204-
google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe // indirect
205-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect
206-
google.golang.org/grpc v1.61.0 // indirect
198+
golang.org/x/tools v0.18.0 // indirect
199+
google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 // indirect
200+
google.golang.org/genproto/googleapis/api v0.0.0-20240213162025-012b6fc9bca9 // indirect
201+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240213162025-012b6fc9bca9 // indirect
202+
google.golang.org/grpc v1.61.1 // indirect
207203
google.golang.org/protobuf v1.32.0 // indirect
208204
gopkg.in/ini.v1 v1.67.0 // indirect
209205
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect

0 commit comments

Comments
 (0)