Ivan Dlugos
Ivan Dlugos
It would be useful to have support for relations: standalone many-to-many as well as property-based to-one relations, see e.g. [Go relations](https://golang.objectbox.io/relations). To implement the minimal, the following needs to be...
`model/properties.py` currently handles the most common types. The missing types supported by ObjectBox should be added, e.g. date. The list of currently supported objectbox types (as of objectbox-c v0.10.0): ```...
While reviewing a Go PR, I've first found out about the new exception grouping mechanism and it seems it's not documented yet in the [develop docs](https://develop.sentry.dev/sdk/event-payloads/exception/#exception-mechanism): https://github.com/getsentry/rfcs/blob/main/text/0079-exception-groups.md#new-mechanism-fields
There's no information how replay envelopes look like. There should be at least a section at https://develop.sentry.dev/sdk/envelopes/ assuming there's a custom envelope item type. It probably also makes sense to...
There were some changes to the protocol in order to support Portable PDBs but they're not yet reflected in the development docs. * https://develop.sentry.dev/sdk/event-payloads/debugmeta needs update * based on https://github.com/getsentry/rfcs/blob/main/text/0013-portable-pdb.md#implementation...
It would be nice if you could support different line lengths, e.g. `-l 120` parameter to `pana`. While 80 is a recommended `dartfmt` default, some projects don't want to use...
Getting the following version during build. I can get around that by specifying the version in the consuming pod, but would be nice if the reason was fixed in the...
It would be useful to be able to specify a custom description, or at least some additional (static) text that would be appended to the default description
Currently, some tests and the CI configuration of requiring them to pass prevent any contributions by an external contributor. _Originally posted by @buenaflor in https://github.com/getsentry/sentry-kotlin-multiplatform/issues/172#issuecomment-1866200431_
Dart has had enhanced enums for a few years so we can now use it instead of our hacky class with static fields. User code should be mostly unaffected, other...