Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 2.68.4
**`(fix):`** Fix argument ordering for endpoints that have both a request body and a path parameter with a
client default. Such path parameters are optional in the generated method signature and are placed
after the request body, so the generated snippets, wire tests, and dynamic snippets now order their
arguments to match (placing required path parameters before the body and optional ones after, and
using named arguments in dynamic snippets where ordering is otherwise ambiguous).


## 2.68.3
**`(fix):`** Fixed C# generation failures for APIs that declare a model type named `Test`.
The generated test project no longer emits a `{Namespace}.Test` namespace that
Expand Down
Loading