-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Go-Fastly dependency to 3.0.0 #359
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, with some nitpicky copyedits 🎉
@@ -46,7 +46,7 @@ const DefaultRealtimeStatsEndpoint = "https://rt.fastly.com" | |||
var ProjectURL = "github.com/fastly/go-fastly" | |||
|
|||
// ProjectVersion is the version of this library. | |||
var ProjectVersion = "2.1.0" | |||
var ProjectVersion = "3.0.0" | |||
|
|||
// UserAgent is the user agent for this particular client. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// UserAgent is the user agent for this particular client. | |
// UserAgent is the user agent for this client. |
// String implements the stringer interface and returns the string representing | ||
// the string text that includes the status code and corresponding status text. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// String implements the stringer interface and returns the string representing | |
// the string text that includes the status code and corresponding status text. | |
// String implements the string interface and returns a string | |
// that includes the status code and corresponding status text. |
Thanks @doramatadora but unfortunately those edits will need to be made to the Go-Fastly repo. The terraform provider vendors its dependencies, so the files you've suggested changes to would be overwritten the next time someone runs |
Thank you for the explanation! In that case, this looks great. I will open a PR in Go-Fastly. |
Ran the full test suite and it's passing. |
11b621a
to
deda1ef
Compare
There is a new major version release for the Go-Fastly dependency. It introduces some breaking changes, which this PR addresses.
NOTE: as part of the current TLS implementation work, there will need to be changes added to a 3.x.x release of Go-Fastly and so integrating the TLS features into Terraform will be blocked until this PR is merged.