- 🔥: Several improvements by @devnev: Do not set
Endpoint
andHeaders
for gRPC if they're empty: PR, Support standardOTEL
exporter protocol environment variables: PR. (thanks @devnev)
- 🐛: gRPC client closed too early after shutdown: BUG. (thanks @kkosowski-p)
- 🐛:
redial_timeout
was not respected when dynamically creating pipeline. BUG, (thanks @algirdasci)
- 🧑🏭: All plugins were updated to Go 1.23 (including
Velox
Dockerfile).
Upgrade guide: link
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 tutorials, create and notify us about your plugin.
RoadRunner now supports the Google Pub/Sub queues. Currently, this driver is released in BETA and has a few limitations which you may find in the docs
- 🔥 Support an auto-restart pipeline on redial or some fatal problems when connecting to the RabbitMQ broker. Instead of silently exit from the pipeline, RR will try to re-initialize the pipeline.
Thanks to our PHP team, KV now has AsyncStorageInterface
support which makes your experience with the KV plugin even faster.
Feel free to read the technical details here: link
- 🔥 Our RoadRunner samples repository was updated and now includes a
Jobs
driver example for theJobs
plugin. More info here: link.
- 😭 Our Go-SDK was deprecated and split into separate packages. Read more in the Upgrade guide.
- 🔥 Velox configuration was simplified:
[roadrunner]
# ref -> reference, tag, commit or branch
ref = "v2024.2.0"
# the debug option is used to build RR with debug symbols to profile it with pprof
[debug]
enabled = false
## Rest is the same ....
Now, there is no need to include linker
flags, and buildtime + build version would be inherited automatically.
If you need to debug your binary, please, use the debug
option set to true
.
- 🐛: Fix k8s-related problem, when status was not available during the graceful shutdown process: BUG. (thanks @cv65kr)
- 🔥: Experimentally added new handlers for the more canonical
ACK
,NACK
, andREQUEUE
operations for theJOBS
drivers. PHP SDK will be updated soon. FR, (thanks @shieldz80)
- 💡: Configuration includes will be out of experimental status in the next minor release (
v2024.2.0
) and currently don't have restrictions on where to put the included config. Keep in mind that the path for the included configurations is calculated from the working directory of the RoadRunner process. FR
- 🐛: Fix Local activities executed on the Workflow PHP Worker instead of the Activity PHP Worker: BUG. With this fix, LA performance should see a significant increase. (thanks @Zylius)
- 🔥: Deprecate
RR_*
env variables prefix. This was an undocumented feature which caused confusion, because any configuration value might be automatically replaced (without using env in the configuration) with a matchingRR_*
environment variable, PR.
- 🔥: Enable client certificate rotation: FR. With this change you may replace certificate on a Live system. (thanks @benkelukas)
- 🔥: Expose
continue_as_new_suggested
for the PHP Worker: PR.
- 🐛: Reduce number of
maxPollRecords
from 10k to 100, PR.
- 🐛: Fix incorrectly used error log message: PR.
- 🔥: Update Go to
v1.22.4
.
- 🔥: Add
RR_VERSION
env to theEnvironment
class: PR, (thanks @Kaspiman)
- 🔥: Currently in a polishing phase, the new plugin will be released as part of the
v2024.2.0
. Stay tuned! (thanks @cv65kr)
- 🐛: strip extra slashes when there is no package defined in the protofile: PR, (thanks @satdeveloping)
- 🐛: Fix hardcoded AlwaysSample samples: BUG, (thanks @bazilmarkov)
- 🐛: RR
workers/reset
commands don't respect default config values: BUG, (thanks @r4m-alexd)
- 🐛 Bug: Fix for the NPE on types check: BUG, (thanks @cto-asocial)
- 🔥 Remove experimental status from the OTEL in
gRPC
, PR
- 🔥 Additional debug logging for the
maxExecs
withjitter
: PR (thanks @Kaspiman)
Upgrade guide: link
- 🔥 Use
protobuf
encoded payloads to prevent field reordering and JSON escaped symbols.
- 🔥 Support TLS configuration (thanks @dkomarek)
- 🔥 Use a small random jitter to prevent the Thundering herd problem when user uses
max_jobs
option and all the workers restarted at the same time. This feature is enabled automatically. (thanks @Kaspiman)