Skip to content

Commit 7c92529

Browse files
authored
Merge pull request #2170 from roadrunner-server/release/v2025.1.0
2 parents d4fbcb8 + f269279 commit 7c92529

28 files changed

+91
-91
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ jobs:
8888
CGO_ENABLED: 0
8989
LDFLAGS: >-
9090
-s
91-
-X github.com/roadrunner-server/roadrunner/v2024/internal/meta.version=${{ steps.values.outputs.version }}
92-
-X github.com/roadrunner-server/roadrunner/v2024/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}
91+
-X github.com/roadrunner-server/roadrunner/v2025/internal/meta.version=${{ steps.values.outputs.version }}
92+
-X github.com/roadrunner-server/roadrunner/v2025/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}
9393
run: |
9494
go build -pgo=roadrunner.pprof -trimpath -ldflags "$LDFLAGS" -o "./${{ steps.values.outputs.binary-name }}" ./cmd/rr
9595
stat "./${{ steps.values.outputs.binary-name }}"
@@ -190,10 +190,10 @@ jobs:
190190
tags: |
191191
spiralscout/roadrunner:${{ steps.values.outputs.version_full}}
192192
spiralscout/roadrunner:latest
193-
spiralscout/roadrunner:2024
194-
spiralscout/roadrunner:2024.3
193+
spiralscout/roadrunner:2025
194+
spiralscout/roadrunner:2025.1
195195
196196
ghcr.io/roadrunner-server/roadrunner:${{ steps.values.outputs.version_full}}
197197
ghcr.io/roadrunner-server/roadrunner:latest
198-
ghcr.io/roadrunner-server/roadrunner:2024
199-
ghcr.io/roadrunner-server/roadrunner:2024.3
198+
ghcr.io/roadrunner-server/roadrunner:2025
199+
ghcr.io/roadrunner-server/roadrunner:2025.1

.github/workflows/release_dep.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ jobs:
5555
CGO_ENABLED: 0
5656
LDFLAGS: >-
5757
-s
58-
-X github.com/roadrunner-server/roadrunner/v2024/internal/meta.version=${{ steps.values.outputs.version }}
59-
-X github.com/roadrunner-server/roadrunner/v2024/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}
58+
-X github.com/roadrunner-server/roadrunner/v2025/internal/meta.version=${{ steps.values.outputs.version }}
59+
-X github.com/roadrunner-server/roadrunner/v2025/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}
6060
run: |
6161
go build -trimpath -ldflags "$LDFLAGS" -o "./${{ steps.values.outputs.binary-name }}" ./cmd/rr
6262
stat "./${{ steps.values.outputs.binary-name }}"

.github/workflows/release_dep_aarch64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ jobs:
5555
CGO_ENABLED: 0
5656
LDFLAGS: >-
5757
-s
58-
-X github.com/roadrunner-server/roadrunner/v2024/internal/meta.version=${{ steps.values.outputs.version }}
59-
-X github.com/roadrunner-server/roadrunner/v2024/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}
58+
-X github.com/roadrunner-server/roadrunner/v2025/internal/meta.version=${{ steps.values.outputs.version }}
59+
-X github.com/roadrunner-server/roadrunner/v2025/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}
6060
run: |
6161
go build -trimpath -ldflags "$LDFLAGS" -o "./${{ steps.values.outputs.binary-name }}" ./cmd/rr
6262
stat "./${{ steps.values.outputs.binary-name }}"

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ jobs:
9898
GOARCH: amd64
9999
CGO_ENABLED: 0
100100
LDFLAGS: -s
101-
-X github.com/roadrunner-server/roadrunner/v2024/internal/meta.version=${{ steps.values.outputs.version }}
102-
-X github.com/roadrunner-server/roadrunner/v2024/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}
101+
-X github.com/roadrunner-server/roadrunner/v2025/internal/meta.version=${{ steps.values.outputs.version }}
102+
-X github.com/roadrunner-server/roadrunner/v2025/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}
103103
run: go build -pgo=roadrunner.pprof -trimpath -ldflags "$LDFLAGS" -o ./rr ./cmd/rr
104104

