From 5d380a7b09fbb12f71baf61d5b8371a9a50d771e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 May 2026 13:25:12 +0000 Subject: [PATCH 1/2] docs: add 4.0.0-beta03 release notes entry Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- docs/RELEASE_NOTES.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/RELEASE_NOTES.md b/docs/RELEASE_NOTES.md index 919fd6d7..7f656526 100644 --- a/docs/RELEASE_NOTES.md +++ b/docs/RELEASE_NOTES.md @@ -1,3 +1,21 @@ +#### 4.0.0-beta03 - May 1, 2026 + +- fix: handle `DateOnly` in `toParam` and `toQueryParams` for correct serialization (#393) +- fix: use `toParam` in `toFormUrlEncodedContent`/`toMultipartFormDataContent` for correct date/time serialization (#395) +- feat: add `TimeOnly` support — `format: time` maps to `System.TimeOnly` when `UseDateOnly=true` (#394) +- feat: generate CLI enum types for top-level named enum schemas (#409) +- improve: surface allowed enum values in generated XmlDoc for operation parameters (#398) +- perf: avoid `FSharpValue.GetUnionFields` in `toParam` via cached tag reader (#399) +- perf: eliminate redundant `GetType()` calls in `toParam` (#410) +- perf: cache `DateOnly`/`TimeOnly` type lookups in `DefinitionCompiler` (#412) +- perf: cache `HttpMethod` lookups in `createHttpRequest`; extract `XmlDoc.combineDescAndEnum` helper (#415) +- refactor: extract `fetchUrlContent` helper to eliminate HTTP fetch duplication (#406) +- eng: bump Microsoft.OpenApi and YamlReader 2.7.2 → 2.7.3 (#396) +- eng: add NuGet ecosystem to Dependabot to track dotnet global tools (#407) +- eng: update global.json SDK from 10.0.102 to 10.0.201 (#414) +- test: extend DateOnly/TimeOnly type-mapping coverage (+7 tests) (#397) +- ci: bump actions/checkout 4→6, actions/upload-pages-artifact 3→5 + #### 4.0.0-beta02 - April 18, 2026 - fix: preserve declared properties when schema has both `properties` and `additionalProperties` (#383) From 314d3f4bb2a19d81d8f01e5ff76bf5511a9b562f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 1 May 2026 13:25:15 +0000 Subject: [PATCH 2/2] ci: trigger checks