Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
GPG_PASS: ${{secrets.GPG_PASS}}
CGO_ENABLED: 0
LDFLAGS: >-
-s -X github.com/roadrunner-server/roadrunner/v2025/internal/meta.version=${{ steps.values.outputs.version }} -X github.com/roadrunner-server/roadrunner/v2025/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}
-s -X github.com/roadrunner-server/roadrunner/v3/internal/meta.version=${{ steps.values.outputs.version }} -X github.com/roadrunner-server/roadrunner/v3/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}
run: |
go build -trimpath -ldflags "$LDFLAGS" -o "./${{ steps.values.outputs.binary-name }}" ./cmd/rr
stat "./${{ steps.values.outputs.binary-name }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_dep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
GPG_PASS: ${{secrets.GPG_PASS}}
CGO_ENABLED: 0
LDFLAGS: >-
-s -X github.com/roadrunner-server/roadrunner/v2025/internal/meta.version=${{ steps.values.outputs.version }} -X github.com/roadrunner-server/roadrunner/v2025/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}
-s -X github.com/roadrunner-server/roadrunner/v3/internal/meta.version=${{ steps.values.outputs.version }} -X github.com/roadrunner-server/roadrunner/v3/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}
run: |
go build -trimpath -ldflags "$LDFLAGS" -o "./${{ steps.values.outputs.binary-name }}" ./cmd/rr
stat "./${{ steps.values.outputs.binary-name }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_dep_aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
GPG_PASS: ${{secrets.GPG_PASS}}
CGO_ENABLED: 0
LDFLAGS: >-
-s -X github.com/roadrunner-server/roadrunner/v2025/internal/meta.version=${{ steps.values.outputs.version }} -X github.com/roadrunner-server/roadrunner/v2025/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}
-s -X github.com/roadrunner-server/roadrunner/v3/internal/meta.version=${{ steps.values.outputs.version }} -X github.com/roadrunner-server/roadrunner/v3/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}
run: |
go build -trimpath -ldflags "$LDFLAGS" -o "./${{ steps.values.outputs.binary-name }}" ./cmd/rr
stat "./${{ steps.values.outputs.binary-name }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
GOOS: ${{ matrix.os }}
GOARCH: amd64
CGO_ENABLED: 0
LDFLAGS: -s -X github.com/roadrunner-server/roadrunner/v2025/internal/meta.version=${{ steps.values.outputs.version }} -X github.com/roadrunner-server/roadrunner/v2025/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}
LDFLAGS: -s -X github.com/roadrunner-server/roadrunner/v3/internal/meta.version=${{ steps.values.outputs.version }} -X github.com/roadrunner-server/roadrunner/v3/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}
run: go build -trimpath -ldflags "$LDFLAGS" -o ./rr ./cmd/rr
- name: Try to execute
if: matrix.os == 'linux'
Expand Down
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ RoadRunner communicates with PHP workers via:
## Important Notes

- Go version: 1.25+ required (see go.mod)
- Module path: `github.com/roadrunner-server/roadrunner/v2025`
- Module path: `github.com/roadrunner-server/roadrunner/v3`
- Some versions are explicitly excluded in go.mod (e.g., go-redis v9.15.0, viper v1.18.x)
- Debug mode available via `--debug` flag (starts debug server on :6061)
- Config overrides supported via `-o dot.notation=value` flag
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ COPY . .

# arguments to pass on each go tool link invocation
ENV LDFLAGS="-s \
-X github.com/roadrunner-server/roadrunner/v2025/internal/meta.version=$APP_VERSION \
-X github.com/roadrunner-server/roadrunner/v2025/internal/meta.buildTime=$BUILD_TIME"
-X github.com/roadrunner-server/roadrunner/v3/internal/meta.version=$APP_VERSION \
-X github.com/roadrunner-server/roadrunner/v3/internal/meta.buildTime=$BUILD_TIME"

