v1.0.0: General Availability
Release Notes
🎉🎉🎉 General Availability of Azure Functions OpenAPI Extension v1.0.0
🎉🎉🎉
Changes & Fixes
- #308 Fix the API prefix overly trimmed #307
- #288 Uint16 bug fix
- #287 Fix uint32 error
- #268 Fixed throwing StackOverflowException when contains exception class #251
- #263 Fix Data Member Attribute json Serialized Model Casing Applied #212
- #260 Add integration testing for Uri Object Type #143
Known Issues
Missing .dll Files
Due to the Azure Functions Runtime limitation, sometimes some of .dll
files are removed while publishing the function app. In this case, try the following workaround with your function app .csproj
file.
<Project Sdk="Microsoft.NET.Sdk">
...
<PropertyGroup>
...
<_FunctionsSkipCleanOutput>true</_FunctionsSkipCleanOutput>
</PropertyGroup>
...
</Project>
Empty Swagger UI When Deployed through Azure Pipelines
- Workaround: #306
Swagger UI Error When Empty Project Referenced
- Workaround: #302