sentry-javascript
sentry-javascript copied to clipboard
Official Sentry SDKs for JavaScript
### Is there an existing issue for this? - [X] I have checked for existing issues https://github.com/getsentry/sentry-javascript/issues - [X] I have reviewed the documentation https://docs.sentry.io/ - [X] I am using...
This PR adds a new `captureFeedback` method which is exported from all SDKs. This method can be used to capture a (new) user feedback from any package. We follow the...
### Problem Statement Right now, as described in #11807, [component tracking](https://docs.sentry.io/platforms/javascript/guides/svelte/features/component-tracking/) in SvelteKit apps is a bit tricky and doesn't work in the same way as for pure svelte apps....
### Is there an existing issue for this? - [X] I have checked for existing issues https://github.com/getsentry/sentry-javascript/issues - [X] I have reviewed the documentation https://docs.sentry.io/ - [X] I am using...
This PR: - Adds a `tunnel` option to the internal transport options so it can be passed from client options - Uses the `tunnel` option when creating the URLs in...
### Is there an existing issue for this? - [X] I have checked for existing issues https://github.com/getsentry/sentry-javascript/issues - [X] I have reviewed the documentation https://docs.sentry.io/ - [X] I am using...
### Problem Statement Currently the user uses this and says not all errors are captured. https://shopify.dev/docs/api/checkout-ui-extensions/unstable/error-handling And not clear how the screens of the Shopify extension/UI will be captured as...
### Problem Statement Short version: I want to load the Sentry JavaScript library via an [Import Map](https://github.com/WICG/import-maps), but it doesn't seem to be supported. --- Longer version: I'm working on...
### Problem Statement Currently the [Lambda Layer setup instructions for serverless functions](https://docs.sentry.io/platforms/python/integrations/aws-lambda/manual-layer/#configuration-options) suggest that errors and performance is automatically enabled: > You can configure Sentry by setting these environment variables...
### Problem Statement The current setup for monitoring crons requires a wrapper function ([link to docs](https://docs.sentry.io/platforms/javascript/guides/node/crons/)). You use it like this: ```js const CronJobWithCheckIn = Sentry.cron.instrumentCron(CronJob, 'cron_slug'); const job =...