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_parsing
setting and/or specifying it per mapped method with the:parse_fields
option (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
:digest
or:override_http_method
if 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: true
option to mapped methods and using_plain_request
) return aFlexirest::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).
- Plain Requests (both using the
-
v1.3.13 Changes
๐ Feature:
- โ
The undocumented
plain: true
option 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#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}
.
- ๐ป Made the
-
v1.3.10 Changes
๐ Feature:
- โ Added per-request params encoding so you can choose between
param[]=foo¶m[]=bar
orparam=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).