Michi Hoffmann
Michi Hoffmann
Quick draft to add an `unauthorizedRedirect` option to the `RequestAuthorizationMiddleware`. Some open questions: - Shall we handle a 404 by the `RoutingMiddleware`? - Is a simple string enough, or do...
### Add support for Dynamic Sampling We decided not to access the request internally and will instead rely on people passing in a correctly populated `TransactionContext` to be able to...
A few ideas on how we can make the whole release process a bit more straightforward and align it better with other SDKs. ### Generate changelogs Like on the Python...
### Problem Statement https://develop.sentry.dev/sdk/performance/#tracepropagationtargets The `GuzzleTracingMiddleware` currently propagates the `sentry-trace` and soon the `baggage` header on each instrumented request. ### Solution Brainstorm Add the `tracePropagationTargets` option.
### Problem Statement The `store` API is considered deprecated and should not be used to send events anymore. https://github.com/getsentry/sentry-php/blob/master/src/Transport/HttpTransport.php#L115-L123 ### Solution Brainstorm As this will be a BC breaking change,...
One of the most common ways frameworks integrate Sentry is by using `captureException` somewhere in the framework-specific error handling code. This creates a small issue though, as everything that gets...
This adds support for Dynamic Sampling, introduced in https://github.com/getsentry/sentry-php/pull/1360.
This will end up being a new major version of our Symfony SDK. **Remaining ToDos** - [ ] Add support for Dynamic Sampling https://github.com/getsentry/sentry-symfony/pull/661 _TBD_ **New features** - [x] Add...
The `AbstractTraceableHttpClient` currently only propagates the `sentry-trace` header. Add the `baggage` header to outgoing requests as well, if the destination URI is allow listed in `trace_propagation_targets`.
WIP