From b64a6655d5cc2ca9268ea81b767522c339aaf6d1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 01:52:28 +0000 Subject: [PATCH] Update Go to v1.26.5 --- .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 52ed656ed..b501c1e2c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 jobs: build: docker: - - image: cimg/go:1.26.4 + - image: cimg/go:1.26.5 environment: GOPATH: /home/circleci/go @@ -32,7 +32,7 @@ jobs: deploy-master: docker: - - image: cimg/go:1.26.4 + - image: cimg/go:1.26.5 environment: GOPATH: /home/circleci/go @@ -58,7 +58,7 @@ jobs: deploy-release: docker: - - image: cimg/go:1.26.4 + - image: cimg/go:1.26.5 environment: GOPATH: /home/circleci/go diff --git a/CLAUDE.md b/CLAUDE.md index 4fe137eb6..e7ef37c49 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.4**, modules in `go.mod` +- **Go 1.26.5**, 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 17b0064a1..bfa63d77d 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.4+** — install from [golang.org/dl](https://golang.org/dl) +- **Go 1.26.5+** — 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 2bd2c3c66..db7d6b826 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.26.4 AS build-env +FROM golang:1.26.5 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 8f74dc572..fbb9e81cc 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/SpectoLabs/hoverfly -go 1.26.4 +go 1.26.5 require ( github.com/ChrisTrenkamp/xsel v0.9.16