Socket
Socket
Sign inDemoInstall

cordova-plugin-ionic-webview

Package Overview
Dependencies
Maintainers
3
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-plugin-ionic-webview - npm Package Compare versions

Comparing version 4.2.1 to 5.0.0

18

CHANGELOG.md

@@ -0,1 +1,19 @@

# [5.0.0](https://github.com/ionic-team/cordova-plugin-ionic-webview/compare/v4.2.1...v5.0.0) (2020-05-27)
### Features
* **android:** remove RequiresApi annotation and drop support for API 19 ([#540](https://github.com/ionic-team/cordova-plugin-ionic-webview/issues/540)) ([17d2ada](https://github.com/ionic-team/cordova-plugin-ionic-webview/commit/17d2ada038cbd6548ed14887b1b7a0cbc98f1d83))
* **ios:** remove normalizeURL function ([#576](https://github.com/ionic-team/cordova-plugin-ionic-webview/issues/576)) ([d5bdbaa](https://github.com/ionic-team/cordova-plugin-ionic-webview/commit/d5bdbaaf128bdd49cebe50fff52fbcf226998e7d))
* **ios:** remove wkRewriteURL function ([#577](https://github.com/ionic-team/cordova-plugin-ionic-webview/issues/577)) ([02c18ea](https://github.com/ionic-team/cordova-plugin-ionic-webview/commit/02c18ea359e344ab904733b8dc582ceb4e25d581))
### BREAKING CHANGES
* **ios:** wkRewriteURL was deprecated and has been removed, use
window.Ionic.WebView.convertFileSrc instead
* **ios:** normalizeURL was deprecated and has been removed, use
window.Ionic.WebView.convertFileSrc instead
* **android:** Drop Android 4.4 support (SDK API level 19). Min required is 21.
## [4.2.1](https://github.com/ionic-team/cordova-plugin-ionic-webview/compare/v4.2.0...v4.2.1) (2020-04-28)

@@ -2,0 +20,0 @@

2

package.json
{
"name": "cordova-plugin-ionic-webview",
"version": "4.2.1",
"version": "5.0.0",
"description": "Ionic Web View Engine Plugin",

@@ -5,0 +5,0 @@ "scripts": {

@@ -11,14 +11,2 @@

function normalizeURL(url) {
console.warn('normalizeURL is deprecated, use window.Ionic.WebView.convertFileSrc');
return window.Ionic.WebView.convertFileSrc(url);
}
if (typeof window.wkRewriteURL === 'undefined') {
window.wkRewriteURL = function (url) {
console.warn('wkRewriteURL is deprecated, use window.Ionic.WebView.convertFileSrc instead');
return window.Ionic.WebView.convertFileSrc(url);
}
}
window.Ionic.normalizeURL = normalizeURL;
var stopScrollHandler = window.webkit.messageHandlers.stopScroll;

@@ -25,0 +13,0 @@ if (!stopScrollHandler) {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc