Releases are handled by Semantic release. This document is for forcing and documenting any non-code changes.
- Implement @supabase/storage-js
- Ability to redirect a user to a specified location after confirmation
- bump @supabase/gotrue-js from 1.9.3.2 to 1.10.1
- Includes Next.js/Express helpers and Password reset helpers
- bump @supabase/postgrest-js from 0.21.2 to 0.22.0
- Fix: Added 'AuthUser' to the exports
- Bumps gotrue-js so that it works with React Native: supabase/auth-js#26
- Adds local storage options for Auth.
- Upgrades postgrest-js dependency to fix ordering for JSON columns. (supabase/postgrest-js#132)
- Fixes link in readme for NPM.
- Upgraded the
supabase.auth
to gotrue-js - supports Oath logins & more - We always return errors, not throwing errors.
- We only generate one socket connection per supabase client.
- Native typescript
- Fixes #32 Major DX change: response and error handling
- Fixes #49 When no
supabaseKey
is passed in it throws an error - Fixes #31 chore: set up semantic releases
- Fixes #15
supabase.auth.logout()
throws "Invalid user" error. - Fixes #20 Auth: Change DX of user management
- Fixes #30 Supabase auth interface missing informiation
- Fixes supabase/supabase#147 supabase/supabase#147
- Partial fix for supabase/realtime-js#53 - if there is no token provided. The error needs to be caught at a socket level.
body
is now data
Previously:
const { body } = supabase.from('todos').select('*')
Now:
const { data } = supabase.from('todos').select('*')
Errors are returned not thrown
Previously:
try {
const { body } = supabase.from('todos').select('*')
} catch (error) {
console.log(error)
}
Now:
const { data, error } = supabase.from('todos').select('*')
if (error) console.log(error)
ova()
and ovr()
are now just ov()
Previously:
try {
const { body } = supabase.from('todos').select('*').ovr('population_range_millions', [150, 250])
} catch (error) {
console.log(error)
}
Now:
const { data, error } = supabase
.from('todos')
.select('*')
.ov('population_range_millions', [150, 250])
if (error) console.log(error)
offset()
is removed
You can now use range() instead of limit()
+ offset()
ova()
and ovr()
are now just ov()
Previously:
let countries = await supabase.from('cities').select('name').offset(10).limit(10)
Now:
let countries = await supabase.from('cities').select('name').range(10, 20)
signup()
is now signUp()
and email
/ password
is passed as an object
Previously:
const {
body: { user },
} = await supabase.auth.signup('[email protected]', 'password')
Now:
const { user, error } = await supabase.auth.signUp({
email: '[email protected]',
password: 'password',
})
login()
is now signIn()
and email
/ password
is passed as an object
Previously:
const {
body: { user },
} = await supabase.auth.signup('[email protected]', 'password')
Now:
const { user, error } = await supabase.auth.signIn({
email: '[email protected]',
password: 'password',
})
logout()
is now signOut()
Previously:
await supabase.auth.logout()
Now:
await supabase.auth.signOut()