1.23.11
(chore): Remove verbose debug logs for endpoint snippet processing and generation counts.
1.23.10
(fix): Fix union deserialization to catch Throwable instead of Exception. Previously, when deserializing union types, TypeError exceptions thrown during property assignment (e.g., assigning null to a non-nullable int property) were not caught, preventing the union from trying alternative types. This fix ensures that all errors during union type deserialization are caught, allowing proper fallthrough to the next union variant.
1.23.9
(fix): Fix JsonException “No constructor found” for empty object types. Previously, object types with no properties would not generate a constructor, causing JSON deserialization to fail. Now all JsonSerializableType subclasses generate a constructor with the expected array $values parameter signature.
1.23.8
(fix): Normalize UTC datetime serialization to use Z suffix instead of +00:00. The JsonSerializer now converts 2023-01-01T12:34:56+00:00 to 2023-01-01T12:34:56Z for UTC times while preserving RFC3339 format for non-UTC timezones. Query parameters and headers now use JsonSerializer::serializeDateTime() for consistent datetime formatting. Test templates updated to match the new behavior.