You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump copilot-sdk/go to v1.0.0-beta.9 (#8)
Copilot CLI 1.0.56-0 returns ping timestamps as RFC3339 strings,
but copilot-sdk/go v0.3.0 declares PingResponse.Timestamp as int64,
so client.Start fails with:
json: cannot unmarshal string into Go struct field
PingResponse.timestamp of type int64
v1.0.0-beta.9 changes the field to time.Time, which decodes the
new string form. No source changes are needed; the rest of the
API surface we use is unchanged.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>