Skip to content
Merged
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: actions/setup-go@v3
with:
# Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile
go-version: 1.25.3
go-version: 1.25.5
- name: Test
run: |
make check-fmt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
uses: actions/setup-go@v3
with:
# Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile
go-version: 1.25.3
go-version: 1.25.5
- name: Set up QEMU
uses: docker/setup-qemu-action@master
with:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ REGISTRY_NAME := docker-public.packages.atlassian.com
IMAGE_PREFIX := $(REGISTRY_NAME)/$(REPOSITORY_NAME)
IMAGE_NAME := $(IMAGE_PREFIX)-$(CPU_ARCH)
ARCH ?= $(shell uname -s | tr A-Z a-z)
GOVERSION := 1.25.3 # Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile
GOVERSION := 1.25.5 # Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile
GP := /gopath
MAIN_PKG := github.com/atlassian/gostatsd/cmd/gostatsd
CLUSTER_PKG := github.com/atlassian/gostatsd/cmd/cluster
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ server based on load.
Building the server
-------------------
[](# Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile)
Gostatsd currently targets Go 1.25.3. If you are compiling from source, please ensure you are running this version.
Gostatsd currently targets Go 1.25.5. If you are compiling from source, please ensure you are running this version.

From the `gostatsd` directory run `make build`. The binary will be built in `build/bin/<arch>/gostatsd`.

Expand Down
2 changes: 1 addition & 1 deletion build/Dockerfile-multiarch
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile
FROM golang:1.25.3 AS build
FROM golang:1.25.5 AS build
WORKDIR /build

# Install dependencies first to take advantage of the docker build cache.
Expand Down
2 changes: 1 addition & 1 deletion build/Dockerfile-multiarch-glibc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile
FROM golang:1.25.3 AS build
FROM golang:1.25.5 AS build
WORKDIR /build

# Install dependencies first to take advantage of the docker build cache.
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/atlassian/gostatsd

go 1.25.3
go 1.25.5

require (
github.com/alicebob/miniredis/v2 v2.23.0
Expand All @@ -17,7 +17,7 @@ require (
github.com/libp2p/go-reuseport v0.2.0
github.com/magiconair/properties v1.8.7
github.com/pierrec/lz4/v4 v4.1.19
github.com/sirupsen/logrus v1.9.0
github.com/sirupsen/logrus v1.9.3
github.com/spf13/pflag v1.0.6
github.com/spf13/viper v1.17.0
github.com/stretchr/testify v1.9.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ github.com/sagikazarmark/locafero v0.3.0 h1:zT7VEGWC2DTflmccN/5T1etyKvxSxpHsjb9c
github.com/sagikazarmark/locafero v0.3.0/go.mod h1:w+v7UsPNFwzF1cHuOajOOzoq4U7v/ig1mpRjqV+Bu1U=
github.com/sagikazarmark/slog-shim v0.1.0 h1:diDBnUNK9N/354PgrxMywXnAwEr1QZcOr6gto+ugjYE=
github.com/sagikazarmark/slog-shim v0.1.0/go.mod h1:SrcSrq8aKtyuqEI1uvTDTK1arOWRIczQRv+GVI1AkeQ=
github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0=
github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=
github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
github.com/sourcegraph/conc v0.3.0 h1:OQTbbt6P72L20UqAkXXuLOj79LfEanQ+YQFNpLA9ySo=
github.com/sourcegraph/conc v0.3.0/go.mod h1:Sdozi7LEKbFPqYX2/J+iBAM6HpqSLTASQIKqDmF7Mt0=
github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk=
Expand Down