-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(supabase): use exact package version #4035
Conversation
Run & review this pull request in StackBlitz Codeflow. |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
☁️ Nx Cloud ReportCI is running/has finished running commands for commit 347ff52. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution ✅ Successfully ran 1 targetSent with 💌 from NxCloud. |
Size Change: 0 B Total Size: 1.09 MB ℹ️ View Unchanged
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit 347ff52:
|
Test summaryRun details
This comment has been generated by cypress-bot as a result of this project's GitHub integration settings. You can manage this integration in this project's settings in the Cypress Cloud |
@@ -34,13 +34,340 @@ export interface Database { | |||
} | |||
public: { | |||
Tables: { | |||
[_ in never]: never | |||
assistant_threads: { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All of this file is generated by a script. This is what is used in the GitHub action that was failing. Supabase updated their DB and the latest docker image that was being pulled and the script ran against was missing types. This came from my local machine with latest DB up
@@ -42784,17 +42784,17 @@ resolve@^2.0.0-next.3: | |||
languageName: node | |||
linkType: hard | |||
|
|||
"supabase@npm:^1.136.3": | |||
version: 1.141.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was the version being used by CI and overnight batch job. Hopefully updating this one will fix it. Works locally but we won't know about the nightly job until code is merged.
Test summaryRun details
This comment has been generated by cypress-bot as a result of this project's GitHub integration settings. You can manage this integration in this project's settings in the Cypress Cloud |
Now use an exact package version which seems to work better with the CLI