Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.
Merged
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
15 changes: 15 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,18 @@ require (
gopkg.in/jcmturner/gokrb5.v7 v7.5.0 // indirect
gopkg.in/jcmturner/rpc.v1 v1.1.0 // indirect
)

// Although the Apache Traffic Control considers v7.0.1 stable, Go modules consider it unstable because its major version
// is greater than 1, and without these retractions, a commit like 817a702a9de6 will have a computed vesion of
// v1.1.4-0.20201118150121-817a702a9de6
// With these retractions, the same commit will have a computed version of
// v0.0.0-20201118150121-817a702a9de6
// See https://pkg.go.dev/cmd/go@go1.15.15#hdr-Module_compatibility_and_semantic_versioning for details.
retract (
v1.1.5-retractions
v1.1.4
v1.1.3
v1.1.2
v1.1.1
v1.1.0
)