From c4a780e061e708b4c9fdc4a1b740c2ce80e8d054 Mon Sep 17 00:00:00 2001 From: yusing Date: Sat, 7 Jun 2025 18:54:23 +0800 Subject: [PATCH] chore: updated to go1.24.4 --- Dockerfile | 2 +- Makefile | 2 +- agent/go.mod | 2 +- go.mod | 2 +- internal/dnsproviders/go.mod | 2 +- internal/utils/go.mod | 2 +- socket-proxy/go.mod | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6e95884..d2794d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: deps -FROM golang:1.24.3-alpine AS deps +FROM golang:1.24.4-alpine AS deps HEALTHCHECK NONE # package version does not matter diff --git a/Makefile b/Makefile index c069334..3e45f84 100755 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ endif ifeq ($(debug), 1) CGO_ENABLED = 0 GODOXY_DEBUG = 1 - BUILD_FLAGS += -gcflags=all='-N -l' -tags debug + BUILD_FLAGS += -gcflags=all='-N -l' -tags debug -asan else ifeq ($(pprof), 1) CGO_ENABLED = 1 GORACE = log_path=logs/pprof strip_path_prefix=$(shell pwd)/ halt_on_error=1 diff --git a/agent/go.mod b/agent/go.mod index 38e5bf6..a39a624 100644 --- a/agent/go.mod +++ b/agent/go.mod @@ -1,6 +1,6 @@ module github.com/yusing/go-proxy/agent -go 1.24.3 +go 1.24.4 replace github.com/yusing/go-proxy => .. diff --git a/go.mod b/go.mod index ec126f4..d12d43d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/yusing/go-proxy -go 1.24.3 +go 1.24.4 replace github.com/yusing/go-proxy/agent => ./agent diff --git a/internal/dnsproviders/go.mod b/internal/dnsproviders/go.mod index b82c12e..08d032d 100644 --- a/internal/dnsproviders/go.mod +++ b/internal/dnsproviders/go.mod @@ -1,6 +1,6 @@ module github.com/yusing/go-proxy/internal/dnsproviders -go 1.24.3 +go 1.24.4 replace github.com/yusing/go-proxy => ../.. diff --git a/internal/utils/go.mod b/internal/utils/go.mod index f10f0a9..07f8d04 100644 --- a/internal/utils/go.mod +++ b/internal/utils/go.mod @@ -1,6 +1,6 @@ module github.com/yusing/go-proxy/internal/utils -go 1.24.3 +go 1.24.4 require ( github.com/goccy/go-yaml v1.18.0 diff --git a/socket-proxy/go.mod b/socket-proxy/go.mod index 05e8322..77bb4c2 100644 --- a/socket-proxy/go.mod +++ b/socket-proxy/go.mod @@ -1,6 +1,6 @@ module github.com/yusing/go-proxy/socketproxy -go 1.24.3 +go 1.24.4 replace github.com/yusing/go-proxy/internal/utils => ../internal/utils