SShortSingh.
Back to feed

Supabase .NET SDK Gets Critical Bug Fixes in First Developer Log

0
·3 views

A new Supabase engineer has published the first weekly development log for the .NET SDK, detailing several critical bug fixes currently in progress. Key issues addressed include broken email OTP sign-in and password reset due to swapped PKCE values, dead sessions persisting after token refresh failures, and negation being silently dropped in query predicates. Additional fixes cover truncated DateTime precision in PostgREST and improved handling of column filters. None of these changes have been released yet, with a clean version planned for later this week alongside dependency updates. The team's next milestone after stabilization is to migrate the SDK to a monorepo structure.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Student Seeks Community Ideas to Build a Standout Civic Complaint Management System

A college student is developing a Civic Complaint Management System as their major project and has turned to the DEV Community for suggestions. Acknowledging that many similar projects already exist, the student wants to build a more practical and real-world-ready solution. Key challenges they hope to address include preventing officers from falsely marking complaints as resolved without proper verification. They are also exploring the potential of AI features, stronger accountability mechanisms, and improved security workflows. The student deliberately withheld their own ideas to gather unbiased input from the developer community.

0
ProgrammingDEV Community ·

AI Music Floods Streaming Platforms With Fraud, Sparking Industry Reckoning

AI music tools now allow anyone to produce studio-quality tracks in seconds, with streaming platforms struggling to manage an exponential surge in synthetic uploads. Deezer reported approximately 75,000 fully AI-generated tracks uploaded daily by April 2026, accounting for 44% of all new music, while tagging over 13 million synthetic tracks in 2025 alone. Fraud is a central concern, with up to 85% of streams on AI-generated tracks found to be bot-driven, artificially inflating royalty payouts. Spotify has removed 75 million spammy tracks, iHeartMedia introduced a 'Guaranteed Human' content policy, and the Grammy Awards updated rules to ensure human creators remain the recipients of honours. Record labels face a structural contradiction, simultaneously suing AI companies for copyright violations while negotiating licensing deals with those same firms, as projected revenue losses by 2028 intensify pressure on all sides.

0
ProgrammingDEV Community ·

Fixzi.ai Builds XML Diff Tool to Speed Up Legacy API Debugging

A developer at Fixzi.ai spent nearly 40 minutes debugging a broken SOAP API integration, only to discover a single XML element had shifted position by three lines. Unlike standard line-by-line text diff tools, a true XML diff understands tree structure, making it easier to detect renamed tags, missing attributes, or reordered elements. The team at Fixzi.ai decided to build an XML diff tool directly into their platform after repeatedly struggling with legacy integrations and resorting to unreliable third-party formatters. The tool allows users to compare two XML files side-by-side and identify structural differences in seconds. XML remains widely used in banking, enterprise software, and telecom, where debugging errors can be time-consuming and costly.

0
ProgrammingDEV Community ·

Wrongulator: Why a Joke Calculator Must Return the Same Wrong Answer Every Time

Wrongulator is a deliberately incorrect calculator built around a single core rule: it must return the same wrong answer for every user, on every device, every time. The developer argues that shareable humor requires a consistent, verifiable shared fact — if two people see different wrong answers, there is nothing to laugh about together or argue over. To achieve this, the engine uses no database, no server calls, and no random number generation; instead, it converts the input expression into a seed using the FNV-1a hash function and feeds that seed into a deterministic pseudorandom number generator called mulberry32. The result is a pure function where identical inputs always produce identical outputs, making the tool infinitely scalable and fully client-side. The design choice was driven entirely by shareability rather than performance, since a non-deterministic implementation would break the viral chain the moment a second person tried to verify the joke.