github vapor/vapor 4.101.2
4.101.2 - Adds TIFF and WebP HTTP Media Types

latest releases: 4.102.0, 4.101.4, 4.101.3...
21 days ago

What's Changed

Adds TIFF and WebP HTTP Media Types by @qalandarov in #3194

Add additional image types:

app.post("upload") { req in
    guard [.jpeg, .png, .tiff, .webp].contains(req.content.contentType) else {
        throw Abort(.unsupportedMediaType)
    }
    // ...
}
This patch was released by @0xTim

Full Changelog: 4.101.1...4.101.2

Don't miss a new vapor release

NewReleases is sending notifications on new releases.