Skip to content

Commit d6fb82a

Browse files
committed
release: v2025.1.0
Signed-off-by: Valery Piashchynski <[email protected]>
1 parent f0f7b7a commit d6fb82a

File tree

5 files changed

+37
-4
lines changed

5 files changed

+37
-4
lines changed

β€ŽSUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@
123123

124124
## πŸ“š Releases
125125

126+
* [v2025.1.0](releases/v2025-1-0.md)
126127
* [v2024.3.5](releases/v2024-3-5.md)
127128
* [v2024.3.4](releases/v2024-3-4.md)
128129
* [v2024.3.3](releases/v2024-3-3.md)

β€Žcustomization/build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ To download Velox and build an application server you need [Golang 1.22+](https:
265265
{% code title="go install" %}
266266

267267
```bash
268-
go install github.com/roadrunner-server/velox/v2024/cmd/vx@latest
268+
go install github.com/roadrunner-server/velox/v2025/cmd/vx@latest
269269
```
270270

271271
{% endcode %}

β€Žcustomization/embedding.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Import RoadRunner library via `go get` command into your Go project:
1212
{% code title="main.go" %}
1313

1414
```Bash
15-
go get -u github.com/roadrunner-server/roadrunner/v2024/lib
15+
go get -u github.com/roadrunner-server/roadrunner/v2025/lib
1616
```
1717

1818
{% endcode %}
@@ -25,7 +25,7 @@ go get -u github.com/roadrunner-server/roadrunner/v2024/lib
2525
```go
2626

2727
import (
28-
"github.com/roadrunner-server/roadrunner/v2024/lib"
28+
"github.com/roadrunner-server/roadrunner/v2025/lib"
2929
)
3030

3131
func main() {
@@ -47,7 +47,7 @@ You can, however, choose only the plugins you want and add your own private plug
4747

4848
```go
4949
import (
50-
"github.com/roadrunner-server/roadrunner/v2024/lib"
50+
"github.com/roadrunner-server/roadrunner/v2025/lib"
5151
httpPlugin "github.com/roadrunner-server/http/v5"
5252
"github.com/roadrunner-server/resetter/v5"
5353
"github.com/roadrunner-server/informer/v5"

β€Žintro/compatibility.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,3 +137,8 @@ Pool, Workers, and Context tools are now available separately:
137137
- `events` (events bus package from `github.com/roadrunner-server/sdk/v4/events`) was moved to the [Events](https://github.com/roadrunner-server/events) package.
138138

139139
{% endhint %}
140+
141+
### Upgrading to RoadRunner v2025
142+
143+
- For users of the RoadRunner library, the only required update is to change the Go package version from `v2024` to `v2025` in your `go.mod` file and package imports.
144+
- There are no breaking changes in the userland API and no configuration changes.

β€Žreleases/v2025-1-0.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# πŸš€ v2025.1.0 πŸš€
2+
3+
## Changelog:
4+
5+
### πŸ“¦ `Kafka` driver:
6+
7+
- πŸ› Fix TLS timeout parsing to avoid overflows, [kafka#2168](https://github.com/roadrunner-server/roadrunner/issues/2168) (thanks @adamsnoah98)
8+
9+
### πŸ“¦ `Jobs` plugin:
10+
11+
- πŸ› Improve handling of restart/exit pipeline events: propagate errors on restart failures and ensure pipelines resume after channel closures, [jobs#138](https://github.com/roadrunner-server/jobs/pull/138)
12+
13+
### πŸ“¦ `AMQP` driver:
14+
15+
- πŸ› Handle graceful channel closes to prevent redundant or erroneous close attempts, improve logging and correct events bus event [amqp#186](https://github.com/roadrunner-server/amqp/pull/186)
16+
17+
### πŸ“¦ `gRPC` plugin:
18+
19+
- 🧹 Upgrade gRPC to support `[email protected]` and new `List` healthcheck method, [#2162](https://github.com/roadrunner-server/roadrunner/issues/2162) (thanks @matthewhartstonge)
20+
21+
### πŸ“¦ `Redis` driver:
22+
23+
- ✨ Add Prometheus metrics integration via redisprometheus collector for enhanced observability, [redis#124](https://github.com/roadrunner-server/redis/pull/124) (thanks @dkomarek)
24+
25+
### 🎯 Core:
26+
27+
- 🚨 Security: address CVE-2025-22871 in the `rr` package to resolve critical audit findings, [#2166](https://github.com/roadrunner-server/roadrunner/issues/2166) (thanks @Orrison)

0 commit comments

Comments
Β (0)