Honza Dvorsky
Honza Dvorsky
- Replaced manual URL parsing with NSURLComponents, which are already available in Swift Foundation - Added .swift-version to lock down the used Swift version All tests passed.
Set Swift as the default language in the Info.plist of the docc bundles. This is so that code listings use Swift syntax highlighting by default.
Today, we assume OpenAPI 3.0.x, but we should explore how we can also support 3.1, and continue to support both in parallel for some time, as 3.0.x is still the...
We should support encoding non-primitive values as query items, which is prescribed by OpenAPI. ```yaml - name: fields in: query description: Pairs of field=value to filter results required: true schema:...
For details, see https://github.com/apple/swift-openapi-generator/pull/74#discussion_r1234329155
We use swift-format both for formatting the generator code, and the generated code. However, the configuration is duplicated in both places, we should have one source of truth for it...
Filing this issue early to properly relate other issues that might be blocked on it. Timing of when this happens is TBD.
Support external JSON references to allow breaking up a large doc into smaller ones. "External" can mean either: 1. another file on local disk 2. a remote file To start,...
For simplicity, initially the type holding the raw request and response body data is `Foundation.Data`, but that prevents use cases where large amounts of data need to be sent/received if...