v1.0.0
Summary
The initial release of the faraday-multipart
gem.
This middleware was previously bundled with Faraday but was removed as of v2.0.
MIGRATION NOTES
If you're upgrading from Faraday 1.0 and including this middleware as a gem, please be aware the namespacing for helper classes has changed:
Faraday::FilePart
is nowFaraday::Multipart::FilePart
Faraday::Parts
is nowFaraday::Multipart::Parts
Faraday::CompositeReadIO
is nowFaraday::Multipart::CompositeReadIO
Faraday::ParamPart
is nowFaraday::Multipart::ParamPart
Moreover, in case you're adding the middleware to your faraday connection with the full qualified name rather than the :multipart
alias, please be aware the middleware class is now Faraday::Multipart::Middleware
.