From b0ca24d6edf0995c3a8f558bdab8de651fc06b8a Mon Sep 17 00:00:00 2001 From: Trajan0x Date: Mon, 4 Mar 2024 15:50:56 +0100 Subject: [PATCH 1/2] deprecate explorer [goreleaser] --- core/README.md | 2 +- docker/goreleaser/Dockerfile | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/core/README.md b/core/README.md index 6ee1a517ee..d49980f8f3 100644 --- a/core/README.md +++ b/core/README.md @@ -20,7 +20,7 @@ root ├── merkle: Provides a go based merkle tree implementation. ├── metrics: Provides a set of utilities for working with metrics/otel tracing. ├── mocktesting: Provides a mocked tester for use with `testing.TB` -├── observer: Provides an interface for adding/removing listeners. +├── observer(deprecated): Provides an interface for adding/removing listeners. ├── processlog: Provides a way to interact with detatched processes as streams. ├── retry: Retries a function until it succeeds or the timeout is reached. This comes with a set of backoff strategies/options. ├── server: Provides a context-safe server that can be used to start/stop a server. diff --git a/docker/goreleaser/Dockerfile b/docker/goreleaser/Dockerfile index 8365755351..898f8f606d 100644 --- a/docker/goreleaser/Dockerfile +++ b/docker/goreleaser/Dockerfile @@ -1,7 +1,7 @@ FROM --platform=linux/amd64 debian:11 -ARG VERSION_ARG=1.20.0-pro -ARG SHA_ARG=d2d76cf4b212f67cb9995c8539167a1c6d771859aad20ed242bfab640b6d396f +ARG VERSION_ARG=1.24.0-pro +ARG SHA_ARG=4723a3063febbbdafd345e9c877f095dfc9c8a467b0eefe1987354aa1860970f ARG FILE_ARG=goreleaser-pro_Linux_x86_64.tar.gz ARG DOWNLOAD_ARG=https://github.com/goreleaser/goreleaser-pro/releases/download/v${VERSION_ARG}/${FILE_ARG} @@ -12,8 +12,8 @@ ENV GORELEASER_DOWNLOAD_FILE=$FILE_ARG ENV GORELEASER_DOWNLOAD_URL=$DOWNLOAD_ARG # Golang -ENV GOLANG_VERSION=1.21.3 -ENV GOLANG_SHA=1241381b2843fae5a9707eec1f8fb2ef94d827990582c7c7c32f5bdfbfd420c8 +ENV GOLANG_VERSION=1.22.0 +ENV GOLANG_SHA=f6c8a87aa03b92c4b0bf3d558e28ea03006eb29db78917daec5cfb6ec1046265 ENV GOLANG_DOWNLOAD_FILE=go${GOLANG_VERSION}.linux-amd64.tar.gz ENV GOLANG_DOWNLOAD_URL=https://dl.google.com/go/${GOLANG_DOWNLOAD_FILE} From 7d33c55e2940e376683e26b925014917c9a5bd38 Mon Sep 17 00:00:00 2001 From: Trajan0x Date: Mon, 4 Mar 2024 15:56:11 +0100 Subject: [PATCH 2/2] sha256 sum [goreleaser] --- docker/goreleaser/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/goreleaser/Dockerfile b/docker/goreleaser/Dockerfile index 898f8f606d..9a92b3e53f 100644 --- a/docker/goreleaser/Dockerfile +++ b/docker/goreleaser/Dockerfile @@ -1,7 +1,7 @@ FROM --platform=linux/amd64 debian:11 ARG VERSION_ARG=1.24.0-pro -ARG SHA_ARG=4723a3063febbbdafd345e9c877f095dfc9c8a467b0eefe1987354aa1860970f +ARG SHA_ARG=01237f7151d2c46c307f21de183eb863ce47a4b5244507487ec663640b077d7d ARG FILE_ARG=goreleaser-pro_Linux_x86_64.tar.gz ARG DOWNLOAD_ARG=https://github.com/goreleaser/goreleaser-pro/releases/download/v${VERSION_ARG}/${FILE_ARG}