Alexander Dinauer

Results 259 comments of Alexander Dinauer

@khkramer can you please try setting `sentry.enable-aot-compatibility=true` and check whether that makes a difference for you? I tried using `MessageSource` in our sample and it worked. So I'm currently unable...

The flag is just meant as a workaround to unblock you until we figure out a fix. It's intended for things like GraalVM where the aspect config also causes issues....

@khkramer can you please setup a minimum reproducible sample that allows us to see the problem and then fix it?

@jialiangyin168 what version of Spring (Boot) are you using? I assume the GRPC call is happening on your Spring backend but is triggered by an HTTP call into your Spring...

Thanks we'll take a closer look but can't say when exactly. Sounds like you're not blocked by this and users are not experiencing any problems due to this. If this...

@AbhiPrasad are any of these remaining attributes required soon / is there any date you'd like to have them by? Otherwise I'll just put this in the backlog to do...

Java SDK is affected as well, here's a test: ``` @Test fun `keeps email address`() { val urlDetails = UrlUtils.parseNullable( "https://staging.server.com/api/v4/auth/password/reset/[email protected]" )!! assertEquals("https://staging.server.com/api/v4/auth/password/reset/[email protected]", urlDetails.url) assertNull(urlDetails.query) assertNull(urlDetails.fragment) } ``` with result:...

Wasn't planning to do this soon. We can bump prio if you want.

Yeah, erring on the other side would mean leaking authority of URLs tho, so we have to be careful.

Sure it's a bug but fixing it may break the filtering. It's not quite easy to determine whether something is part of an email or authority of an URL as...