Skip to content

Commit

Permalink
[#2127]: release: v2024.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rustatian authored Feb 13, 2025
2 parents 311fa00 + ddd0cb2 commit 513d9b7
Show file tree
Hide file tree
Showing 4 changed files with 129 additions and 129 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
go-version: stable

- name: Run linter
uses: golangci/golangci-lint-action@v6.3.2
uses: golangci/golangci-lint-action@v6.3.3
with:
version: v1.62 # without patch version
version: v1.64 # without patch version
only-new-issues: false # show only new issues if it's a pull request
args: -v --build-tags=race --timeout=10m

Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
continue-on-error: true
uses: codecov/codecov-action@v5.3.1 # https://github.com/codecov/codecov-action
with:
file: /tmp/coverage.txt
files: /tmp/coverage.txt

build:
name: Build for ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Image page: <https://hub.docker.com/_/golang>
FROM --platform=${TARGETPLATFORM:-linux/amd64} golang:1.23-alpine as builder
FROM --platform=${TARGETPLATFORM:-linux/amd64} golang:1.24-alpine as builder

Check warning on line 2 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build docker image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 2 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build docker image

Setting platform to predefined $TARGETPLATFORM in FROM is redundant as this is the default behavior

RedundantTargetPlatform: Setting platform to predefined ${TARGETPLATFORM:-linux/amd64} in FROM is redundant as this is the default behavior More info: https://docs.docker.com/go/dockerfile/rule/redundant-target-platform/

# app version and build date must be passed during image building (version without any prefix).
# e.g.: `docker build --build-arg "APP_VERSION=1.2.3" --build-arg "BUILD_TIME=$(date +%FT%T%z)" .`
Expand Down
86 changes: 43 additions & 43 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,59 +1,59 @@
module github.com/roadrunner-server/roadrunner/v2024

go 1.23.2
go 1.24

toolchain go1.23.4
toolchain go1.24.0

require (
github.com/buger/goterm v1.0.4
github.com/dustin/go-humanize v1.0.1
github.com/fatih/color v1.18.0
github.com/joho/godotenv v1.5.1
github.com/olekukonko/tablewriter v0.0.5
github.com/roadrunner-server/amqp/v5 v5.1.3
github.com/roadrunner-server/amqp/v5 v5.1.4
github.com/roadrunner-server/api/v4 v4.18.1
github.com/roadrunner-server/app-logger/v5 v5.1.3
github.com/roadrunner-server/beanstalk/v5 v5.1.3
github.com/roadrunner-server/boltdb/v5 v5.1.3
github.com/roadrunner-server/centrifuge/v5 v5.1.3
github.com/roadrunner-server/config/v5 v5.1.3
github.com/roadrunner-server/app-logger/v5 v5.1.4
github.com/roadrunner-server/beanstalk/v5 v5.1.4
github.com/roadrunner-server/boltdb/v5 v5.1.4
github.com/roadrunner-server/centrifuge/v5 v5.1.4
github.com/roadrunner-server/config/v5 v5.1.4
github.com/roadrunner-server/endure/v2 v2.6.1
github.com/roadrunner-server/errors v1.4.1
github.com/roadrunner-server/fileserver/v5 v5.1.3
github.com/roadrunner-server/google-pub-sub/v5 v5.1.3
github.com/roadrunner-server/fileserver/v5 v5.1.4
github.com/roadrunner-server/google-pub-sub/v5 v5.1.4
github.com/roadrunner-server/goridge/v3 v3.8.3
github.com/roadrunner-server/grpc/v5 v5.1.3
github.com/roadrunner-server/gzip/v5 v5.1.3
github.com/roadrunner-server/headers/v5 v5.1.3
github.com/roadrunner-server/http/v5 v5.2.2
github.com/roadrunner-server/informer/v5 v5.1.3
github.com/roadrunner-server/jobs/v5 v5.1.3
github.com/roadrunner-server/kafka/v5 v5.1.3
github.com/roadrunner-server/kv/v5 v5.2.3
github.com/roadrunner-server/lock/v5 v5.1.3
github.com/roadrunner-server/logger/v5 v5.1.3
github.com/roadrunner-server/memcached/v5 v5.1.3
github.com/roadrunner-server/memory/v5 v5.2.3
github.com/roadrunner-server/metrics/v5 v5.1.3
github.com/roadrunner-server/nats/v5 v5.1.3
github.com/roadrunner-server/otel/v5 v5.1.3
github.com/roadrunner-server/grpc/v5 v5.1.4
github.com/roadrunner-server/gzip/v5 v5.1.4
github.com/roadrunner-server/headers/v5 v5.1.4
github.com/roadrunner-server/http/v5 v5.2.3
github.com/roadrunner-server/informer/v5 v5.1.4
github.com/roadrunner-server/jobs/v5 v5.1.4
github.com/roadrunner-server/kafka/v5 v5.1.4
github.com/roadrunner-server/kv/v5 v5.2.4
github.com/roadrunner-server/lock/v5 v5.1.4
github.com/roadrunner-server/logger/v5 v5.1.4
github.com/roadrunner-server/memcached/v5 v5.1.4
github.com/roadrunner-server/memory/v5 v5.2.4
github.com/roadrunner-server/metrics/v5 v5.1.4
github.com/roadrunner-server/nats/v5 v5.1.4
github.com/roadrunner-server/otel/v5 v5.1.4
github.com/roadrunner-server/pool v1.1.2
github.com/roadrunner-server/prometheus/v5 v5.1.3
github.com/roadrunner-server/proxy_ip_parser/v5 v5.1.3
github.com/roadrunner-server/redis/v5 v5.1.3
github.com/roadrunner-server/resetter/v5 v5.1.3
github.com/roadrunner-server/rpc/v5 v5.1.3
github.com/roadrunner-server/send/v5 v5.1.2
github.com/roadrunner-server/server/v5 v5.2.4
github.com/roadrunner-server/service/v5 v5.1.3
github.com/roadrunner-server/sqs/v5 v5.1.3
github.com/roadrunner-server/static/v5 v5.1.2
github.com/roadrunner-server/status/v5 v5.1.3
github.com/roadrunner-server/tcp/v5 v5.1.3
github.com/roadrunner-server/prometheus/v5 v5.1.4
github.com/roadrunner-server/proxy_ip_parser/v5 v5.1.4
github.com/roadrunner-server/redis/v5 v5.1.4
github.com/roadrunner-server/resetter/v5 v5.1.4
github.com/roadrunner-server/rpc/v5 v5.1.4
github.com/roadrunner-server/send/v5 v5.1.3
github.com/roadrunner-server/server/v5 v5.2.5
github.com/roadrunner-server/service/v5 v5.1.4
github.com/roadrunner-server/sqs/v5 v5.1.4
github.com/roadrunner-server/static/v5 v5.1.3
github.com/roadrunner-server/status/v5 v5.1.4
github.com/roadrunner-server/tcp/v5 v5.1.4
github.com/spf13/cobra v1.8.1
github.com/spf13/viper v1.19.0
github.com/stretchr/testify v1.10.0
github.com/temporalio/roadrunner-temporal/v5 v5.5.0
github.com/temporalio/roadrunner-temporal/v5 v5.5.1
go.uber.org/automaxprocs v1.6.0
)

Expand All @@ -70,7 +70,7 @@ require (
cloud.google.com/go/auth v0.14.1 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect
cloud.google.com/go/compute/metadata v0.6.0 // indirect
cloud.google.com/go/iam v1.3.1 // indirect
cloud.google.com/go/iam v1.4.0 // indirect
cloud.google.com/go/pubsub v1.47.0 // indirect
github.com/andybalholm/brotli v1.1.1 // indirect
github.com/aws/aws-sdk-go v1.55.6 // indirect
Expand Down Expand Up @@ -220,10 +220,10 @@ require (
golang.org/x/text v0.22.0 // indirect
golang.org/x/time v0.10.0 // indirect
golang.org/x/tools v0.30.0 // indirect
google.golang.org/api v0.220.0 // indirect
google.golang.org/genproto v0.0.0-20250207221924-e9438ea467c6 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20250207221924-e9438ea467c6 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20250207221924-e9438ea467c6 // indirect
google.golang.org/api v0.221.0 // indirect
google.golang.org/genproto v0.0.0-20250212204824-5a70512c5d8b // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20250212204824-5a70512c5d8b // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20250212204824-5a70512c5d8b // indirect
google.golang.org/grpc v1.70.0 // indirect
google.golang.org/protobuf v1.36.5 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
Expand Down
Loading

0 comments on commit 513d9b7

Please sign in to comment.