# compile and verify binary
RUN CGO_ENABLED=0 go build -trimpath -ldflags "$LDFLAGS" -o ./rr ./cmd/rr && ./rr -v
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</a>
<p align="center">
<a href="https://packagist.org/packages/spiral/roadrunner"><img src="https://poser.pugx.org/spiral/roadrunner/version"></a>
<a href="https://pkg.go.dev/github.com/roadrunner-server/roadrunner/v2025?tab=doc"><img src="https://godoc.org/github.com/roadrunner-server/roadrunner/v2025?status.svg"></a>
<a href="https://pkg.go.dev/github.com/roadrunner-server/roadrunner/v3?tab=doc"><img src="https://godoc.org/github.com/roadrunner-server/roadrunner/v3?status.svg"></a>
<a href="https://twitter.com/spiralphp"><img src="https://img.shields.io/twitter/follow/spiralphp?style=social"></a>
<a href="https://codecov.io/gh/roadrunner-server/roadrunner/"><img src="https://codecov.io/gh/roadrunner-server/roadrunner/branch/master/graph/badge.svg"></a>
<a href="https://github.com/roadrunner-server/roadrunner/actions"><img src="https://github.com/roadrunner-server/roadrunner/workflows/rr_cli_tests/badge.svg" alt=""></a>
Expand Down Expand Up @@ -89,8 +89,8 @@ Server binary will be available at the root of your project.
## Installation option for the Debian-derivatives (Ubuntu, Mint, MX, etc)

```bash
wget https://github.com/roadrunner-server/roadrunner/releases/download/v2025.X.X/roadrunner-2025.X.X-linux-amd64.deb
sudo dpkg -i roadrunner-2025.X.X-linux-amd64.deb
wget https://github.com/roadrunner-server/roadrunner/releases/download/v3.X.X/roadrunner-3.X.X-linux-amd64.deb
sudo dpkg -i roadrunner-3.X.X-linux-amd64.deb
```

## Download the latest release via curl:
Expand Down
2 changes: 1 addition & 1 deletion cmd/rr/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"path/filepath"

"github.com/fatih/color"
"github.com/roadrunner-server/roadrunner/v2025/internal/cli"
"github.com/roadrunner-server/roadrunner/v3/internal/cli"
)

// exitFn is a function for an application exiting.
Expand Down
2 changes: 1 addition & 1 deletion container/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"time"

"github.com/roadrunner-server/config/v5"
"github.com/roadrunner-server/roadrunner/v2025/container"
"github.com/roadrunner-server/roadrunner/v3/container"
"github.com/stretchr/testify/assert"
)

Expand Down
70 changes: 35 additions & 35 deletions container/plugins.go
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
package container

