Skip to content

Releases: mamantoha/crest

Kemal 0.25.1

05 Nov 20:28
Compare
Choose a tag to compare
  • Update to Kemal 0.25.1

Crystal 0.27

03 Nov 02:11
Compare
Choose a tag to compare
  • Tested with Crystal 0.27.0

P.S. Hello from China 🇨🇳

SSL/TLS support

12 Oct 09:39
Compare
Choose a tag to compare
  • SSL/TLS support (#100)
  • Tested with Crystal 0.26.1

Crystal 0.26

14 Aug 15:32
Compare
Choose a tag to compare
  • Tested with Crystal 0.26.0

Curlify

13 Aug 08:55
Compare
Choose a tag to compare
  • Add Crest::Request#to_curl to convert request to cURL command (#95)
  • Bug fixes and other improvements

Make forms great again!

17 Jul 13:12
Compare
Choose a tag to compare
  • (breaking-change) Rename Request#payload to Request#form
  • Use application/x-www-form-urlencoded for forms by default. And multipart/form-data when a form includes any <input type="file"> elements.
  • Fix serialize query to string representation as http url-encoded

Happy Bastille Day

14 Jul 12:30
Compare
Choose a tag to compare
  • Add Logger#filter method to filter sensitive information from logs with a regex matcher
  • Allow to do request with suburl through Request#http_verb(suburl) method
  • Bug fixes and other improvements

Crystal 0.25

15 Jun 08:20
Compare
Choose a tag to compare
v0.10.2

v0.10.2

Bug fixes

14 May 08:50
a6292b0
Compare
Choose a tag to compare
  • Fix Crest::Utils.flatten_params method (#85)
  • Reduce the false positiveness in code as much as possible (#83, thanks @veelenga)

Blocks everywhere

24 Apr 08:07
Compare
Choose a tag to compare
  • Add HTTP verb methods (get, post, etc) to Crest::Request
  • Crest and Crest::Request verb methods(get, post, etc.) can yields the Crest::Request to the block
  • Crest::Request and Crest::Resource initializer can accept block
  • Access instance of HTTP::Client via Crest::Request#http_client
  • Access instance of HTTP::Client via Crest::Resource#http_client
  • Crest::Request and Crest::Resource initializer can accept HTTP::Client as http_client
  • Add method options to HTTP::Resource