From 227456c3cc00808ec7480f02d8f7cc794b3529d5 Mon Sep 17 00:00:00 2001 From: Daniel Holmes Date: Wed, 19 Jun 2024 04:30:39 +0000 Subject: [PATCH 1/2] chore: Retract v1.5.2 from go.mod Maintainers accidentally changed the reference commit for v1.5.2. This change retracts v1.5.2 which also includes a number of avoidable issues. Fixes #927 --- go.mod | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/go.mod b/go.mod index 1a7afd5..22d2668 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,7 @@ module github.com/gorilla/websocket go 1.12 + +retract ( + v1.5.2 // tag accidentally overwritten +) \ No newline at end of file From ac1b326ac0ae2f53411189133a884ade0649c05c Mon Sep 17 00:00:00 2001 From: Canelo Hill <172609632+canelohill@users.noreply.github.com> Date: Tue, 18 Jun 2024 22:40:57 -0600 Subject: [PATCH 2/2] Set min Go version to 1.20 (#930) Update go.mod and CI to Go version 1.20. --- .circleci/config.yml | 2 +- go.mod | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ecb33f6..ebd12c1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -67,4 +67,4 @@ workflows: - test: matrix: parameters: - version: ["1.18", "1.17", "1.16"] + version: ["1.22", "1.21", "1.20"] diff --git a/go.mod b/go.mod index 22d2668..dba1e22 100644 --- a/go.mod +++ b/go.mod @@ -1,7 +1,7 @@ module github.com/gorilla/websocket -go 1.12 +go 1.20 retract ( v1.5.2 // tag accidentally overwritten -) \ No newline at end of file +)