Skip to content

Commit

Permalink
[#1936]: release: v2024.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rustatian committed Jun 6, 2024
2 parents 1c1abb4 + 6d0aeaf commit daea372
Show file tree
Hide file tree
Showing 3 changed files with 131 additions and 105 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# CHANGELOG

# 🚀 v2024.1.3 🚀

### `RR core`:
- 🔥: 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 matching `RR_*` environment variable, [PR](https://github.com/roadrunner-server/roadrunner/pull/1929).

### `Temporal` plugin:
- 🔥: Enable client certificate rotation: [FR](https://github.com/temporalio/roadrunner-temporal/issues/522). With this change you may replace certificate on a Live system. (thanks @benkelukas)
- 🔥: Expose `continue_as_new_suggested` for the PHP Worker: [PR](https://github.com/temporalio/roadrunner-temporal/pull/520).

### `Kafka`
- 🐛: Reduce number of `maxPollRecords` from 10k to 100, [PR](https://github.com/roadrunner-server/kafka/commit/f7950cb538e6c670cfc50681e61eb939c591f27b).

### `Endure` container:
- 🐛: Fix incorrectly used error log message: [PR](https://github.com/roadrunner-server/endure/pull/175).

### General:
- 🔥: Update Go to `v1.22.4`.

## RoadRunner PHP:

### `Worker`:
- 🔥: Add `RR_VERSION` env to the `Environment` class: [PR](https://github.com/roadrunner-php/worker/pull/37), (thanks @Kaspiman)


---

# 🚀 v2024.1.2 🚀

### Upcoming new JOBS driver: `google-pub-sub`:
Expand Down
70 changes: 35 additions & 35 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.17.0
github.com/joho/godotenv v1.5.1
github.com/olekukonko/tablewriter v0.0.5
github.com/roadrunner-server/amqp/v4 v4.11.2
github.com/roadrunner-server/amqp/v4 v4.11.3
github.com/roadrunner-server/api/v4 v4.12.0
github.com/roadrunner-server/app-logger/v4 v4.4.2
github.com/roadrunner-server/beanstalk/v4 v4.8.2
github.com/roadrunner-server/boltdb/v4 v4.9.2
github.com/roadrunner-server/centrifuge/v4 v4.9.2
github.com/roadrunner-server/config/v4 v4.9.0
github.com/roadrunner-server/app-logger/v4 v4.4.3
github.com/roadrunner-server/beanstalk/v4 v4.8.3
github.com/roadrunner-server/boltdb/v4 v4.9.3
github.com/roadrunner-server/centrifuge/v4 v4.9.3
github.com/roadrunner-server/config/v4 v4.9.1
github.com/roadrunner-server/endure/v2 v2.4.5
github.com/roadrunner-server/errors v1.4.0
github.com/roadrunner-server/fileserver/v4 v4.3.2
github.com/roadrunner-server/fileserver/v4 v4.3.3
github.com/roadrunner-server/goridge/v3 v3.8.2
github.com/roadrunner-server/grpc/v4 v4.8.4
github.com/roadrunner-server/gzip/v4 v4.3.2
github.com/roadrunner-server/headers/v4 v4.4.2
github.com/roadrunner-server/http/v4 v4.7.4
github.com/roadrunner-server/informer/v4 v4.5.2
github.com/roadrunner-server/jobs/v4 v4.9.2
github.com/roadrunner-server/kafka/v4 v4.6.2
github.com/roadrunner-server/kv/v4 v4.6.2
github.com/roadrunner-server/lock/v4 v4.7.2
github.com/roadrunner-server/logger/v4 v4.4.2
github.com/roadrunner-server/memcached/v4 v4.5.2
github.com/roadrunner-server/memory/v4 v4.8.2
github.com/roadrunner-server/metrics/v4 v4.3.2
github.com/roadrunner-server/nats/v4 v4.8.2
github.com/roadrunner-server/otel/v4 v4.5.2
github.com/roadrunner-server/prometheus/v4 v4.3.2
github.com/roadrunner-server/proxy_ip_parser/v4 v4.3.2
github.com/roadrunner-server/redis/v4 v4.4.2
github.com/roadrunner-server/resetter/v4 v4.3.2
github.com/roadrunner-server/rpc/v4 v4.4.2
github.com/roadrunner-server/grpc/v4 v4.8.5
github.com/roadrunner-server/gzip/v4 v4.3.3
github.com/roadrunner-server/headers/v4 v4.4.3
github.com/roadrunner-server/http/v4 v4.7.5
github.com/roadrunner-server/informer/v4 v4.5.3
github.com/roadrunner-server/jobs/v4 v4.9.3
github.com/roadrunner-server/kafka/v4 v4.6.3
github.com/roadrunner-server/kv/v4 v4.6.3
github.com/roadrunner-server/lock/v4 v4.7.3
github.com/roadrunner-server/logger/v4 v4.4.3
github.com/roadrunner-server/memcached/v4 v4.5.3
github.com/roadrunner-server/memory/v4 v4.8.3
github.com/roadrunner-server/metrics/v4 v4.3.3
github.com/roadrunner-server/nats/v4 v4.8.3
github.com/roadrunner-server/otel/v4 v4.5.3
github.com/roadrunner-server/prometheus/v4 v4.3.3
github.com/roadrunner-server/proxy_ip_parser/v4 v4.3.3
github.com/roadrunner-server/redis/v4 v4.4.3
github.com/roadrunner-server/resetter/v4 v4.3.3
github.com/roadrunner-server/rpc/v4 v4.4.3
github.com/roadrunner-server/sdk/v4 v4.7.3
github.com/roadrunner-server/send/v4 v4.4.2
github.com/roadrunner-server/server/v4 v4.8.2
github.com/roadrunner-server/service/v4 v4.7.2
github.com/roadrunner-server/sqs/v4 v4.8.2
github.com/roadrunner-server/static/v4 v4.3.2
github.com/roadrunner-server/status/v4 v4.6.2
github.com/roadrunner-server/tcp/v4 v4.5.2
github.com/roadrunner-server/send/v4 v4.4.3
github.com/roadrunner-server/server/v4 v4.8.3
github.com/roadrunner-server/service/v4 v4.7.3
github.com/roadrunner-server/sqs/v4 v4.8.3
github.com/roadrunner-server/static/v4 v4.3.3
github.com/roadrunner-server/status/v4 v4.6.3
github.com/roadrunner-server/tcp/v4 v4.5.3
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.19.0
github.com/stretchr/testify v1.9.0
github.com/temporalio/roadrunner-temporal/v4 v4.8.1
github.com/temporalio/roadrunner-temporal/v4 v4.8.2
go.uber.org/automaxprocs v1.5.3
)

Expand Down
Loading

0 comments on commit daea372

Please sign in to comment.