Commit graph

11 commits

Author SHA1 Message Date
d2576b729e
Add Codable support and overhaul the API
This introduces a cleaner, more intuitive API for making HTTP requests
with explicit methods for different content types and built-in Codable
support.

**New**
  - Add explicit request methods: .postJSON(), .postForm(),
    .postMultipart() for clear intent
  - Add direct `Codable` body support with automatic JSON
    encoding/decoding
  - Add `HTTPRequestBody` enum for internal type safety and cleaner
    implementation
  - Add proper query parameter encoding for GET and DELETE requests
    (previously ignored)
  - Add URLSession extensions for streamlined async JSON decoding with
    `HTTPError` for failure response status codes
  - Add comprehensive test coverage

The new API replaces the parameter-based methods using dictionaries with
explicitly-typed ones. Instead of passing a content-type parameter, you
now use purpose-built methods like `postJSON` and `postForm`.

**Breaking changes**
  - Minimum deployment targets raised to iOS 16.0 and macOS 13.0
  - Direct access to `parameters` and `parts` properties deprecated on
    `HTTPRequest`
  - GET and DELETE requests now validate that they don't have request
    bodies, and the new API prevents you from constructing them
2025-06-23 23:55:55 -04:00
bc3ce2c93e
Fix stray question marks 2025-06-15 16:59:44 -07:00
bcf402db8f
Remove Linux testing cruft that we no longer need 2025-06-15 08:38:19 -07:00
77446ccf2d
Add support for query params on GET and DELETE requests 2025-06-15 08:26:22 -07:00
4615329e46
Modernize, add tests, remove assertions 2025-06-15 07:41:45 -07:00
063d346567
Fix copyright 2023-02-01 00:00:39 -08:00
bb21568d17
Fix encoding empty fields and flesh out tests 2021-02-03 16:07:03 -08:00
a0789e95da
Remove property that was only used once 2021-01-07 13:46:35 -08:00
e383d188f2
Add a way to encode multipart forms to a file 2020-11-16 15:24:07 -08:00
012ff20c96 Get rid of some pointless mutable state 2020-10-20 21:09:53 -07:00
c1f4320288 Convert to Swift package and rewrite the multipart encoder 2020-10-20 20:25:14 -07:00