Tim Fish

Results 418 comments of Tim Fish

> As everything is now sent from the main process, would BrowserTracing still work? Yes, BrowserTracing still works, the transaction is just passed through the main process. > `Type 'EventToMain'...

> I will add a Vue app to our examples because this is not obvious. I'm going to do this before closing this issue!

> Today I upgraded `@sentry/electron` to `4.0.0`, and `sentry/vue` to `7.12.1` v4.0.0 of the Electron SDK [uses 7.8.1](https://github.com/getsentry/sentry-electron/blob/4.0.0/package.json#L60-L65) of the JavaScript SDKs. We should probably include this version in the...

Both parameters for `setupOnce` are optional and this API hasn't changed for a few major versions. Look through your lock file and ensure all the sentry dependencies are v7.8.1, remove...

@lzutao as I said above, `app-dirs` already exposes this as `SharedData` but the crate seems unmaintained.

> it might become a bit complicated when we take Hub cloning / Scope pushing into account. I do agree that this kind of API is at odds with how...

> I wouldn’t make the fields public. Due to the real/noop scope optimization, that is impossible to begin with ;-) 😬 > So yes, all in all this API is...

> the problem stands that you only do a single `configure_scope`, so you only have updates for one of the potentially many scopes in your process. I suppose these same...

I experimented with channels for returning the result but this on its own would obviously block. Maybe we could have some sort of transport result wrapper so that callers can...

> You can always return a `Future` A Future would work but I guess this would require `Transport` and any implementations to use the `async-trait` crate which isn't currently a...