Skip to content

Commit

Permalink
feat: version bump realtime-js to v1.8.0-next.17
Browse files Browse the repository at this point in the history
  • Loading branch information
w3b6x9 committed Aug 16, 2022
1 parent fdb7bf5 commit 945d2a6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion example/next-storage/components/ProfileList.tsx
Expand Up @@ -11,7 +11,7 @@ export default function ProfileList() {
getUserProfile()

const realtimeProfiles = supabase
.channel('profiles-channel')
.channel('public:profiles')
.on(
'postgres_changes',
{ event: '*', schema: 'public', table: 'profiles' },
Expand Down
4 changes: 2 additions & 2 deletions example/next-todo/components/TodoList.js
Expand Up @@ -13,7 +13,7 @@ export default function Todos({ user }) {
fetchTodos()

subscription1 = supabase
.channel('todos-table-channel')
.channel('public:todos')
.on('postgres_changes', { event: 'UPDATE', schema: 'public', table: 'todos' }, (v) =>
console.log('UPDATE on todos', v)
)
Expand All @@ -23,7 +23,7 @@ export default function Todos({ user }) {
.subscribe((change) => console.log('todos changed', change))

subscription2 = supabase
.channel('public-schema-channel')
.channel('public')
.on('postgres_changes', { event: 'UPDATE', schema: 'public' }, (v) =>
console.log('UPDATE on schema', v)
)
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -40,7 +40,7 @@
"@supabase/functions-js": "^1.4.0-next.5",
"@supabase/gotrue-js": "^1.23.0-next.24",
"@supabase/postgrest-js": "^1.0.0-next.7",
"@supabase/realtime-js": "^1.8.0-next.16",
"@supabase/realtime-js": "^1.8.0-next.17",
"@supabase/storage-js": "^1.8.0-next.6",
"cross-fetch": "^3.1.5"
},
Expand Down

0 comments on commit 945d2a6

Please sign in to comment.