forked from knative/client
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update go-retryablehttp to v0.7.7 (#415)
- Loading branch information
1 parent
17b9643
commit 880c61f
Showing
102 changed files
with
9,975 additions
and
4,445 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
1 change: 1 addition & 0 deletions
1
third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/.go-version
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
1.22.2 |
28 changes: 26 additions & 2 deletions
28
third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/CHANGELOG.md
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
2 changes: 1 addition & 1 deletion
2
third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/CODEOWNERS
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 +1 @@ | ||
* @hashicorp/release-engineering | ||
* @hashicorp/go-retryablehttp-maintainers |
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
14 changes: 14 additions & 0 deletions
14
third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/cert_error_go119.go
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright (c) HashiCorp, Inc. | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
//go:build !go1.20 | ||
// +build !go1.20 | ||
|
||
package retryablehttp | ||
|
||
import "crypto/x509" | ||
|
||
func isCertError(err error) bool { | ||
_, ok := err.(x509.UnknownAuthorityError) | ||
return ok | ||
} |
14 changes: 14 additions & 0 deletions
14
third_party/VENDOR-LICENSE/github.com/hashicorp/go-retryablehttp/cert_error_go120.go
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright (c) HashiCorp, Inc. | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
//go:build go1.20 | ||
// +build go1.20 | ||
|
||
package retryablehttp | ||
|
||
import "crypto/tls" | ||
|
||
func isCertError(err error) bool { | ||
_, ok := err.(*tls.CertificateVerificationError) | ||
return ok | ||
} |
Oops, something went wrong.