Skip to content
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

Ensure thrown errors have a stack trace #502

Merged
merged 3 commits into from
Jan 15, 2024

Conversation

meyer9
Copy link
Contributor

@meyer9 meyer9 commented Nov 9, 2023

What kind of change does this PR introduce?

Feature: thrown errors now return a stack trace:

$ yarn test:run
  console.log
    PostgrestError: relation "public.does_not_exist" does not exist
        at /Users/meyer9/development/postgrest-js/src/PostgrestBuilder.ts:160:17
        at processTicksAndRejections (node:internal/process/task_queues:95:5)
        at Object.<anonymous> (/Users/meyer9/development/postgrest-js/test/basic.ts:10:17) {
      code: '42P01',
      details: null,
      hint: null
    }

      at Object.<anonymous> (test/basic.ts:12:13)

 PASS  test/index.test.ts
  ✓ returned error should include stack (46 ms)

Test Suites: 1 passed, 1 total
Tests:       1 passed, 1 total
Snapshots:   0 total
Time:        0.587 s, estimated 1 s
Ran all test suites.

What is the current behavior?

Errors are currently plain objects: #501

What is the new behavior?

Thrown errors will now throw a PostgrestError with a message and the details. Errors should serialize to the same value by default.

@meyer9 meyer9 force-pushed the meyer9/add-stack-trace-to-error branch 4 times, most recently from ab9dbf5 to 3c232b5 Compare November 9, 2023 03:03
@meyer9 meyer9 force-pushed the meyer9/add-stack-trace-to-error branch from 3c232b5 to acc0d42 Compare January 4, 2024 11:38
@soedirgo soedirgo merged commit f730aa7 into supabase:master Jan 15, 2024
Copy link

🎉 This PR is included in version 1.9.2 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants