Github
link |
Stars: 29 |
Help us keep the lights on
Dependencies
Used By
- vapor/vapor
- qq565999484/SwiftWebFrameWorkLearn
- jgh33/DemosPushVapor
- mzying2013/SwiftServerSide-Vapor
- yannickloriot/express-vapor-experimentation
- wesleyisme/allserver
- robert-joosen/SwiftCMS
- ldmarz/ms-assets
- djmckay/djmckay.tech
- SpectatorNan/vaporApiTemplate
- nappannda/ContestSummary
- Omurok/insocrab
- cellgit/CameraServer
- ines10/vaporCloud
- kjessup/CENGN-Perfect
- skeyboy/Hi
- bsc1015/InstaServer
- hardikeprajapati/Vapor-Server-Side-Swift
- djmckay/Bespin
- SpectatorNanWithZZC/creditCaculatorVapor
- koltenfluckiger/Adaptix
- emvakar/server-template
- JLBrown102260/vapor
- qq565999484/Vapor-SimpleBlog-System
- gabrielepalma/sublimate
- Jinxiansen/SwiftServerSide-Vapor
- axello/VaporMultipart
- givip/Telegrammer
- shingohry/vapor-multipart-formdata-sample
- tetrafolium/vapor
Total: 34
Releases
3.0.3 - Jan 30, 2019
Fixed:
- Adds multipart convertible support to
Bool
. (#32)
3.0.2 - Jul 23, 2018
Fixed:
- Encoding
[File]
was not supported. #28
3.0.1 - Apr 20, 2018
Fixed:
- Files now serialize
contentType
header (#21). - Fixed a bug where
[File]
could not be decoded (#25).
Milestone: 3.0.1
2.2.1 - Apr 18, 2018
Fixed:
- Add a missing
import Foundation
.
3.0.0 - Apr 13, 2018
Multipart 3.0 is here, now with Codable
support! 🏞 Use multipart to parse and serializes multipart-encoded data.
Docs: https://docs.vapor.codes/3.0/multipart/getting-started/
API Docs: https://api.vapor.codes/multipart/latest/Multipart
Milestone: 3.0.0
Changes since final release candidate.
⚠️ The old hacky way of using MultipartForm
to parse requests is gone. Use Content
just like JSON and form-urlencoded
.
New:
Codable
support! UseFormDataDecoder
andFormDataEncoder
to convert multipart data to Swift.
Fixed:
- API audit: Lots of APIs cleaned up and/or made internal. Lots of doc blocks added, too!