Realtime not working in supabase-js 2.54+

Hello ! I've recently updated supabase-js from 2.49 to 2.57 and my realtime connection does not work anymore.

// schema = 'public' table = 'user' filter = 'id=eq.xxxx'
channel.on('postgres_changes', { event: '*', schema, table, filter }, (payload) => {
  console.log(channelName, 'postgres_changes', payload) // Never triggered
})

channel.subscribe((status) => {
  console.log(channelName, 'Subscription Status', status) // SUBSCIBED
})


This is the code that handle my subscription. It works up to v2.53, and I can't find in documentation what might be wrong.
Was this page helpful?