diff --git a/CHANGELOG.md b/CHANGELOG.md index d97cd7a..2af4bfd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ - Fixed #83: App crashes on error during download operation on iOS (thanks troyanskiy) - Fixed #76: upload sequence is not respecting order of operations needed by some sites (thanks Johny101) +- :warning: **Deprecation**: AngularJS service is deprecated now and will be removed anytime soon + ## 1.10.1 - Fixed #71: does not encode query string in URL correctly on Android diff --git a/README.md b/README.md index b56490a..fb9d102 100644 --- a/README.md +++ b/README.md @@ -32,11 +32,17 @@ cordova plugin add cordova-plugin-advanced-http ## Usage -### Without AngularJS +### Plain Cordova This plugin registers a global object located at `cordova.plugin.http`. -### With AngularJS +### With Ionic-native wrapper + +Check the [Ionic docs](https://ionicframework.com/docs/native/http/) for how to use this plugin with Ionic-native. + +### With AngularJS (Deprecated) + +:warning: *This feature is deprecated and will be removed anytime soon.* :warning: This plugin creates a cordovaHTTP service inside of a cordovaHTTP module. You must load the module when you create your app's module. diff --git a/package.json b/package.json index 5a3d411..ad837d2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-advanced-http", - "version": "1.10.1", + "version": "1.10.2", "description": "Cordova / Phonegap plugin for communicating with HTTP servers using SSL pinning", "scripts": { "testandroid": "./scripts/build-test-app.sh --android --emulator && ./scripts/test-app.sh --android --emulator",