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
Auto-generated parity issue — may be a false positive.
This issue was created automatically by /sync-sdk-parity from a heuristic analysis of recent supabase-js commits. The tooling has limited insight into language-specific idioms and may have:
misidentified a JS-only change as cross-language relevant,
missed an existing implementation in this SDK under a different name,
or proposed an API shape that doesn't fit this language's conventions.
It is the SDK author's responsibility to validate the need before implementing. If this change does not apply to this SDK, please close the issue with a short note explaining why.
SDK Parity: C# implementation needed
A new feature was added to supabase-js that may be worth implementing in this repository. Please confirm applicability before starting work.
SupabaseClient now accepts a tracePropagation option that injects W3C traceparent/tracestate headers into all outgoing requests using the active OpenTelemetry span context. Optional dependency, graceful no-op fallback.
Implementation Guidance (C#)
varsupabase=newSupabase.Client(url,key,newSupabaseOptions{TracePropagation=true,// or: TracePropagation = new TracePropagationOptions { Targets = [...] }});// All HttpClient requests include W3C traceparent header
Key Behaviors to Match
Optional OpenTelemetry NuGet package — no-op if absent
Injects traceparent into all sub-client HTTP requests
Configurable URL target filter
Acceptance Criteria
TracePropagation = true option accepted by SupabaseOptions
Active OTel activity causes traceparent header in requests
Warning
Auto-generated parity issue — may be a false positive.
This issue was created automatically by
/sync-sdk-parityfrom a heuristic analysis of recentsupabase-jscommits. The tooling has limited insight into language-specific idioms and may have:It is the SDK author's responsibility to validate the need before implementing. If this change does not apply to this SDK, please close the issue with a short note explaining why.
SDK Parity: C# implementation needed
A new feature was added to
supabase-jsthat may be worth implementing in this repository. Please confirm applicability before starting work.Reference Implementation (supabase-js)
2fe1801What Changed
SupabaseClientnow accepts atracePropagationoption that injects W3Ctraceparent/tracestateheaders into all outgoing requests using the active OpenTelemetry span context. Optional dependency, graceful no-op fallback.Implementation Guidance (C#)
Key Behaviors to Match
OpenTelemetryNuGet package — no-op if absenttraceparentinto all sub-client HTTP requestsAcceptance Criteria
TracePropagation = trueoption accepted bySupabaseOptionstraceparentheader in requestsContext
/sync-sdk-parity