Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: v2024.2.1 #2001

Merged
merged 3 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,31 @@
# CHANGELOG

# πŸš€ v2024.2.1 πŸš€

### `OTEL` plugin:
rustatian marked this conversation as resolved.
Show resolved Hide resolved

- πŸ”₯: Several improvements by @devnev: Do not set `Endpoint` and `Headers` for gRPC if they're empty: [PR](https://github.com/roadrunner-server/otel/pull/62), Support standard `OTEL` exporter protocol environment variables: [PR](https://github.com/roadrunner-server/otel/pull/63). (thanks @devnev)

### `RoadRunner-Temporal` plugin:
- πŸ›: gRPC client closed too early after shutdown: [BUG](https://github.com/roadrunner-server/roadrunner/issues/1986). (thanks @kkosowski-p)

### `AMQP` driver:
- πŸ›: `redial_timeout` was not respected when dynamically creating pipeline. [BUG](https://github.com/roadrunner-server/roadrunner/issues/2000), (thanks @algirdasci)

### <center>🧹 Chore:</center>

- πŸ§‘β€πŸ­: All plugins were updated to Go 1.23 (including `Velox` Dockerfile).

---

# πŸš€ v2024.2.0 πŸš€

# Upgrade guide: [link](https://docs.roadrunner.dev/docs/general/compatibility#upgrading-to-roadrunner-v2024.2.x)

## Community plugins

We are introducing a new term in the RoadRunner community β€” Community plugins.
If you have a brilliant idea for the http middleware or JOBS driver or even a new plugin - feel free to check our
We are introducing a new term in the RoadRunner community β€” Community plugins.
If you have a brilliant idea for the http middleware or JOBS driver or even a new plugin - feel free to check our
[Customization](../customization) tutorials, create and notify us about your plugin.

## Plugins updates:
Expand Down
172 changes: 86 additions & 86 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,58 +2,58 @@ module github.com/roadrunner-server/roadrunner/v2024

go 1.23

toolchain go1.23.0
toolchain go1.23.1

require (
github.com/buger/goterm v1.0.4
github.com/dustin/go-humanize v1.0.1
github.com/fatih/color v1.17.0
github.com/joho/godotenv v1.5.1
github.com/olekukonko/tablewriter v0.0.5
github.com/roadrunner-server/amqp/v5 v5.0.2
github.com/roadrunner-server/amqp/v5 v5.0.4
github.com/roadrunner-server/api/v4 v4.16.0
github.com/roadrunner-server/app-logger/v5 v5.0.2
github.com/roadrunner-server/beanstalk/v5 v5.0.2
github.com/roadrunner-server/boltdb/v5 v5.0.2
github.com/roadrunner-server/centrifuge/v5 v5.0.2
github.com/roadrunner-server/config/v5 v5.0.2
github.com/roadrunner-server/endure/v2 v2.5.0
github.com/roadrunner-server/app-logger/v5 v5.0.4
github.com/roadrunner-server/beanstalk/v5 v5.0.4
github.com/roadrunner-server/boltdb/v5 v5.0.4
github.com/roadrunner-server/centrifuge/v5 v5.0.4
github.com/roadrunner-server/config/v5 v5.0.4
github.com/roadrunner-server/endure/v2 v2.6.1
github.com/roadrunner-server/errors v1.4.1
github.com/roadrunner-server/fileserver/v5 v5.0.1
github.com/roadrunner-server/google-pub-sub/v5 v5.0.2
github.com/roadrunner-server/fileserver/v5 v5.0.3
github.com/roadrunner-server/google-pub-sub/v5 v5.0.4
github.com/roadrunner-server/goridge/v3 v3.8.3
github.com/roadrunner-server/grpc/v5 v5.0.4
github.com/roadrunner-server/gzip/v5 v5.0.2
github.com/roadrunner-server/headers/v5 v5.0.2
github.com/roadrunner-server/http/v5 v5.0.2
github.com/roadrunner-server/informer/v5 v5.0.2
github.com/roadrunner-server/jobs/v5 v5.0.3
github.com/roadrunner-server/kafka/v5 v5.0.2
github.com/roadrunner-server/kv/v5 v5.0.2
github.com/roadrunner-server/lock/v5 v5.0.2
github.com/roadrunner-server/logger/v5 v5.0.2
github.com/roadrunner-server/memcached/v5 v5.0.2
github.com/roadrunner-server/memory/v5 v5.0.2
github.com/roadrunner-server/metrics/v5 v5.0.2
github.com/roadrunner-server/nats/v5 v5.0.2
github.com/roadrunner-server/otel/v5 v5.0.1
github.com/roadrunner-server/pool v1.0.1
github.com/roadrunner-server/prometheus/v5 v5.0.1
github.com/roadrunner-server/proxy_ip_parser/v5 v5.0.2
github.com/roadrunner-server/redis/v5 v5.0.2
github.com/roadrunner-server/resetter/v5 v5.0.2
github.com/roadrunner-server/rpc/v5 v5.0.2
github.com/roadrunner-server/send/v5 v5.0.1
github.com/roadrunner-server/server/v5 v5.0.2
github.com/roadrunner-server/service/v5 v5.0.2
github.com/roadrunner-server/sqs/v5 v5.0.2
github.com/roadrunner-server/static/v5 v5.0.1
github.com/roadrunner-server/status/v5 v5.0.2
github.com/roadrunner-server/tcp/v5 v5.0.2
github.com/roadrunner-server/grpc/v5 v5.0.6
github.com/roadrunner-server/gzip/v5 v5.0.4
github.com/roadrunner-server/headers/v5 v5.0.4
github.com/roadrunner-server/http/v5 v5.0.4
github.com/roadrunner-server/informer/v5 v5.0.4
github.com/roadrunner-server/jobs/v5 v5.0.5
github.com/roadrunner-server/kafka/v5 v5.0.4
github.com/roadrunner-server/kv/v5 v5.0.4
github.com/roadrunner-server/lock/v5 v5.0.4
github.com/roadrunner-server/logger/v5 v5.0.4
github.com/roadrunner-server/memcached/v5 v5.0.4
github.com/roadrunner-server/memory/v5 v5.0.4
github.com/roadrunner-server/metrics/v5 v5.0.4
github.com/roadrunner-server/nats/v5 v5.0.4
github.com/roadrunner-server/otel/v5 v5.0.3
github.com/roadrunner-server/pool v1.0.2
github.com/roadrunner-server/prometheus/v5 v5.0.3
github.com/roadrunner-server/proxy_ip_parser/v5 v5.0.4
github.com/roadrunner-server/redis/v5 v5.0.4
github.com/roadrunner-server/resetter/v5 v5.0.5
github.com/roadrunner-server/rpc/v5 v5.0.4
github.com/roadrunner-server/send/v5 v5.0.3
github.com/roadrunner-server/server/v5 v5.1.2
github.com/roadrunner-server/service/v5 v5.0.4
github.com/roadrunner-server/sqs/v5 v5.0.4
github.com/roadrunner-server/static/v5 v5.0.3
github.com/roadrunner-server/status/v5 v5.0.4
github.com/roadrunner-server/tcp/v5 v5.0.4
github.com/spf13/cobra v1.8.1
github.com/spf13/viper v1.19.0
github.com/stretchr/testify v1.9.0
github.com/temporalio/roadrunner-temporal/v5 v5.1.0
github.com/temporalio/roadrunner-temporal/v5 v5.1.1
go.uber.org/automaxprocs v1.5.3
)

Expand All @@ -67,26 +67,26 @@ exclude (

require (
cloud.google.com/go v0.115.1 // indirect
cloud.google.com/go/auth v0.9.1 // indirect
cloud.google.com/go/auth v0.9.4 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.4 // indirect
cloud.google.com/go/compute/metadata v0.5.0 // indirect
cloud.google.com/go/iam v1.2.0 // indirect
cloud.google.com/go/pubsub v1.42.0 // indirect
cloud.google.com/go/pubsub v1.43.0 // indirect
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/aws/aws-sdk-go v1.55.5 // indirect
github.com/aws/aws-sdk-go-v2 v1.30.4 // indirect
github.com/aws/aws-sdk-go-v2/config v1.27.31 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.17.30 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.12 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.16 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.16 // indirect
github.com/aws/aws-sdk-go-v2 v1.30.5 // indirect
github.com/aws/aws-sdk-go-v2/config v1.27.33 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.17.32 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.13 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.17 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.17 // indirect
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.4 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.18 // indirect
github.com/aws/aws-sdk-go-v2/service/sqs v1.34.5 // indirect
github.com/aws/aws-sdk-go-v2/service/sso v1.22.5 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.5 // indirect
github.com/aws/aws-sdk-go-v2/service/sts v1.30.5 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.19 // indirect
github.com/aws/aws-sdk-go-v2/service/sqs v1.34.8 // indirect
github.com/aws/aws-sdk-go-v2/service/sso v1.22.7 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.7 // indirect
github.com/aws/aws-sdk-go-v2/service/sts v1.30.7 // indirect
github.com/aws/smithy-go v1.20.4 // indirect
github.com/beanstalkd/go-beanstalk v0.2.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
Expand All @@ -111,10 +111,10 @@ require (
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/mock v1.7.0-rc.1 // indirect
github.com/google/pprof v0.0.0-20240827171923-fa2c70bbbfe5 // indirect
github.com/google/pprof v0.0.0-20240910150728-a0b0bb1d4134 // indirect
github.com/google/s2a-go v0.1.8 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.3 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
github.com/googleapis/gax-go/v2 v2.13.0 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
Expand Down Expand Up @@ -144,12 +144,12 @@ require (
github.com/pierrec/lz4/v4 v4.1.21 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/prometheus/client_golang v1.20.2 // indirect
github.com/prometheus/client_golang v1.20.3 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.57.0 // indirect
github.com/prometheus/common v0.59.1 // indirect
github.com/prometheus/procfs v0.15.1 // indirect
github.com/quic-go/qpack v0.4.0 // indirect
github.com/quic-go/quic-go v0.46.0 // indirect
github.com/quic-go/qpack v0.5.1 // indirect
github.com/quic-go/quic-go v0.47.0 // indirect
github.com/rabbitmq/amqp091-go v1.10.0 // indirect
github.com/redis/go-redis/extra/rediscmd/v9 v9.5.3 // indirect
github.com/redis/go-redis/extra/redisotel/v9 v9.5.3 // indirect
Expand All @@ -160,7 +160,7 @@ require (
github.com/roadrunner-server/priority_queue v1.0.2 // indirect
github.com/roadrunner-server/tcplisten v1.5.1 // indirect
github.com/robfig/cron v1.2.0 // indirect
github.com/rs/cors v1.11.0 // indirect
github.com/rs/cors v1.11.1 // indirect
github.com/sagikazarmark/locafero v0.6.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
Expand All @@ -187,43 +187,43 @@ require (
go.etcd.io/bbolt v1.3.11 // indirect
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache v0.43.0 // indirect
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.54.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 // indirect
go.opentelemetry.io/contrib/propagators/jaeger v1.29.0 // indirect
go.opentelemetry.io/otel v1.29.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.29.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.29.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.29.0 // indirect
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.29.0 // indirect
go.opentelemetry.io/otel/exporters/zipkin v1.29.0 // indirect
go.opentelemetry.io/otel/metric v1.29.0 // indirect
go.opentelemetry.io/otel/sdk v1.29.0 // indirect
go.opentelemetry.io/otel/trace v1.29.0 // indirect
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.55.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.55.0 // indirect
go.opentelemetry.io/contrib/propagators/jaeger v1.30.0 // indirect
go.opentelemetry.io/otel v1.30.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.30.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.30.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.30.0 // indirect
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.30.0 // indirect
go.opentelemetry.io/otel/exporters/zipkin v1.30.0 // indirect
go.opentelemetry.io/otel/metric v1.30.0 // indirect
go.opentelemetry.io/otel/sdk v1.30.0 // indirect
go.opentelemetry.io/otel/trace v1.30.0 // indirect
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
go.temporal.io/api v1.39.0 // indirect
go.temporal.io/sdk v1.28.1 // indirect
go.temporal.io/sdk v1.29.1 // indirect
go.temporal.io/sdk/contrib/opentelemetry v0.6.0 // indirect
go.temporal.io/sdk/contrib/tally v0.2.0 // indirect
go.temporal.io/server v1.24.2 // indirect
go.temporal.io/server v1.25.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/mock v0.4.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
golang.org/x/crypto v0.26.0 // indirect
golang.org/x/exp v0.0.0-20240823005443-9b4947da3948 // indirect
golang.org/x/mod v0.20.0 // indirect
golang.org/x/net v0.28.0 // indirect
golang.org/x/oauth2 v0.22.0 // indirect
golang.org/x/crypto v0.27.0 // indirect
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
golang.org/x/mod v0.21.0 // indirect
golang.org/x/net v0.29.0 // indirect
golang.org/x/oauth2 v0.23.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.24.0 // indirect
golang.org/x/text v0.17.0 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/text v0.18.0 // indirect
golang.org/x/time v0.6.0 // indirect
golang.org/x/tools v0.24.0 // indirect
google.golang.org/api v0.195.0 // indirect
google.golang.org/genproto v0.0.0-20240827150818-7e3bb234dfed // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240827150818-7e3bb234dfed // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240827150818-7e3bb234dfed // indirect
google.golang.org/grpc v1.66.0 // indirect
golang.org/x/tools v0.25.0 // indirect
google.golang.org/api v0.197.0 // indirect
google.golang.org/genproto v0.0.0-20240903143218-8af14fe29dc1 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
google.golang.org/grpc v1.66.2 // indirect
google.golang.org/protobuf v1.34.2 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
Expand Down
Loading
Loading