OpenAPI schemas names
Generating OpenAPI automatically created schema names changed for duplicated names (see #230)
Now instead of silence (or exceptions on other cases) django-ninja will just add sequential number suffix to the schema name in OpenAPI spec.
For example if you already have schema called "User" and in some other module you create another "User" schema - the second will have name "User2" in openapi json.
Other
- Dot in query regression #238 (#239 by @stephenrauch)
- Fix openapi schema title and description propagation for query, cookie, header, etc #123 (#233 from @stephenrauch)
- Fix form schema single param #236 (#237 from @stephenrauch)
- Improve #181, query with list type (#234 by @stephenrauch)
- Path signature check (#232 by @stephenrauch)
- Document how to handle empty form fields (#228 by @stephenrauch)
- Misc fixes (#231 by @ehdgua01)