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: v2023.3.3 #1761

Merged
merged 2 commits into from
Oct 26, 2023
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
18 changes: 0 additions & 18 deletions .rr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,24 +43,6 @@ server:
- SOME_KEY: "SOME_VALUE"
- SOME_KEY2: "SOME_VALUE2"

#[SINCE 2023.2]
after_init:
# Command to execute after the main server's command
#
# This option is required if using on_init
command: "any php or script here"

# Script execute timeout
#
# Default: 60s [60m, 60h], if used w/o units its means - NANOSECONDS.
exec_timeout: 20s

# Environment variables for the worker processes.
#
# Default: <empty map>
env:
- SOME_KEY: "SOME_VALUE"
- SOME_KEY2: "SOME_VALUE2"
# Worker starting command, with any required arguments.
#
# This option is required.
Expand Down
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
# CHANGELOG

# <center> 🚀 v2023.3.3 [Bugfix] 🚀 </center>

## 🩹 Fixes

- 🐛 **RR Core**: Fix removed by mistake RPC endpoint: [ISSUE](https://github.com/roadrunner-server/roadrunner/issues/1758), (thanks @Kaspiman)

---


# <center> 🚀 v2023.3.2 [Maintenance] 🚀 </center>

## 🩹 Fixes

- 🐛 **Temporal**: Fix incorrect log entry: [ISSUE](https://github.com/roadrunner-server/roadrunner/issues/1752), (thanks @roxblnfk)

---

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

Expand Down Expand Up @@ -226,7 +236,6 @@ server:
- ✒️ **Headers middleware**: Actualize CORS support: [FR](https://github.com/roadrunner-server/roadrunner/issues/909), (thanks @rmikalkenas, @hustlahusky)
- ✒️ **RoadRunner CLI**: Additional [semgrep](https://semgrep.dev/) security scanner.
- ✒️ **Docker builds**: New tags: `v2023`, `v2023.x` and with bugfix: `v2023.x.x`. The `latest` tag points to the latest **stable** release. All `rc`, `beta`, `alpha` releases will no longer be tagged with `latest`.
- ✒️ **Server plugin**: `after_init` option. This is a new `server` option and, like `on_init`, can contain any custom command to be fired after each pool of workers is initialized. For example, if you have 2 plugins: `http` and `grpc`, the `after_init` command would be fired twice: [FR](https://github.com/roadrunner-server/roadrunner/issues/1554), (thanks @rauanmayemir).
- ✒️ **AMQP driver**: Support for the `TLS` transport named `amqps`: [FR](https://github.com/roadrunner-server/roadrunner/issues/1538), (thanks @marcosraudkett)
- ✒️ **JOBS plugin**: Support for the workers health/readiness checks. [PR](https://github.com/roadrunner-server/jobs/pull/81), (thanks @Kaspiman)
- ✒️ **JOBS plugin**: Delete all messages that were in the priority queue when the pipeline was deleted (1-st part of the BUG), [BUG](https://github.com/roadrunner-server/roadrunner/issues/1382)
Expand All @@ -252,7 +261,6 @@ server:
- ✒️ **Headers middleware**: Actualize CORS support: [FR](https://github.com/roadrunner-server/roadrunner/issues/909), (thanks @rmikalkenas, @hustlahusky)
- ✒️ **RoadRunner CLI**: Additional [semgrep](https://semgrep.dev/) security scanner.
- ✒️ **Docker builds**: New tags: `v2023`, `v2023.x` and with bugfix: `v2023.x.x`. The `latest` tag points to the latest **stable** release. All `rc`, `beta`, `alpha` releases will no longer be tagged with `latest`.
- ✒️ **Server plugin**: `after_init` option. This is a new `server` option and, like `on_init`, can contain any custom command to be fired after each pool of workers is initialized. For example, if you have 2 plugins: `http` and `grpc`, the `after_init` command would be fired twice: [FR](https://github.com/roadrunner-server/roadrunner/issues/1554), (thanks @rauanmayemir).
- ✒️ **AMQP driver**: Support for the `TLS` transport named `amqps`: [FR](https://github.com/roadrunner-server/roadrunner/issues/1538), (thanks @marcosraudkett)
- ✒️ **JOBS plugin**: Support for the workers health/readiness checks. [PR](https://github.com/roadrunner-server/jobs/pull/81), (thanks @Kaspiman)
- ✒️ **JOBS plugin**: Delete all messages that were in the priority queue when the pipeline was deleted (1-st part of the BUG), [BUG](https://github.com/roadrunner-server/roadrunner/issues/1382)
Expand Down
82 changes: 41 additions & 41 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,45 +10,45 @@ require (
github.com/fatih/color v1.15.0
github.com/joho/godotenv v1.5.1
github.com/olekukonko/tablewriter v0.0.5
github.com/roadrunner-server/amqp/v4 v4.9.3
github.com/roadrunner-server/amqp/v4 v4.9.4
github.com/roadrunner-server/api/v4 v4.9.0
github.com/roadrunner-server/app-logger/v4 v4.2.3
github.com/roadrunner-server/beanstalk/v4 v4.5.8
github.com/roadrunner-server/boltdb/v4 v4.7.5
github.com/roadrunner-server/centrifuge/v4 v4.5.2
github.com/roadrunner-server/config/v4 v4.4.8
github.com/roadrunner-server/app-logger/v4 v4.2.4
github.com/roadrunner-server/beanstalk/v4 v4.5.9
github.com/roadrunner-server/boltdb/v4 v4.7.6
github.com/roadrunner-server/centrifuge/v4 v4.5.3
github.com/roadrunner-server/config/v4 v4.4.9
github.com/roadrunner-server/endure/v2 v2.4.3
github.com/roadrunner-server/errors v1.3.0
github.com/roadrunner-server/fileserver/v4 v4.1.7
github.com/roadrunner-server/fileserver/v4 v4.1.8
github.com/roadrunner-server/goridge/v3 v3.8.1
github.com/roadrunner-server/grpc/v4 v4.5.5
github.com/roadrunner-server/gzip/v4 v4.1.7
github.com/roadrunner-server/headers/v4 v4.2.8
github.com/roadrunner-server/http/v4 v4.4.4
github.com/roadrunner-server/informer/v4 v4.3.6
github.com/roadrunner-server/jobs/v4 v4.7.5
github.com/roadrunner-server/kafka/v4 v4.4.8
github.com/roadrunner-server/kv/v4 v4.4.6
github.com/roadrunner-server/lock/v4 v4.5.4
github.com/roadrunner-server/logger/v4 v4.2.6
github.com/roadrunner-server/memcached/v4 v4.3.5
github.com/roadrunner-server/memory/v4 v4.6.6
github.com/roadrunner-server/metrics/v4 v4.1.8
github.com/roadrunner-server/nats/v4 v4.5.7
github.com/roadrunner-server/otel/v4 v4.3.4
github.com/roadrunner-server/prometheus/v4 v4.1.7
github.com/roadrunner-server/proxy_ip_parser/v4 v4.1.7
github.com/roadrunner-server/redis/v4 v4.2.7
github.com/roadrunner-server/resetter/v4 v4.0.13
github.com/roadrunner-server/rpc/v4 v4.2.7
github.com/roadrunner-server/sdk/v4 v4.5.2
github.com/roadrunner-server/send/v4 v4.2.7
github.com/roadrunner-server/server/v4 v4.4.4
github.com/roadrunner-server/service/v4 v4.4.6
github.com/roadrunner-server/sqs/v4 v4.5.6
github.com/roadrunner-server/static/v4 v4.1.7
github.com/roadrunner-server/status/v4 v4.4.5
github.com/roadrunner-server/tcp/v4 v4.3.4
github.com/roadrunner-server/grpc/v4 v4.5.6
github.com/roadrunner-server/gzip/v4 v4.1.8
github.com/roadrunner-server/headers/v4 v4.2.9
github.com/roadrunner-server/http/v4 v4.4.5
github.com/roadrunner-server/informer/v4 v4.3.7
github.com/roadrunner-server/jobs/v4 v4.7.6
github.com/roadrunner-server/kafka/v4 v4.4.9
github.com/roadrunner-server/kv/v4 v4.4.7
github.com/roadrunner-server/lock/v4 v4.5.5
github.com/roadrunner-server/logger/v4 v4.2.7
github.com/roadrunner-server/memcached/v4 v4.3.6
github.com/roadrunner-server/memory/v4 v4.6.7
github.com/roadrunner-server/metrics/v4 v4.1.9
github.com/roadrunner-server/nats/v4 v4.5.8
github.com/roadrunner-server/otel/v4 v4.3.5
github.com/roadrunner-server/prometheus/v4 v4.1.8
github.com/roadrunner-server/proxy_ip_parser/v4 v4.1.8
github.com/roadrunner-server/redis/v4 v4.2.8
github.com/roadrunner-server/resetter/v4 v4.0.14
github.com/roadrunner-server/rpc/v4 v4.2.8
github.com/roadrunner-server/sdk/v4 v4.5.3
github.com/roadrunner-server/send/v4 v4.2.8
github.com/roadrunner-server/server/v4 v4.4.6
github.com/roadrunner-server/service/v4 v4.4.7
github.com/roadrunner-server/sqs/v4 v4.5.7
github.com/roadrunner-server/static/v4 v4.1.8
github.com/roadrunner-server/status/v4 v4.4.6
github.com/roadrunner-server/tcp/v4 v4.3.5
github.com/spf13/cobra v1.7.0
github.com/spf13/viper v1.17.0
github.com/stretchr/testify v1.8.4
Expand All @@ -58,9 +58,9 @@ require (

require (
github.com/andybalholm/brotli v1.0.6 // indirect
github.com/aws/aws-sdk-go v1.46.1 // indirect
github.com/aws/aws-sdk-go v1.46.4 // indirect
github.com/aws/aws-sdk-go-v2 v1.21.2 // indirect
github.com/aws/aws-sdk-go-v2/config v1.19.0 // indirect
github.com/aws/aws-sdk-go-v2/config v1.19.1 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.13.43 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.13 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.43 // indirect
Expand Down Expand Up @@ -95,7 +95,7 @@ require (
github.com/gogo/status v1.1.1 // indirect
github.com/golang/mock v1.7.0-rc.1 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/uuid v1.3.1 // indirect
github.com/google/uuid v1.4.0 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.0 // indirect
Expand All @@ -114,7 +114,7 @@ require (
github.com/miekg/dns v1.1.56 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/nats-io/nats.go v1.31.0 // indirect
github.com/nats-io/nkeys v0.4.5 // indirect
github.com/nats-io/nkeys v0.4.6 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/openzipkin/zipkin-go v0.4.2 // indirect
github.com/pborman/uuid v1.2.1 // indirect
Expand Down Expand Up @@ -152,11 +152,11 @@ require (
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.50.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
github.com/vmihailenco/msgpack/v5 v5.4.0 // indirect
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
github.com/yusufpapurcu/wmi v1.2.3 // indirect
github.com/zeebo/blake3 v0.2.3 // indirect
go.etcd.io/bbolt v1.3.7 // indirect
go.etcd.io/bbolt v1.3.8 // 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.45.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect
Expand Down
Loading