itineric

Results 13 issues of itineric

Hi, I am doing some tests with your framework, I have the simpliest server implementation (it does nothing, just starts with a UserHandler and prints out what method is called)....

You could support graalvm native compilation. Currently it is not working, some exception occur: `com.fasterxml.jackson.databind.exc.InvalidDefinitionException: No serializer found for class org.zalando.logbook.json.JsonHttpLogFormatter$JsonBody and no properties discovered to create BeanSerializer ` ##...

Feature

Consider the following schema: ``` { "type": "object", "properties": { "id": { "type": "string", "format": "uuid" } } } ``` Using UUID as defined here: https://json-schema.org/draft/2019-09/json-schema-validation#rfc.section.7.3.5 Validating the following JSON...

Consider the following schema: ``` { "type": "object", "properties": { "creation_date": { "type": "string", "format": "date-time" } } } ``` The following JSON should not be valid but it is:...

During serialization, when using a custom serializer, the JsonPointer is inconsistent when serializing the first element. Instead of having `/myList/0` we get `/myList` This happens because we enter this part...

need-test-case

I am trying to use maven plugin (0.9.21) with path to configuration file directories. The documentation says: ``` path/to/dir ``` I tried relative and absolute path, tried with subtag and...

bug

When sorting on a jsonb sub-field, the function `jsonb_extract_path` is used. This function returns a `jsonb` result type. When sorting 'ic' (case insensitive), `lower` function is used. But `lower` function...

I think you are missing some comparison to exclude from conversion here: https://github.com/perplexhub/rsql-jpa-specification/blob/master/rsql-jpa/src/main/java/io/github/perplexhub/rsql/jsonb/JsonbExpressionBuilder.java#L137 As `LIKE` and `IGNORE_CASE` are ignored, `IGNORE_CASE_LIKE` should also be ignored. A test case for with `arguments(allCases,...