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
Depend on a specific version of the supabase-wrappers project instead of a path based dependency
Additional context
The path based dependency can stay as it is useful during dev, but we should build against a released version of supabase-wrappers to better dogfood the crate.
The text was updated successfully, but these errors were encountered:
-- Disable the "wrappers" extension
drop extension if exists wrappers CASCADE;
-- Enable the "wrappers" extension
create extension wrappers with version "0.1.17";
Doesn't work
And would be interesting for projects that need consistency :)
@StanGirard this chore was about updating this line in Cargo.toml to use a specific version instead of a relative path. It wouldn't change anything about how drop/create extension works.
For the error you see, can you check whether select * from pg_available_extensions where name = 'wrappers'; shows version 0.1.17?
Chore
Describe the chore
Depend on a specific version of the
supabase-wrappers
project instead of a path based dependencyAdditional context
The path based dependency can stay as it is useful during dev, but we should build against a released version of
supabase-wrappers
to better dogfood the crate.The text was updated successfully, but these errors were encountered: