All Versions
128
Latest Version
Avg Release Cycle
24 days
Latest Release
-

Changelog History
Page 10

  • v1.3.16 Changes

    ๐Ÿ”‹ Feature:

    • Allows disabling of the automatic date parsing with the Flexirest::Base.disable_automatic_date_parsing setting and/or specifying it per mapped method with the :parse_fields option (thanks to Michael Mealling for the request).
  • v1.3.15 Changes

    ๐Ÿ”‹ Feature:

    • Allows setting of the ApiAuth :digest or :override_http_method if v2.0 or above of ApiAuth is installed (thanks to Alan Ruth for the request).
  • v1.3.14 Changes

    ๐Ÿ”‹ Feature:

    • Plain Requests (both using the plain: true option to mapped methods and using _plain_request) return a Flexirest::PlainResponse which is string-like for all intents and purposes (it's comparable with strings using the body of the response) and also has _status and _headers methods (thanks to Rui Ribeiro for the request/inspiration).
  • v1.3.13 Changes

    ๐Ÿ”‹ Feature:

    • โœ… The undocumented plain: true option to mapped methods was tested and documented.
  • v1.3.12 Changes

    ๐Ÿ›  Bugfix:

    • ๐Ÿ— The Travis build was breaking because Guard pulls in Listen, which only runs on Ruby 2.2 and above. So I removed Guard so the gem can be tested to work against older Ruby versions still.
  • v1.3.11 Changes

    ๐Ÿ”‹ Feature:

    • ๐Ÿ‘ป Made the Flexirest::*Exception#message much nicer to help debugging applications, e.g. Sending PUT to '/enable' returned a 500 with the body of - {"error":"John doesn't exist", "code":1234}.
  • v1.3.10 Changes

    ๐Ÿ”‹ Feature:

    • โž• Added per-request params encoding so you can choose between param[]=foo&param[]=bar or param=foo&param=bar (thanks to bkubic for the PR).
  • v1.3.9 Changes

    ๐Ÿ”‹ Feature:

    • Proxying now works for PATCH requests, along with the existing GET, POST, PUT and DELETE (thanks to Andrew Schaper for the PR).
  • v1.3.8 Changes

    ๐Ÿ›  Bugfix:

    • ๐Ÿ›  Fixing crash when trying to parse a JSON response body for error codes and no translator present.
  • v1.3.7 Changes

    ๐Ÿ›  Bugfix:

    • โœ‚ Removed some more warnings about using uninitialized variables (thanks to Joel Low for the heads-up).