105105
- name: Try to execute

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Image page: <https://hub.docker.com/_/golang>
2-
FROM --platform=${TARGETPLATFORM:-linux/amd64} golang:1.24-alpine as builder
2+
FROM --platform=${TARGETPLATFORM:-linux/amd64} golang:1.24-alpine AS builder
33

44
# app version and build date must be passed during image building (version without any prefix).
55
# e.g.: `docker build --build-arg "APP_VERSION=1.2.3" --build-arg "BUILD_TIME=$(date +%FT%T%z)" .`
@@ -12,8 +12,8 @@ WORKDIR /src
1212

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

1818
# compile binary file
1919
RUN set -x

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</a>
77
<p align="center">
88
<a href="https://packagist.org/packages/spiral/roadrunner"><img src="https://poser.pugx.org/spiral/roadrunner/version"></a>
9-
<a href="https://pkg.go.dev/github.com/roadrunner-server/roadrunner/v2024?tab=doc"><img src="https://godoc.org/github.com/roadrunner-server/roadrunner/v2024?status.svg"></a>
9+
<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>
1010
<a href="https://twitter.com/spiralphp"><img src="https://img.shields.io/twitter/follow/spiralphp?style=social"></a>
1111
<a href="https://codecov.io/gh/roadrunner-server/roadrunner/"><img src="https://codecov.io/gh/roadrunner-server/roadrunner/branch/master/graph/badge.svg"></a>
1212
<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>
@@ -54,11 +54,11 @@ OSX, Linux, FreeBSD, and Windows. Instructions for using these binaries are on t
5454

5555
## Docker:
5656

