Releases: openapi-ts/openapi-typescript
Releases · openapi-ts/openapi-typescript
v3.2.3
🐛 Bugfixes
- Fixed a parse error on
enum: []
(#563)
- Fixed another parse error on responses missing schemas (#565)
- Fixed a bug with the latest version of Prettier and
options.prettierConfig
(#566)
v3.2.2
🐛 Bugfixes
- RequestBodies that had hyphens in their name would generate an error (#550). Thanks (again), @ashsmith!
v3.2.1
🐛 Bugfixes
- Fixed an issue where a comment within a schema definition would break type gen (#548). Thanks, @ashsmith!
v3.2.0
✨ New features
- Added a new
--immutable-types
flag to generate readonly
schemas by @dnalborczyk (#522)
- The
operations
interface has been improved with inherited parameters by @henhal (#530)
v3.1.2
🐛 Bugfixes
- Fixes package types for TypeScript projects (#520)
v3.1.1
🐛 Bugfixes
- Better handles remote schema content types (#516)
v3.1.0
✨ New features
- Remote schema loading now follows redirects (#510)
- New
--auth
flag to access private schemas (#508)
- npm version now ships with ESM package exports for better interop between ESM & CommonJS (#509)
🐛 Bugfixes
📝 Other Notes
- Now uses a quicker build/release process for easier building
v3.0.4
🐛 Bugfixes
- If using OpenAPI 2.0, and you didn’t have
definitions
, an unexpected error was encountered. This is now fixed.
v3.0.3
🐛 Bugfixes
- Improves handling of complex
oneOf
by @gr2m (#491)