From fc4346b4d2348799dc8e3577159c2fdbab00e81c Mon Sep 17 00:00:00 2001 From: Johannes Hoppenstedt <5921150+jhoppenstedt@users.noreply.github.com> Date: Fri, 8 May 2026 10:43:42 +0200 Subject: [PATCH] Update Go to 1.26.2 --- .circleci/config.yml | 6 +++--- CLAUDE.md | 2 +- CONTRIBUTING.md | 2 +- Dockerfile | 2 +- go.mod | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 29638a2a0..151d62cba 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 jobs: build: docker: - - image: cimg/go:1.26.1 + - image: cimg/go:1.26.2 environment: GOPATH: /home/circleci/go @@ -32,7 +32,7 @@ jobs: deploy-master: docker: - - image: cimg/go:1.26.1 + - image: cimg/go:1.26.2 environment: GOPATH: /home/circleci/go @@ -58,7 +58,7 @@ jobs: deploy-release: docker: - - image: cimg/go:1.26.1 + - image: cimg/go:1.26.2 environment: GOPATH: /home/circleci/go diff --git a/CLAUDE.md b/CLAUDE.md index 112241dc3..bfdd2b358 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -89,7 +89,7 @@ Matchers operate per HTTP field (method, path, query, headers, body, scheme, des ## Tech Stack -- **Go 1.26.1**, modules in `go.mod` +- **Go 1.26.2**, modules in `go.mod` - **Proxy:** `github.com/SpectoLabs/goproxy` (custom MITM fork) - **CLI:** `cobra` + `viper` - **Routing (admin API):** `gorilla/mux`, `go-zoo/bone` diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cb42fa1d5..c41811ce7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,7 +6,7 @@ Thanks for your interest in contributing to Hoverfly! This guide will help you g ### Prerequisites -- **Go 1.26.1+** — install from [golang.org/dl](https://golang.org/dl) +- **Go 1.26.2+** — install from [golang.org/dl](https://golang.org/dl) - **Ruby** and **Python** — needed for some middleware tests ```bash # macOS diff --git a/Dockerfile b/Dockerfile index e888b4212..544bc329a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.26.1 AS build-env +FROM golang:1.26.2 AS build-env WORKDIR /usr/local/go/src/github.com/SpectoLabs/hoverfly COPY . /usr/local/go/src/github.com/SpectoLabs/hoverfly diff --git a/go.mod b/go.mod index 89bb24d2a..aa4eaa622 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/SpectoLabs/hoverfly -go 1.26.1 +go 1.26.2 require ( github.com/ChrisTrenkamp/xsel v0.9.16