Mat Hansen

Results 9 comments of Mat Hansen

I ran into this issue as well. Can we get your changes merged @asereda-gs? I found that using `@JsonProperty("get[fieldName]")` is a workaround until this has been fixed. It's not ideal,...

@asereda-gs excellent news! May I ask when you are planning to release those changes? The current v. 2.9.3 is from December.

@asereda-gs I can confirm that version 2.10.0 works as expected for my use case. Thank you!

In addition to the "expiration date is in the past" error, the UI should display the date according to the configured locale in the user settings. The "set expiration date"...

I noticed that `UUID` values are serialized using the legacy v3 format instead of the current v4 when using the Criteria module. The default has changed to v4 on the...

> Perhaps you can also try the following: > > ```java > CodecRegistry registry = JacksonCodecs.registryFromMapper(mapper); // or some other way to instantiate registry > registry = CodecRegistries.withUuidRepresentation(registry, UuidRepresentation.STANDARD); >...

I just had a look at this again and there seem to be only two relevant places where the `UUIDCodec(UuidRepresentation)` constructor is used during runtime (instead of the default `UUIDCodec()`...

Confirming that this issue still exists using: - Immutables v. 2.10.1 - Jackson v. 2.19.0

Apparently, `uxPortCompareSet` has been removed in IDF v5 [last year.](https://github.com/espressif/esp-idf/releases/tag/v4.4.8) Compare https://github.com/espressif/esp-idf/blob/v5.5/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos/portmacro.h with https://github.com/espressif/esp-idf/blob/v4.4.7/components/freertos/port/xtensa/include/freertos/portmacro.h#L404 So TaskManagerIO is broken for ESP using current versions, hence the workaround mentioned by @ONik93 is...