All Versions
128
Latest Version
Avg Release Cycle
24 days
Latest Release
-
Changelog History
Page 10
Changelog History
Page 10
-
v1.3.16 Changes
🔋 Feature:
- Allows disabling of the automatic date parsing with the
Flexirest::Base.disable_automatic_date_parsingsetting and/or specifying it per mapped method with the:parse_fieldsoption (thanks to Michael Mealling for the request).
- Allows disabling of the automatic date parsing with the
-
v1.3.15 Changes
🔋 Feature:
- Allows setting of the ApiAuth
:digestor:override_http_methodif v2.0 or above of ApiAuth is installed (thanks to Alan Ruth for the request).
- Allows setting of the ApiAuth
-
v1.3.14 Changes
🔋 Feature:
- Plain Requests (both using the
plain: trueoption to mapped methods and using_plain_request) return aFlexirest::PlainResponsewhich is string-like for all intents and purposes (it's comparable with strings using the body of the response) and also has_statusand_headersmethods (thanks to Rui Ribeiro for the request/inspiration).
- Plain Requests (both using the
-
v1.3.13 Changes
🔋 Feature:
- ✅ The undocumented
plain: trueoption to mapped methods was tested and documented.
- ✅ The undocumented
-
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#messagemuch 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}.
- 👻 Made the
-
v1.3.10 Changes
🔋 Feature:
- ➕ Added per-request params encoding so you can choose between
param[]=foo¶m[]=barorparam=foo¶m=bar(thanks to bkubic for the PR).
- ➕ Added per-request params encoding so you can choose between
-
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).