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

Catch execution result handler failures, such as parsing issues #374

Merged
merged 3 commits into from
Oct 25, 2023

Conversation

jpwilliams
Copy link
Member

@jpwilliams jpwilliams commented Oct 25, 2023

Summary

Log an error to the console if handling an execution result fails. This can happen if something simple like serialization fails when packaging up the user's response.

Checklist

  • Added a docs PR that references this PR N/A
  • Added unit/integration tests N/A
  • Added changesets if applicable

@jpwilliams jpwilliams added the Bug Something isn't working label Oct 25, 2023
@jpwilliams jpwilliams self-assigned this Oct 25, 2023
@changeset-bot
Copy link

changeset-bot bot commented Oct 25, 2023

🦋 Changeset detected

Latest commit: c500b7f

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
inngest Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@jpwilliams jpwilliams merged commit dcafc2b into main Oct 25, 2023
22 checks passed
@jpwilliams jpwilliams deleted the fix/execution-result-catch branch October 25, 2023 16:12
jpwilliams added a commit that referenced this pull request Oct 26, 2023
## Summary
<!-- Succinctly describe your change, providing context, what you've
changed, and why. -->


[`BigInt`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt)s
are not natively parsed by JSON. Attempting to return a `BigInt` from a
step or function will throw an error. This error was hard to see, which
is fixed in #374.

Our types reflect that `BigInt` is unparseable and will type it as
`never`, though these were obscured from the user a touch, which is
fixed in #371.

For this reason, this PR ensures `BigInt`s are removed during parsing
instead of throwing. We can investigate adding `BigInt` support across
our SDKs past this fix; the `n` suffix seems an unwritten standard.

## Checklist
<!-- Tick these items off as you progress. -->
<!-- If an item isn't applicable, ideally please strikeout the item by
wrapping it in "~~"" and suffix it with "N/A My reason for skipping
this." -->
<!-- e.g. "- [ ] ~~Added tests~~ N/A Only touches docs" -->

- [ ] ~~Added a [docs PR](https://github.com/inngest/website) that
references this PR~~ N/A
- [x] Added unit/integration tests
- [x] Added changesets if applicable

## Related

- #371
- #374
jpwilliams pushed a commit that referenced this pull request Oct 26, 2023
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## inngest@3.4.1

### Patch Changes

- [#371](#371)
[`d45bfbd`](d45bfbd)
Thanks [@jpwilliams](https://github.com/jpwilliams)! - Remove
`JsonifyObject<>` wrapper from step output - it's now clearer to see the
actual type of a step's result

- [#375](#375)
[`e19f9b4`](e19f9b4)
Thanks [@jpwilliams](https://github.com/jpwilliams)! - Fix failing to
parse `BigInt` during step/function result serialization; it is now
correctly typed and returned as `never`

- [#374](#374)
[`dcafc2b`](dcafc2b)
Thanks [@jpwilliams](https://github.com/jpwilliams)! - Fixed an issue
where an error log wasn't shown if execution result parsing failed, such
as in the case of serialization failures

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants