Skip to content

v0.3.0

Compare
Choose a tag to compare
@skryukov skryukov released this 09 Apr 06:31
· 11 commits to main since this release
25c5da5

Changed

  • BREAKING CHANGE: Pass headers parameter to registered BodyParsers. (@skryukov)

    # Before:
    Skooma::BodyParsers.register("application/xml", ->(body) { Hash.from_xml(body) })
    # After:
    Skooma::BodyParsers.register("application/xml", ->(body, headers:) { Hash.from_xml(body) })

Fixed

  • Fix wrong path when combined with Rails exceptions_app. (@ursm)

New Contributors

  • @ursm made their first contribution in #19

Full Changelog: v0.2.2...v0.3.0