import (
"github.com/roadrunner-server/amqp/v5"
appLogger "github.com/roadrunner-server/app-logger/v5"
"github.com/roadrunner-server/beanstalk/v5"
"github.com/roadrunner-server/boltdb/v5"
"github.com/roadrunner-server/centrifuge/v5"
"github.com/roadrunner-server/fileserver/v5"
gps "github.com/roadrunner-server/google-pub-sub/v5"
grpcPlugin "github.com/roadrunner-server/grpc/v5"
"github.com/roadrunner-server/gzip/v5"
"github.com/roadrunner-server/headers/v5"
httpPlugin "github.com/roadrunner-server/http/v5"
"github.com/roadrunner-server/informer/v5"
"github.com/roadrunner-server/jobs/v5"
"github.com/roadrunner-server/kafka/v5"
"github.com/roadrunner-server/kv/v5"
"github.com/roadrunner-server/lock/v5"
"github.com/roadrunner-server/logger/v5"
"github.com/roadrunner-server/memcached/v5"
"github.com/roadrunner-server/memory/v5"
"github.com/roadrunner-server/metrics/v5"
"github.com/roadrunner-server/nats/v5"
rrOtel "github.com/roadrunner-server/otel/v5"
"github.com/roadrunner-server/prometheus/v5"
proxyIP "github.com/roadrunner-server/proxy_ip_parser/v5"
"github.com/roadrunner-server/redis/v5"
"github.com/roadrunner-server/resetter/v5"
rpcPlugin "github.com/roadrunner-server/rpc/v5"
"github.com/roadrunner-server/send/v5"
"github.com/roadrunner-server/server/v5"
"github.com/roadrunner-server/service/v5"
"github.com/roadrunner-server/sqs/v5"
"github.com/roadrunner-server/static/v5"
"github.com/roadrunner-server/status/v5"
"github.com/roadrunner-server/tcp/v5"
rrt "github.com/temporalio/roadrunner-temporal/v5"
"github.com/roadrunner-server/amqp/v6"
appLogger "github.com/roadrunner-server/app-logger/v6"
"github.com/roadrunner-server/beanstalk/v6"
"github.com/roadrunner-server/boltdb/v6"
"github.com/roadrunner-server/centrifuge/v6"
"github.com/roadrunner-server/fileserver/v6"
gps "github.com/roadrunner-server/google-pub-sub/v6"
grpcPlugin "github.com/roadrunner-server/grpc/v6"
"github.com/roadrunner-server/gzip/v6"
"github.com/roadrunner-server/headers/v6"
httpPlugin "github.com/roadrunner-server/http/v6"
"github.com/roadrunner-server/informer/v6"
"github.com/roadrunner-server/jobs/v6"
"github.com/roadrunner-server/kafka/v6"
"github.com/roadrunner-server/kv/v6"
"github.com/roadrunner-server/lock/v6"
"github.com/roadrunner-server/logger/v6"
"github.com/roadrunner-server/memcached/v6"
"github.com/roadrunner-server/memory/v6"
"github.com/roadrunner-server/metrics/v6"
"github.com/roadrunner-server/nats/v6"
rrOtel "github.com/roadrunner-server/otel/v6"
"github.com/roadrunner-server/prometheus/v6"
proxyIP "github.com/roadrunner-server/proxy_ip_parser/v6"
"github.com/roadrunner-server/redis/v6"
"github.com/roadrunner-server/resetter/v6"
rpcPlugin "github.com/roadrunner-server/rpc/v6"
"github.com/roadrunner-server/send/v6"
"github.com/roadrunner-server/server/v6"
"github.com/roadrunner-server/service/v6"
"github.com/roadrunner-server/sqs/v6"
"github.com/roadrunner-server/static/v6"
"github.com/roadrunner-server/status/v6"
"github.com/roadrunner-server/tcp/v6"
rrt "github.com/temporalio/roadrunner-temporal/v6"
)

// Plugins return active plugins for the endured container. Feel free to add or remove any plugins.
Expand Down
90 changes: 47 additions & 43 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,57 +1,60 @@
module github.com/roadrunner-server/roadrunner/v2025
module github.com/roadrunner-server/roadrunner/v3

go 1.26.4

