Gunnar Hillert
Gunnar Hillert
NMEA 4.10+ added support for the [GNSS Signal ID](https://www.u-blox.com/en/docs/UBX-18010854#%5B%7B%22num%22%3A1295%2C%22gen%22%3A0%7D%2C%7B%22name%22%3A%22XYZ%22%7D%2C59.527%2C613.937%2Cnull%5D) to GSV messages. Some additional pointers: https://www.nmea.org/Assets/20190515%20nmea%200183%20gsv%20sentence%20corrections.pdf
resolves gh-116
As Oracle only permits 1000 elements in `in('...')` queries, we should test that behavior: - Create test data that creates the breaking behavior - Document the breaking point - See...
Class `TaskExecution` contains some ambiguous code: ``` public long getExecutionId() { return executionId; } public Integer getExitCode() { return (exitCode == null) ? 0 : exitCode; } ``` Personally, I...
We should provide a common Test Suite for: * JdbcTaskExecutionDaoTests * MapTaskExecutionDaoTests That way we can ensure the tests behave the same for the 2 implementation and reduce redundancies. As...
Hi, I seem to have a hard time getting non-form-fields such as and linked up. The documentation vaguely states that it is possible but all the examples are targeting forms...
This may be a feature request. In certain situations a component may create multiple Observables whose Subscriptions I would like to add to the busy indicator. Those Subscriptions may be...
When doing an update for a non-existing `id` via `CoherenceRepository` using e.g.: ```java this.taskRepository.update(id, myModel -> { myModel.setDescription(description); return myModel; }); ``` then a `NullPointerException` is thrown: ```java (Wrapped: Failed...
Having experimented with OpenAI's `GPT-4 with Vision` API, it would be amazing if Spring AI adds support for image-based input data (e.g. photos). This API allows you to post: -...
**Affects:** `5.3.2` In our project we reuse Java annotations across Framework boundaries (Spring/CDI/Micronaut). It turns our that Spring does not fully support the semantics of `javax.inject.Qualifier` annotations. Specifically, Spring Framework...