pointfreeco/vapor-routing

Breaking change in release 0.1.3

nashysolutions opened this issue · 1 comments

Screenshot 2023-04-16 at 22 20 31

dependencies: [
        .package(url: "https://github.com/vapor/vapor.git", from: "4.0.0"),
        .package(url: "https://github.com/vapor/fluent.git", from: "4.0.0"),
        .package(url: "https://github.com/vapor/fluent-postgres-driver.git", from: "2.0.0"),
        .package(url: "https://github.com/vapor/leaf.git", from: "4.0.0"),
        .package(url: "https://github.com/pointfreeco/vapor-routing", from: "0.1.0")
    ],

Forcing previous release fixes my issue

 .package(url: "https://github.com/pointfreeco/vapor-routing", esact: "0.1.2")

Hi @nashysolutions, this library is based on swift-parsing which was forced to undergo some breaking changes due to changes in Swift regarding result builders. We had along discussion about that over in that repo.

I am going to convert this to a discussion as it was not something we could work around unfortunately. Please feel free to ask questions about how you might migrate your code to the newest library if it is not already covered in the previous discussion.