Vapor: 4.0.0-rc.1.2 Release

Release date:
March 3, 2020
Previous version:
4.0.0-rc.1.1 (released March 2, 2020)
Magnitude:
0 Diff Delta
Contributors:
1 total committer
Data confidence:
Commits:

Top Contributors in 4.0.0-rc.1.2

tanner0101

Directory Browser for 4.0.0-rc.1.2

We haven't yet finished calculating and confirming the files and directories changed in this release. Please check back soon.

Release Notes Published

Ports Base32 APIs from Vapor 3's Crypto library to Vapor 4 now that we rely on SwiftCrypto.

let data = Data([1, 2, 3, 4])
XCTAssertEqual(data.base32EncodedString(), "AEBAGBA")
XCTAssertEqual(Data(base32Encoded: "AEBAGBA"), data)

This patch was authored and released by @tanner0101.