Changelog for
ruby2.5-rubygem-httparty-0.16.2-lp150.1.3.x86_64.rpm :
* Sat Mar 31 2018 factory-autoAATTkulow.org- updated to version 0.16.2 see installed Changelog.md [#]# 0.16.2
* [Support ActionDispatch::Http::UploadedFile again](https://github.com/jnunemaker/httparty/pull/585)
* Tue Mar 20 2018 factory-autoAATTkulow.org- updated to version 0.16.1 see installed Changelog.md [#]# 0.16.1
* [Parse content with application/hal+json content type as JSON](https://github.com/jnunemaker/httparty/pull/573)
* [Convert objects to string when concatenating in multipart stuff](https://github.com/jnunemaker/httparty/pull/575)
* [Fix multipart to set its header even when other headers are provided](https://github.com/jnunemaker/httparty/pull/576)
* Tue Feb 13 2018 factory-autoAATTkulow.org- updated to version 0.16.0 see installed Changelog.md [#]# 0.16.0
* [Add multipart support](https://github.com/jnunemaker/httparty/pull/569)
* Thu Feb 08 2018 cooloAATTsuse.com- updated to version 0.15.7 see installed Changelog.md [#]# 0.15.7 Fixed
* [Add Response#pretty_print | Restore documented behavior](https://github.com/jnunemaker/httparty/pull/570)
* [Add ability to parse response from JSONAPI ](https://github.com/jnunemaker/httparty/pull/553) [#]# 0.15.6 Fixed
* [Encoding and content type stuff](https://github.com/jnunemaker/httparty/pull/543)
* Thu Aug 03 2017 cooloAATTsuse.com- updated to version 0.15.6 see installed Changelog.md
* Tue May 23 2017 cooloAATTsuse.com- updated to version 0.15.5 History removed upstream
* Tue Jul 26 2016 cooloAATTsuse.com- updated to version 0.14.0 see installed History == 0.14.0
* [added status predicate methods to Response#respond_to?](https://github.com/jnunemaker/httparty/pull/482)
* [allow empty array to be used as param](https://github.com/jnunemaker/httparty/pull/477)
* [add support for MKCOL method](https://github.com/jnunemaker/httparty/pull/465)
* [remove json gem from gemspec](https://github.com/jnunemaker/httparty/pull/464)
* [stop mutating cookie hash](https://github.com/jnunemaker/httparty/pull/460)
* [optional raising exception on certain status codes](https://github.com/jnunemaker/httparty/pull/455)
* Thu Sep 24 2015 cooloAATTsuse.com- updated to version 0.13.7 see installed History == 0.13.7 aka \"party not as hard\"
* remove post install emoji as it caused installation issues for some people
* Mon Sep 21 2015 cooloAATTsuse.com- updated to version 0.13.6 see installed History == 0.13.6
* avoid calling String#strip on invalid Strings
* preserve request method on 307 and 308 redirects
* output version with --version for command line bin
* maintain head request method across redirects by default
* add support for RFC2617 MD5-sess algorithm type
* add party popper emoji to post install message == 0.13.5
* allow setting a custom URI adapter == 0.13.4
* correct redirect url for redirect paths without leading slash
* remove core_extensions.rb as backwards compat for ruby 1.8 not needed
* replace URI.encode with ERB::Util.url_encode
* allow the response to be tapped
* Wed May 20 2015 cooloAATTsuse.com- updated to version 0.13.5 see installed History
* Thu May 14 2015 cooloAATTsuse.com- updated to version 0.13.4 see installed History
* Tue Feb 10 2015 cooloAATTsuse.com- updated to version 0.13.3
* Mon Oct 13 2014 cooloAATTsuse.com- adapt to new rubygem packaging
* Sun May 18 2014 cooloAATTsuse.com- updated to version 0.13.1, no changelog
* Sat Feb 22 2014 cooloAATTsuse.com- updated to version 0.13.0, no changes
* Sun Oct 13 2013 cooloAATTsuse.com- updated to version 0.12.0, no changes
* Mon May 13 2013 cooloAATTsuse.com- updated to version 0.11.0
* new
* [added support for MOVE requests](https://github.com/jnunemaker/httparty/pull/183)
* [bump multi xml version](https://github.com/jnunemaker/httparty/pull/181)
* Thu Jan 24 2013 cooloAATTsuse.com- updated to version 0.10.0
* removed yaml support because of security risk (see rails yaml issues)
* Wed Sep 12 2012 cooloAATTsuse.com- updated to version 0.9.0
* new
* [support for connection adapters](https://github.com/jnunemaker/httparty/pull/157)
* [allow ssl_version on ruby 1.9](https://github.com/jnunemaker/httparty/pull/159)
* bug fixes
* [don\'t treat port 4430 as ssl](https://github.com/jnunemaker/httparty/commit/a296b1c97f83d7dcc6ef85720a43664c265685ac)
* [deep clone default options](https://github.com/jnunemaker/httparty/commit/f74227d30f9389b4b23a888c9af49fb9b8248e1f)
* a few net digest auth fixes
* Wed Aug 01 2012 cooloAATTsuse.com- updated to version 0.8.3
* Tue Jun 22 2010 mrueckertAATTsuse.de- update to version 0.6.0
* Digest Auth (bartiaco, sbecker, gilles, and aaronrussell)
* Maintain HTTP method across redirects (bartiaco and sbecker)
* HTTParty::Response#response returns the Net::HTTPResponse object
* HTTParty::Response#headers returns a HTTParty::Response::Headers object which quacks like a Hash + Net::HTTPHeader. The #headers method continues to be backwards-compatible with the old Hash return value but may become deprecated in the future.
* Update crack requirement to version 0.1.7 You may still get a warning because Crack\'s version constant is out of date
* Timeout option can be set for all requests using HTTParty.default_timeout (taazza)
* Closed #38 \"headers hash should downcase keys so canonical header name can be used\"
* Closed #40 \"Gzip response\" wherein gziped and deflated responses are automatically inflated. (carsonmcdonald)
* Fri Jun 11 2010 mrueckertAATTsuse.de- update to version 0.5.2
* Update crack requirement to version 0.1.6- additional changes from version 0.5.1
* Handle 304 response correctly by returning the HTTParty::Response object instead of redirecting (seth and hellvinz)
* Only redirect 300 responses if the header contains a Location
* Don\'t append empty query strings to the uri. Closes #31
* When no_follow is enabled, only raise the RedirectionTooDeep exception when a response tries redirecting. Closes #28
* Removed rubygems dependency. I suggest adding rubygems to RUBYOPT if this causes problems for you. $ export RUBYOPT=\'rubygems\'
* HTTParty#debug_output prints debugging information for the current request (iwarshak)
* HTTParty#no_follow now available as a class-level option. Sets whether or not to follow redirects.
* HTTParty::VERSION now available
* Update crack requirement to version 0.1.5
* Fri Jun 11 2010 mrueckertAATTsuse.de- use rubygems_requires macro
* Thu Jan 07 2010 prusnakAATTsuse.cz- created package