Charly Gomez
Charly Gomez
Open issue list for enhancements of the NestJS SDK. - [ ] [https://github.com/getsentry/sentry-javascript/issues/13167](https://github.com/getsentry/sentry-javascript/issues/13167) - [ ] [https://github.com/getsentry/sentry-javascript/issues/13133](https://github.com/getsentry/sentry-javascript/issues/13133) - [ ] Upstream automatic instrumentation to open telemetry repo - [ ]...
`disableLogger` can easily be confused with `enableLogs: false` so we need to do a better job with naming here. We can rename this option once we move it to the...
This includes all tracing within: * `wrapServerComponentWithSentry` * `wrapGenerationFunctionWithSentry` We need to make sure this stays backwards compatible for previous Next.js versions.Potentially unblocks `cacheComponents`support for webpack. ref [https://github.com/getsentry/sentry-javascript/issues/17895](https://github.com/getsentry/sentry-javascript/issues/17895)
Bundle building currently processes files sequentially when adding to `SourceBundleWriter`. The bottleneck is CPU-intensive operations like file type detection, debug ID extraction, and content parsing. Parallelize the preparation work while...
Sourcemap rewriting (flattening indexed maps, inlining sources) is CPU-intensive and currently sequential.
Eliminate wait times by overlapping the collection, processing, bundling, and upload phases. Currently these run sequentially (collect all → process all → bundle all → upload). Use a streaming pipeline...