Markus KARG
Markus KARG
### Search first - [X] I searched and no similar issues were found ### Description Apparently Liquibase applies an invalid type conversion for the value `0` (zero) for the data...
### Search first - [X] I searched and no similar issues were found ### Description SQL Anywhere supports the special syntax `DEFAULT UTC TIMESTAMP` (*just* for UTC), while other databases...
This is a fix [MNG-6048](https://issues.apache.org/jira/browse/MNG-6048) When A is an existing symlink to B, then createSymbolicLink(A,C) does neither overwrite A->B by A->C (as expected in analogy to the behavior of copy(A,C))...
1. * The [JSON-P API](https://github.com/eclipse-ee4j/jsonp/blob/5735bb62715578633d5721bf583b837506bbec73/api/src/main/java/javax/json/JsonObject.java#L164-L165) requires `JsonObject.getString("missing")` to throw `NullPointerException` for non-existent key `"missing"`. * [Geronimo](https://github.com/apache/geronimo-specs/blob/0f0956795ad0839ec698e11fd3a7049f0114623c/geronimo-json_1.1_spec/src/main/java/javax/json/EmptyJsonObject.java#L51-L52)'s variant of the JSON-P API (`EmptyJsonObject`) **incorrectly** returns `null` instead of throwing an exception....
**Describe the bug** According to JSON-B Specification v3 chapter 3.1.1 all implementations MUST support serialization of `java.util.Map`. While Yasson *does* serialize maps, it does it in an inconsistent way: *...
**Describe the bug** According to the JSON-B Specification v3 chapter 4.7.1... >There are two ways how to register JsonbAdapter: >* Using JsonbConfig::withAdapters method; >* Annotating a class field with JsonbTypeAdapter...
Yasson 1.0.9 and 2.0.2 both fail running the following code, but succeed once `@JsonbTypeSerializer` annotation is removed: ```java public class Yasson { public static void main(String[] args) { System.out.println(JsonbBuilder.create().toJson(new MyClass()));...
Closing #1274 This pull request provides the needed changes in the spec document and the TCK to support `java.nio.file.Path` entity providers.
I would like to propose the adoption of the `java.nio.file.Path` interface to the list of mandatory entity providers. Since long time, JAX-RS mandates entity providers for the `java.io.File` class. Since...
A JAX-RS `Client` can be configured like this (example taken from [JavaDocs](https://jakarta.ee/specifications/restful-ws/3.1/apidocs/jakarta.ws.rs/jakarta/ws/rs/client/package-summary.html)): ```java Client client = ClientBuilder.newClient(); client.property("MyProperty", "MyValue") .register(MyProvider.class) .register(MyFeature.class); ``` After these lines, `client` references to an instance...