Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1
jobs:
build:
docker:
- image: cimg/go:1.25
- image: cimg/go:1.26

environment:
GOPATH: /home/circleci/go
Expand Down Expand Up @@ -32,7 +32,7 @@ jobs:

deploy-master:
docker:
- image: cimg/go:1.25
- image: cimg/go:1.26

environment:
GOPATH: /home/circleci/go
Expand All @@ -58,7 +58,7 @@ jobs:

deploy-release:
docker:
- image: cimg/go:1.25
- image: cimg/go:1.26

environment:
GOPATH: /home/circleci/go
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.25.5 AS build-env
FROM golang:1.26.0 AS build-env
WORKDIR /usr/local/go/src/github.com/SpectoLabs/hoverfly
COPY . /usr/local/go/src/github.com/SpectoLabs/hoverfly

Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/SpectoLabs/hoverfly

go 1.25.5
go 1.26.0

require (
github.com/ChrisTrenkamp/xsel v0.9.16
Expand Down Expand Up @@ -40,6 +40,7 @@ require (
github.com/tdewolff/minify/v2 v2.24.8
github.com/xeipuuv/gojsonschema v1.2.0
golang.org/x/crypto v0.46.0
golang.org/x/term v0.38.0
gonum.org/v1/gonum v0.16.0
gopkg.in/yaml.v2 v2.4.0
k8s.io/client-go v0.35.0
Expand Down Expand Up @@ -84,7 +85,6 @@ require (
go.yaml.in/yaml/v3 v3.0.4 // indirect
golang.org/x/net v0.47.0 // indirect
golang.org/x/sys v0.39.0 // indirect
golang.org/x/term v0.38.0 // indirect
golang.org/x/text v0.32.0 // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
Expand Down
4 changes: 2 additions & 2 deletions hoverctl/cmd/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/SpectoLabs/hoverfly/hoverctl/configuration"
"github.com/olekukonko/tablewriter"
"golang.org/x/crypto/ssh/terminal"
"golang.org/x/term"
)

func handleIfError(err error) {
Expand Down Expand Up @@ -58,7 +58,7 @@ func askForInput(value string, sensitive bool) string {
for {
fmt.Printf("%s: ", value)
if sensitive {
responseBytes, err := terminal.ReadPassword(int(os.Stdin.Fd()))
responseBytes, err := term.ReadPassword(int(os.Stdin.Fd()))
handleIfError(err)
fmt.Println("")

Expand Down
76 changes: 0 additions & 76 deletions vendor/golang.org/x/crypto/ssh/terminal/terminal.go

This file was deleted.

1 change: 0 additions & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,6 @@ go.yaml.in/yaml/v3
golang.org/x/crypto/bcrypt
golang.org/x/crypto/blowfish
golang.org/x/crypto/sha3
golang.org/x/crypto/ssh/terminal
# golang.org/x/net v0.47.0
## explicit; go 1.24.0
golang.org/x/net/html
Expand Down
Loading