v2.47.11
2.47.11 (2025-01-07)
NOTE: This release makes typings stricter which may break existing code.
Example code which was previously working:
await supabase
.from('mytable')
.select()
.eq('myenumcolumn', 'not_a_valid_enum_variant')
Bug Fixes
- stricter typings when filtering with
.eq()
,.neq()
, and.in()
(e50a86e)