require (
connectrpc.com/connect v1.20.0
github.com/buger/goterm v1.0.4
github.com/dustin/go-humanize v1.0.1
github.com/fatih/color v1.19.0
github.com/joho/godotenv v1.5.1
github.com/olekukonko/tablewriter v1.1.4
github.com/roadrunner-server/amqp/v5 v5.2.3
github.com/roadrunner-server/api/v4 v4.24.0
github.com/roadrunner-server/app-logger/v5 v5.1.9
github.com/roadrunner-server/beanstalk/v5 v5.1.9
github.com/roadrunner-server/boltdb/v5 v5.1.9
github.com/roadrunner-server/centrifuge/v5 v5.1.9
github.com/roadrunner-server/amqp/v6 v6.0.0-beta.8
github.com/roadrunner-server/api-go/v6 v6.0.0-beta.12.0.20260610203904-09df89976edc
github.com/roadrunner-server/app-logger/v6 v6.0.0-beta.3
github.com/roadrunner-server/beanstalk/v6 v6.0.0-beta.4
github.com/roadrunner-server/boltdb/v6 v6.0.0-beta.4
github.com/roadrunner-server/centrifuge/v6 v6.0.0-beta.4
github.com/roadrunner-server/config/v5 v5.1.9
github.com/roadrunner-server/config/v6 v6.0.0-beta.3
github.com/roadrunner-server/endure/v2 v2.6.2
github.com/roadrunner-server/errors v1.5.0
github.com/roadrunner-server/fileserver/v5 v5.1.9
github.com/roadrunner-server/google-pub-sub/v5 v5.1.9
github.com/roadrunner-server/goridge/v3 v3.8.3
github.com/roadrunner-server/grpc/v5 v5.3.0
github.com/roadrunner-server/gzip/v5 v5.3.0
github.com/roadrunner-server/headers/v5 v5.2.0
github.com/roadrunner-server/http/v5 v5.3.0
github.com/roadrunner-server/fileserver/v6 v6.0.0-beta.5
github.com/roadrunner-server/google-pub-sub/v6 v6.0.0-beta.3
github.com/roadrunner-server/grpc/v6 v6.0.0-beta.5
github.com/roadrunner-server/gzip/v6 v6.0.0-beta.2
github.com/roadrunner-server/headers/v6 v6.0.0-beta.2
github.com/roadrunner-server/http/v6 v6.0.0-beta.7
github.com/roadrunner-server/informer/v5 v5.1.9
github.com/roadrunner-server/jobs/v5 v5.1.9
github.com/roadrunner-server/kafka/v5 v5.2.5
github.com/roadrunner-server/kv/v5 v5.2.9
github.com/roadrunner-server/lock/v5 v5.1.9
github.com/roadrunner-server/logger/v5 v5.1.9
github.com/roadrunner-server/memcached/v5 v5.1.9
github.com/roadrunner-server/memory/v5 v5.2.9
github.com/roadrunner-server/metrics/v5 v5.2.0
github.com/roadrunner-server/nats/v5 v5.1.9
github.com/roadrunner-server/otel/v5 v5.5.0
github.com/roadrunner-server/pool v1.1.3
github.com/roadrunner-server/prometheus/v5 v5.2.0
github.com/roadrunner-server/proxy_ip_parser/v5 v5.1.9
github.com/roadrunner-server/redis/v5 v5.1.10
github.com/roadrunner-server/informer/v6 v6.0.0-beta.2
github.com/roadrunner-server/jobs/v6 v6.0.0-beta.7
github.com/roadrunner-server/kafka/v6 v6.0.0-beta.6
github.com/roadrunner-server/kv/v6 v6.0.0-beta.5
github.com/roadrunner-server/lock/v6 v6.0.0-beta.4
github.com/roadrunner-server/logger/v6 v6.0.0-beta.3
github.com/roadrunner-server/memcached/v6 v6.0.0-beta.4
github.com/roadrunner-server/memory/v6 v6.0.0-beta.4
github.com/roadrunner-server/metrics/v6 v6.0.0-beta.4
github.com/roadrunner-server/nats/v6 v6.0.0-beta.4
github.com/roadrunner-server/otel/v6 v6.0.0-beta.4.0.20260531182915-7f0d504c98aa
github.com/roadrunner-server/prometheus/v6 v6.0.0-beta.2
github.com/roadrunner-server/proxy_ip_parser/v6 v6.0.0-beta.3
github.com/roadrunner-server/redis/v6 v6.0.0-beta.4
github.com/roadrunner-server/resetter/v5 v5.1.9
github.com/roadrunner-server/rpc/v5 v5.1.9
github.com/roadrunner-server/send/v5 v5.2.0
github.com/roadrunner-server/server/v5 v5.2.10
github.com/roadrunner-server/service/v5 v5.1.9
github.com/roadrunner-server/sqs/v5 v5.1.9
github.com/roadrunner-server/static/v5 v5.2.0
github.com/roadrunner-server/status/v5 v5.1.9
github.com/roadrunner-server/tcp/v5 v5.1.9
github.com/roadrunner-server/resetter/v6 v6.0.0-beta.3
github.com/roadrunner-server/rpc/v6 v6.0.0-beta.4
github.com/roadrunner-server/send/v6 v6.0.0-beta.4
github.com/roadrunner-server/server/v6 v6.0.0-beta.6
github.com/roadrunner-server/service/v6 v6.0.0-beta.5
github.com/roadrunner-server/sqs/v6 v6.0.0-beta.5
github.com/roadrunner-server/static/v6 v6.0.0-beta.4
github.com/roadrunner-server/status/v6 v6.0.0-beta.5
github.com/roadrunner-server/tcp/v6 v6.0.0-beta.4
github.com/spf13/cobra v1.10.2
github.com/spf13/viper v1.21.0
github.com/stretchr/testify v1.11.1
github.com/temporalio/roadrunner-temporal/v5 v5.11.0
github.com/temporalio/roadrunner-temporal/v6 v6.0.0-20260610211147-054711671b92
google.golang.org/protobuf v1.36.11
)