57-
To get the roadrunner binary file you can use our docker image: `ghcr.io/roadrunner-server/roadrunner:2024.X.X` (more information about
57+
To get the roadrunner binary file you can use our docker image: `ghcr.io/roadrunner-server/roadrunner:2025.X.X` (more information about
5858
image and tags can be found [here](https://github.com/roadrunner-server/roadrunner/pkgs/container/roadrunner)).
5959

6060
```dockerfile
61-
FROM ghcr.io/roadrunner-server/roadrunner:2024.X.X AS roadrunner
61+
FROM ghcr.io/roadrunner-server/roadrunner:2025.X.X AS roadrunner
6262
FROM php:8.3-cli
6363

6464
COPY --from=roadrunner /usr/bin/rr /usr/local/bin/rr
@@ -89,8 +89,8 @@ Server binary will be available at the root of your project.
8989
## Installation option for the Debian-derivatives (Ubuntu, Mint, MX, etc)
9090

9191
```bash
92-
wget https://github.com/roadrunner-server/roadrunner/releases/download/v2024.X.X/roadrunner-2024.X.X-linux-amd64.deb
93-
sudo dpkg -i roadrunner-2024.X.X-linux-amd64.deb
92+
wget https://github.com/roadrunner-server/roadrunner/releases/download/v2025.X.X/roadrunner-2025.X.X-linux-amd64.deb
93+
sudo dpkg -i roadrunner-2025.X.X-linux-amd64.deb
9494
```
9595

9696
## Download the latest release via curl:

SECURITY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
| 2.x | No |
88
| 2023.x.x | No |
99
| 2024.x.x | Yes |
10+
| 2025.x.x | Yes |

cmd/rr/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"path/filepath"
66

77
"github.com/fatih/color"
8-
"github.com/roadrunner-server/roadrunner/v2024/internal/cli"
8+
"github.com/roadrunner-server/roadrunner/v2025/internal/cli"
99
"go.uber.org/automaxprocs/maxprocs"
1010
)
1111

container/config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"time"
77

88
"github.com/roadrunner-server/config/v5"
9-
"github.com/roadrunner-server/roadrunner/v2024/container"
9+
"github.com/roadrunner-server/roadrunner/v2025/container"
1010
"github.com/stretchr/testify/assert"
1111
)
1212

go.mod

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,48 @@
1-
module github.com/roadrunner-server/roadrunner/v2024
1+
module github.com/roadrunner-server/roadrunner/v2025
22

33
go 1.24
44

5-
toolchain go1.24.0
5+
toolchain go1.24.2
66

77
require (
88
github.com/buger/goterm v1.0.4
99
github.com/dustin/go-humanize v1.0.1
1010
github.com/fatih/color v1.18.0
1111
github.com/joho/godotenv v1.5.1
1212
github.com/olekukonko/tablewriter v0.0.5
13-
github.com/roadrunner-server/amqp/v5 v5.2.0
13+
github.com/roadrunner-server/amqp/v5 v5.2.1
1414
github.com/roadrunner-server/api/v4 v4.19.0
1515
github.com/roadrunner-server/app-logger/v5 v5.1.7
1616
github.com/roadrunner-server/beanstalk/v5 v5.1.7
1717
github.com/roadrunner-server/boltdb/v5 v5.1.7
1818
github.com/roadrunner-server/centrifuge/v5 v5.1.7
19-
github.com/roadrunner-server/config/v5 v5.1.6
19+
github.com/roadrunner-server/config/v5 v5.1.7
2020
github.com/roadrunner-server/endure/v2 v2.6.1
2121
github.com/roadrunner-server/errors v1.4.1
22-
github.com/roadrunner-server/fileserver/v5 v5.1.6
23-
github.com/roadrunner-server/google-pub-sub/v5 v5.1.6
22+
github.com/roadrunner-server/fileserver/v5 v5.1.7
23+
github.com/roadrunner-server/google-pub-sub/v5 v5.1.7
2424
github.com/roadrunner-server/goridge/v3 v3.8.3
2525
github.com/roadrunner-server/grpc/v5 v5.2.1
2626
github.com/roadrunner-server/gzip/v5 v5.1.7
2727
github.com/roadrunner-server/headers/v5 v5.1.7
28-
github.com/roadrunner-server/http/v5 v5.2.5
29-
github.com/roadrunner-server/informer/v5 v5.1.6
28+
github.com/roadrunner-server/http/v5 v5.2.6
29+
github.com/roadrunner-server/informer/v5 v5.1.7
3030
github.com/roadrunner-server/jobs/v5 v5.1.7
31-
github.com/roadrunner-server/kafka/v5 v5.2.2
31+
github.com/roadrunner-server/kafka/v5 v5.2.3
3232
github.com/roadrunner-server/kv/v5 v5.2.7
33-
github.com/roadrunner-server/lock/v5 v5.1.6
33+
github.com/roadrunner-server/lock/v5 v5.1.7
3434
github.com/roadrunner-server/logger/v5 v5.1.7
3535
github.com/roadrunner-server/memcached/v5 v5.1.7
3636
github.com/roadrunner-server/memory/v5 v5.2.7
3737
github.com/roadrunner-server/metrics/v5 v5.1.7
3838
github.com/roadrunner-server/nats/v5 v5.1.7
39-
github.com/roadrunner-server/otel/v5 v5.1.6
39+
github.com/roadrunner-server/otel/v5 v5.1.7
4040
github.com/roadrunner-server/pool v1.1.3
41-
github.com/roadrunner-server/prometheus/v5 v5.1.5
41+
github.com/roadrunner-server/prometheus/v5 v5.1.6
4242
github.com/roadrunner-server/proxy_ip_parser/v5 v5.1.7
4343
github.com/roadrunner-server/redis/v5 v5.1.7
4444
github.com/roadrunner-server/resetter/v5 v5.1.7
45-
github.com/roadrunner-server/rpc/v5 v5.1.6
45+
github.com/roadrunner-server/rpc/v5 v5.1.7
4646
github.com/roadrunner-server/send/v5 v5.1.4
4747
github.com/roadrunner-server/server/v5 v5.2.8
4848
github.com/roadrunner-server/service/v5 v5.1.7
@@ -53,7 +53,7 @@ require (
5353
github.com/spf13/cobra v1.9.1
5454
github.com/spf13/viper v1.20.1
5555
github.com/stretchr/testify v1.10.0
56-
github.com/temporalio/roadrunner-temporal/v5 v5.5.2
56+
github.com/temporalio/roadrunner-temporal/v5 v5.6.0
5757
go.uber.org/automaxprocs v1.6.0
5858
)
5959

0 commit comments

Comments
 (0)