-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for BOSH_ALL_PROXY env var
- Loading branch information
Showing
4 changed files
with
125 additions
and
645 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,40 @@ | ||
module github.com/cloudfoundry-community/gogobosh | ||
|
||
go 1.17 | ||
go 1.22.0 | ||
|
||
toolchain go1.23.2 | ||
|
||
require ( | ||
github.com/cloudfoundry/bosh-utils v0.0.500 | ||
github.com/go-martini/martini v0.0.0-20170121215854-22fa46961aab | ||
github.com/martini-contrib/render v0.0.0-20150707142108-ec18f8345a11 | ||
github.com/onsi/ginkgo v1.16.5 | ||
github.com/onsi/gomega v1.27.1 | ||
golang.org/x/net v0.7.0 | ||
github.com/onsi/gomega v1.34.1 | ||
golang.org/x/net v0.30.0 | ||
golang.org/x/oauth2 v0.5.0 | ||
) | ||
|
||
require ( | ||
code.cloudfoundry.org/tlsconfig v0.7.0 // indirect | ||
github.com/cloudfoundry/go-socks5 v0.0.0-20240831012420-2590b55236ee // indirect | ||
github.com/cloudfoundry/socks5-proxy v0.2.127 // indirect | ||
github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/jpillora/backoff v1.0.0 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect | ||
github.com/nxadm/tail v1.4.8 // indirect | ||
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
github.com/pivotal-cf/paraphernalia v0.0.0-20180203224945-a64ae2051c20 // indirect | ||
github.com/rogpeppe/go-internal v1.6.1 // indirect | ||
golang.org/x/crypto v0.28.0 // indirect | ||
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect | ||
golang.org/x/sys v0.26.0 // indirect | ||
golang.org/x/text v0.19.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect | ||
google.golang.org/protobuf v1.34.1 // indirect | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.