Vapor: 4.64.0 Release

Release date:
July 25, 2022
Previous version:
4.63.0 (released July 21, 2022)
Magnitude:
0 Diff Delta
Contributors:
1 total committer
Data confidence:
Commits:

Top Contributors in 4.64.0

K1NXZ

Directory Browser for 4.64.0

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

Release Notes Published

This patch was authored by @K1NXZ and released by @0xTim.

Validate a regular expression pattern

Example: ```swift struct TestContent: Codable, Validatable { static func validations(_ validations: inout Validations) { validations.add("numbersOnly", as: String.self, is: .pattern("^[0-9]*$")) }

let numbersOnly: String

init(numbersOnly: String) {
    self.numbersOnly = numbersOnly
}

} ```