exclude (
Expand All @@ -70,6 +73,7 @@ require (
cloud.google.com/go/compute/metadata v0.9.0 // indirect
cloud.google.com/go/iam v1.11.0 // indirect
cloud.google.com/go/pubsub/v2 v2.6.0 // indirect
connectrpc.com/grpcreflect v1.3.0 // indirect
github.com/andybalholm/brotli v1.2.1 // indirect
github.com/aws/aws-sdk-go-v2 v1.42.0 // indirect
github.com/aws/aws-sdk-go-v2/config v1.32.24 // indirect
Expand Down Expand Up @@ -136,7 +140,6 @@ require (
github.com/olekukonko/cat v0.0.0-20250911104152-50322a0618f6 // indirect
github.com/olekukonko/errors v1.3.0 // indirect
github.com/olekukonko/ll v0.1.8 // indirect
github.com/openzipkin/zipkin-go v0.4.3 // indirect
github.com/pelletier/go-toml/v2 v2.3.1 // indirect
github.com/pierrec/lz4/v4 v4.1.27 // indirect
github.com/pkg/errors v0.9.1 // indirect
Expand All @@ -152,8 +155,14 @@ require (
github.com/redis/go-redis/extra/redisotel/v9 v9.20.0 // indirect
github.com/redis/go-redis/extra/redisprometheus/v9 v9.20.0 // indirect
github.com/redis/go-redis/v9 v9.20.0 // indirect
github.com/roadrunner-server/api-plugins/v6 v6.0.0-beta.2 // indirect
github.com/roadrunner-server/api/v4 v4.22.1 // indirect
github.com/roadrunner-server/context v1.3.0 // indirect
github.com/roadrunner-server/events v1.0.1 // indirect
github.com/roadrunner-server/goridge/v3 v3.8.3 // indirect
github.com/roadrunner-server/goridge/v4 v4.0.0-beta.2 // indirect
github.com/roadrunner-server/pool v1.1.3 // indirect
github.com/roadrunner-server/pool/v2 v2.0.0-beta.1 // indirect
github.com/roadrunner-server/priority_queue v1.0.6 // indirect
github.com/roadrunner-server/tcplisten v1.5.2 // indirect
github.com/robfig/cron v1.2.0 // indirect
Expand All @@ -173,8 +182,6 @@ require (
github.com/uber-go/tally/v4 v4.1.17 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.71.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.4 // indirect
github.com/zeebo/assert v1.3.1 // indirect
github.com/zeebo/blake3 v0.2.4 // indirect
Expand All @@ -190,7 +197,6 @@ require (
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.44.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.44.0 // indirect
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.44.0 // indirect
go.opentelemetry.io/otel/exporters/zipkin v1.44.0 // indirect
go.opentelemetry.io/otel/metric v1.44.0 // indirect
go.opentelemetry.io/otel/sdk v1.44.0 // indirect
go.opentelemetry.io/otel/trace v1.44.0 // indirect
Expand Down Expand Up @@ -219,7 +225,5 @@ require (
google.golang.org/genproto/googleapis/api v0.0.0-20260608224507-4308a22a1bab // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20260608224507-4308a22a1bab // indirect
google.golang.org/grpc v1.81.1 // indirect
google.golang.org/protobuf v1.36.11 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading
Loading