Skip to content

December 3rd, 2024

Latest
Compare
Choose a tag to compare

Breaking Changes:

  • 🐛⚠️ (server, smithy-rs#3880) Unnamed enums now validate assigned values and will raise a ConstraintViolation if an unknown variant is set.

    The following is an example of an unnamed enum:

    @enum([
        { value: "MONDAY" },
        { value: "TUESDAY" }
    ])
    string UnnamedDayOfWeek