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: 2024.1.1 #1911

Merged
merged 3 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# CHANGELOG

# 🚀 v2024.1.1 🚀

### `HTTP` plugin:
- 🐛Bug: Fix for the NPE on types check: [BUG](https://github.com/roadrunner-server/roadrunner/issues/1903), (thanks @cto-asocial)
rustatian marked this conversation as resolved.
Show resolved Hide resolved

### `gRPC` plugin:
- 🔥 Remove experimental status from the OTEL in `gRPC`, [PR](https://github.com/roadrunner-server/grpc/pull/133)
rustatian marked this conversation as resolved.
Show resolved Hide resolved

### `SDK`:
- 🔥 Additional debug logging for the `maxExecs` with `jitter`: [PR](https://github.com/roadrunner-server/sdk/pull/121) (thanks @Kaspiman)

---

# 🚀 v2024.1.0 🚀

## Upgrade guide: [link](https://docs.roadrunner.dev/general/compatibility)
Expand Down
78 changes: 39 additions & 39 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,49 +8,49 @@ require (
github.com/fatih/color v1.16.0
github.com/joho/godotenv v1.5.1
github.com/olekukonko/tablewriter v0.0.5
github.com/roadrunner-server/amqp/v4 v4.11.0
github.com/roadrunner-server/amqp/v4 v4.11.1
github.com/roadrunner-server/api/v4 v4.12.0
github.com/roadrunner-server/app-logger/v4 v4.4.0
github.com/roadrunner-server/beanstalk/v4 v4.8.0
github.com/roadrunner-server/boltdb/v4 v4.9.0
github.com/roadrunner-server/centrifuge/v4 v4.9.0
github.com/roadrunner-server/config/v4 v4.8.0
github.com/roadrunner-server/app-logger/v4 v4.4.1
github.com/roadrunner-server/beanstalk/v4 v4.8.1
github.com/roadrunner-server/boltdb/v4 v4.9.1
github.com/roadrunner-server/centrifuge/v4 v4.9.1
github.com/roadrunner-server/config/v4 v4.8.1
github.com/roadrunner-server/endure/v2 v2.4.4
github.com/roadrunner-server/errors v1.4.0
github.com/roadrunner-server/fileserver/v4 v4.3.0
github.com/roadrunner-server/fileserver/v4 v4.3.1
github.com/roadrunner-server/goridge/v3 v3.8.2
github.com/roadrunner-server/grpc/v4 v4.8.0
github.com/roadrunner-server/gzip/v4 v4.3.0
github.com/roadrunner-server/headers/v4 v4.4.0
github.com/roadrunner-server/http/v4 v4.7.2
github.com/roadrunner-server/informer/v4 v4.5.0
github.com/roadrunner-server/jobs/v4 v4.9.0
github.com/roadrunner-server/kafka/v4 v4.6.0
github.com/roadrunner-server/kv/v4 v4.6.0
github.com/roadrunner-server/lock/v4 v4.7.0
github.com/roadrunner-server/logger/v4 v4.4.0
github.com/roadrunner-server/memcached/v4 v4.5.0
github.com/roadrunner-server/memory/v4 v4.8.0
github.com/roadrunner-server/metrics/v4 v4.3.0
github.com/roadrunner-server/nats/v4 v4.8.0
github.com/roadrunner-server/otel/v4 v4.5.0
github.com/roadrunner-server/prometheus/v4 v4.3.0
github.com/roadrunner-server/proxy_ip_parser/v4 v4.3.0
github.com/roadrunner-server/redis/v4 v4.4.0
github.com/roadrunner-server/resetter/v4 v4.3.0
github.com/roadrunner-server/rpc/v4 v4.4.0
github.com/roadrunner-server/sdk/v4 v4.7.1
github.com/roadrunner-server/send/v4 v4.4.0
github.com/roadrunner-server/server/v4 v4.8.0
github.com/roadrunner-server/service/v4 v4.7.0
github.com/roadrunner-server/sqs/v4 v4.8.0
github.com/roadrunner-server/static/v4 v4.3.0
github.com/roadrunner-server/status/v4 v4.6.0
github.com/roadrunner-server/tcp/v4 v4.5.0
github.com/roadrunner-server/grpc/v4 v4.8.1
github.com/roadrunner-server/gzip/v4 v4.3.1
github.com/roadrunner-server/headers/v4 v4.4.1
github.com/roadrunner-server/http/v4 v4.7.3
github.com/roadrunner-server/informer/v4 v4.5.1
github.com/roadrunner-server/jobs/v4 v4.9.1
github.com/roadrunner-server/kafka/v4 v4.6.1
github.com/roadrunner-server/kv/v4 v4.6.1
github.com/roadrunner-server/lock/v4 v4.7.1
github.com/roadrunner-server/logger/v4 v4.4.1
github.com/roadrunner-server/memcached/v4 v4.5.1
github.com/roadrunner-server/memory/v4 v4.8.1
github.com/roadrunner-server/metrics/v4 v4.3.1
github.com/roadrunner-server/nats/v4 v4.8.1
github.com/roadrunner-server/otel/v4 v4.5.1
github.com/roadrunner-server/prometheus/v4 v4.3.1
github.com/roadrunner-server/proxy_ip_parser/v4 v4.3.1
github.com/roadrunner-server/redis/v4 v4.4.1
github.com/roadrunner-server/resetter/v4 v4.3.1
github.com/roadrunner-server/rpc/v4 v4.4.1
github.com/roadrunner-server/sdk/v4 v4.7.2
github.com/roadrunner-server/send/v4 v4.4.1
github.com/roadrunner-server/server/v4 v4.8.1
github.com/roadrunner-server/service/v4 v4.7.1
github.com/roadrunner-server/sqs/v4 v4.8.1
github.com/roadrunner-server/static/v4 v4.3.1
github.com/roadrunner-server/status/v4 v4.6.1
github.com/roadrunner-server/tcp/v4 v4.5.1
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.18.2
github.com/stretchr/testify v1.9.0
github.com/temporalio/roadrunner-temporal/v4 v4.7.0
github.com/temporalio/roadrunner-temporal/v4 v4.7.1
go.uber.org/automaxprocs v1.5.3
)

Expand All @@ -64,7 +64,7 @@ exclude (

require (
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/aws/aws-sdk-go v1.51.31 // indirect
github.com/aws/aws-sdk-go v1.52.0 // indirect
github.com/aws/aws-sdk-go-v2 v1.26.1 // indirect
github.com/aws/aws-sdk-go-v2/config v1.27.11 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.17.11 // indirect
Expand Down Expand Up @@ -123,7 +123,7 @@ require (
github.com/onsi/ginkgo/v2 v2.17.2 // indirect
github.com/openzipkin/zipkin-go v0.4.3 // indirect
github.com/pborman/uuid v1.2.1 // indirect
github.com/pelletier/go-toml/v2 v2.2.1 // indirect
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
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
Expand Down Expand Up @@ -182,7 +182,7 @@ require (
go.temporal.io/sdk v1.26.1 // indirect
go.temporal.io/sdk/contrib/opentelemetry v0.5.0 // indirect
go.temporal.io/sdk/contrib/tally v0.2.0 // indirect
go.temporal.io/server v1.23.0 // indirect
go.temporal.io/server v1.23.1 // 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
Expand Down
Loading
Loading