Skip to content

Latest commit

 

History

History
116 lines (67 loc) · 2.73 KB

CHANGELOG.md

File metadata and controls

116 lines (67 loc) · 2.73 KB

Changelog

v1.5.7

  • Add custom error on certificate fail

v1.5.6

  • All response header keys are converted to lowercase (iOS only)

v1.5.5

  • added a function to remove all cookies for a URL

v1.5.4

  • fixed an error if the response has no "headers" field

v1.5.3

  • handles cookies correctly on non-success response from server
  • throws error when a callback function is missing

v1.5.2

  • fixed missing file "umd-tough-cookie.js“ (caused by missing file ".npmignore")

v1.5.1

  • fixed case-sensitive path name of android source files ("CordovaHTTP" --> "cordovahttp")

v1.5.0

  • added cookie handling
  • cookies are persisted via web storage API

v1.4.0

Previous changelog (cordova-plugin-http)

v1.2.0

  • Added support for TLSv1.1 and TLSv1.2 for android versions 4.1-4.4 (API levels 16-19)

Potentially Breaking Changes that really shouldn't matter because you shouldn't be using SSLv3

  • Dropped SSLv3 support for all API Levels < 20. It will now only work on API Levels 20-22.

v1.1.0

  • Fixed the body of errors not being returned in iOS
  • Updated AFNetworking to 3.1.0

Potentially Breaking Changes

  • Disable encoding get() URLS in android (Thanks to devgeeks)

v1.0.3

  • Fixed version number in plugin.xml

v1.0.2

  • Fixed bug using useBasicAuth and setHeader from angular

v1.0.1

  • updated README

v1.0.0

  • Added getBasicAuthHeader function
  • Added necessary iOS framework (Thanks to EddyVerbruggen)
  • Request internet permission in android (Thanks to mbektchiev)
  • Fix acceptAllCerts doesn't call callbacks (Thanks to EddyVerbruggen)
  • Add validateDomainName (Thanks to denisbabineau)
  • Add HEAD request support (untested) (Thanks to denisbabineau)

Potentially Breaking Changes

  • Update cordova file plugin dependency (Thanks to denisbabineau)
  • useBasicAuthHeader and setHeader are now synchronous functions
  • updated AFNetworking to 3.0.4 - only iOS 7+ is now supported
  • updated http-request to 6.0

v0.1.4

  • Support for certificates in www/certificates folder (Thanks to EddyVerbruggen)

v0.1.3

  • Update AFNetworking to 2.4.1 for iOS bug fix in Xcode 6

v0.1.2

  • Fixed plugin.xml for case sensitive filesystems (Thanks to andrey-tsaplin)

v0.1.1

  • Fixed a bug that prevented building

v0.1.0

  • Initial release

Contributions not noted above

  • Fixed examples (Thanks to devgeeks)
  • Reports SSL Handshake errors rather than giving a generic error (Thanks to devgeeks)
  • Exporting http as a module (Thanks to pvsaikrishna)
  • Added Limitations section to readme (Thanks to cvillerm)
  • Fixed examples (Thanks to hideov)