Ivan Dlugos
Ivan Dlugos
The impact could be a bit higher once `dependabot` supports it: https://github.com/dependabot/dependabot-core/issues/3121 because we could also use that to avoid manual updates. An alternative would be to use the renovatebot...
> Ideally, all this device context should be passed to `sentry-native` during init time, so the data is available before crashing. Yes, that's what I'm doing now for other SDKs...
I guess the code block in [this section](https://golang.objectbox.io/getting-started#initializing-objectbox) is the culprit, right?. We should think about how to change the imports in the docs so that it's clear user needs...
> ... The code we need to include... That's exactly the misunderstanding I think needs addressing in the docs. You don't need to include any code from "github.com/objectbox/objectbox-go/examples/tasks/internal/model" - the...
So you're trying to save data from some 3rd party library. As expected, that library doesn't have the expected model annotations, namely the problem is with `Institution.Credentials` field: ``` type...
Could you explain what you're trying to achieve? What data do you want to store? How do you intend to read/query the data? We have done some custom handling of...
Unfortunately, that's not gonna work without some custom handling similar to the EdgeX example I've linked above. We've opted for a better-safe-than-sorry approach in ObjectBox-Go of not skipping unknown fields...
> At some point @vaind experimented with ObjectBox and Rust; https://github.com/vaind/objectbox-rust is likely worth a look... That was just very early development and I don't think much is in there,...
The generator @Buggaboo mentions is: https://github.com/objectbox/objectbox-generator#getting-started and currently generates C/C++ and Go, and yes, it is prepared to be extended to generate more languages.
I have not tried to compile it for WASM yet but I imagine there would be quite a few issues as that target is still pretty new. If nothing else,...