v3.0.0
domaindrivendev
released this
10 Jul 17:22
·
1194 commits
to master
since this release
Release Summary
Includes two significant changes in addition to a handful of bug fixes and minor enhancements. The generator will now honor the BindRequired
and Required
attributes on ALL parameters (top-level or property-based) and model properties, flagging the corresponding elements as required
in the generated Swagger. Also, the Swagger-specific annotations (SwaggerOperation
, SwaggerResponse
etc.) have been enhanced, but also extracted from the core functionality into a separate package that consumers need to explicitly install and enable.
Breaking Changes
- Updates to annotations: To continue using the swagger-specific annotations, you'll need to explicitly install and enable the new
Swashbuckle.AspNetCore.Annotations
package as described here. Furthermore, the attributes have moved from theSwaggerGen
namespace to theAnnotations
namespace, and the ordering of some constructor parameters has changed. So, you'll need to update and test your use of these attributes. - Handling of
Required
/BindRequired
attributes: Previously, parameters and properties had to be decorated with these attributes AND be nullable to be flagged asrequired
in the generated Swagger. This has changed and now those attributes will be honored on ALL parameters and model properties.
Issues Addressed
See https://github.com/domaindrivendev/Swashbuckle.AspNetCore/milestone/5?closed=1