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
go: change LogOptions.Ephemeral from bool to *bool (#827)
Previously, LogOptions.Ephemeral was a plain bool, so callers could not
distinguish between 'not set' (zero value false) and an explicit false.
This meant the SDK could never send ephemeral=false on the wire, always
deferring to the server default.
Change the field to *bool so nil means 'not set' (omitted from the
JSON-RPC payload) and a non-nil value is forwarded as-is. This is
consistent with how the other SDKs (Node, Python, .NET) handle the
field.
0 commit comments