How do i upgrade supabase?
I am installing supabase using brew on my machine:
brew install supabase/tap/supabase
but whatever I do, it always installs v1.223.10, and then notifies me that a newer version exists
A new version of Supabase CLI is available: v2.6.8
How do i install 2.6.8? nothing seems to make a difference
3 Replies
brew upgrade supabase
I strongly recommend you use
npx
and install the CLI as a dev dependency to any of your projects you are using it in. This way you can lock the version that project is using and easily rollback if a newer version should have an issue.It always installs the 1.x version, even if i do brew upgrade, it never recognizes the newer 2.x version
Will try that, thanks 🙂