Mischan Toosarani-Hausberger
Mischan Toosarani-Hausberger
...node.js runner versions: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ It might also be relevant for the deprecation of the `set-output` command: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ which we also don't invoke directly but via our actions.
Fixes #943. This adds Linux distribution meta-data to the os context as follows: Only `name` and `version` should be indexed. Further steps required before we merge/release this: - [x] update...
The wish to provide some access to this capability was recently raised. This is not necessarily meant as an enhancement of the code but could also be documentation that describes...
### Discussed in https://github.com/getsentry/sentry-native/discussions/942 Originally posted by **tkatsoulas** February 1, 2024 Hello guys, The current implementation to understand the host OS https://github.com/getsentry/sentry-native/blob/master/src/sentry_os.c provides poor information for any distro. Are there...
A user of the Native SDK currently must configure an HTTP proxy themselves via `sentry_options_set_http_proxy()`, which also means their application must parse the `http_proxy` (and potentially `https_proxy`, `no_proxy`) variables. Since...
Users of the Native SDK also want to search for the Linux distributions their events came from: https://github.com/getsentry/sentry-native/issues/943 The corresponding PRs to * develop docs: https://github.com/getsentry/develop/pull/1227 * relay: https://github.com/getsentry/relay/pull/3443 *...
Currently, stack overflows on Windows die somewhere in the handler because we run out of stack space. This is the first attempt to fix the situation by reserving stack space...
Fixing this was a side-effect of https://github.com/getsentry/sentry-native/pull/982
One can also add Wine metadata to the context if the app is ran under that: ```cpp { // Add WINE version metadata if running under WINE HMODULE hntdll; typedef...