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
You can now opt to disable the Data API when creating a new project under a section called "Advanced Options", such that you will only be able to connect to your database via connection string. Note that this setting can be subsequently updated again in the project's API settings if and when you want to connect your project via the client libraries.
You can now control client access to Realtime Broadcast and Presence by adding Row Level Security policies to the realtime.messages table! Read more about through our documentation here!
Previously, the Table Editor on the dashboard would run a select count(*) from table query to retrieve the number of rows in the table and display it in the editor (this also supports the pagination logic as well). However, understandably this query can be resource intensive and expensive if the table in question is particularly large. As such, we've chucked some optimizations around this logic to only retrieve the exact row count if the table has less than 50k rows, otherwise we'll retrieve an estimate of the row count instead. You'll still be able to get the exact row count but on demand instead.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Option to disable Data API when creating projects
You can now opt to disable the Data API when creating a new project under a section called "Advanced Options", such that you will only be able to connect to your database via connection string. Note that this setting can be subsequently updated again in the project's API settings if and when you want to connect your project via the client libraries.
PR: #26809
Link: https://supabase.com/dashboard/new/_
Authorization for Realtime is now available!
You can now control client access to Realtime Broadcast and Presence by adding Row Level Security policies to the
realtime.messages
table! Read more about through our documentation here!PR: #27362
Link: https://supabase.com/dashboard/project/_/realtime/inspector\
Optimizations for table editor row count query
Previously, the Table Editor on the dashboard would run a
select count(*) from table
query to retrieve the number of rows in the table and display it in the editor (this also supports the pagination logic as well). However, understandably this query can be resource intensive and expensive if the table in question is particularly large. As such, we've chucked some optimizations around this logic to only retrieve the exact row count if the table has less than 50k rows, otherwise we'll retrieve an estimate of the row count instead. You'll still be able to get the exact row count but on demand instead.PR: #27612
Link: https://supabase.com/dashboard/project/_/editor
Support showing all entity types in the database/tables page
PR: #27749
Link: https://supabase.com/dashboard/project/_/database/tables
Other improvements and bug fixes
General
Account
Storage
Table Editor
SQL Editor
Beta Was this translation helpful? Give feedback.
All reactions