Skip to content

Commit

Permalink
[webview] Bump react-native-webview patch version to remove unnecessa…
Browse files Browse the repository at this point in the history
…ry log (#7397)

# Why

I was looking into a question about updating react-native-webview to latest to ensure that there weren't any important updates since we last updated it for SDK37. There were not, but this small change to remove a log was easy to pull in and I was already there so I just did it.

# How

`et update-vendored-module -m react-native-webview -c 19896fc810da97117854b37bd59e7fae85bff253` and backport to SDK37

# Test Plan

Not necessary
  • Loading branch information
brentvatne committed May 17, 2020
1 parent f42dd6f commit 7a706b9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
Expand Up @@ -208,7 +208,6 @@ public void onDownloadStart(String url, String userAgent, String contentDisposit
String baseUrl = urlObj.getProtocol() + "://" + urlObj.getHost();
String cookie = CookieManager.getInstance().getCookie(baseUrl);
request.addRequestHeader("Cookie", cookie);
System.out.println("Got cookie for DownloadManager: " + cookie);
} catch (MalformedURLException e) {
System.out.println("Error getting cookie for DownloadManager: " + e.toString());
e.printStackTrace();
Expand Down
Expand Up @@ -208,7 +208,6 @@ public void onDownloadStart(String url, String userAgent, String contentDisposit
String baseUrl = urlObj.getProtocol() + "://" + urlObj.getHost();
String cookie = CookieManager.getInstance().getCookie(baseUrl);
request.addRequestHeader("Cookie", cookie);
System.out.println("Got cookie for DownloadManager: " + cookie);
} catch (MalformedURLException e) {
System.out.println("Error getting cookie for DownloadManager: " + e.toString());
e.printStackTrace();
Expand Down
2 changes: 1 addition & 1 deletion apps/native-component-list/package.json
Expand Up @@ -96,7 +96,7 @@
"react-native-svg": "11.0.1",
"react-native-view-shot": "^3.1.2",
"react-native-web": "^0.11.0",
"react-native-webview": "8.1.1",
"react-native-webview": "8.1.2",
"react-navigation": "4.1.0-alpha.1",
"react-navigation-header-buttons": "^1.2.1",
"react-navigation-material-bottom-tabs": "^1.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/expo/bundledNativeModules.json
Expand Up @@ -63,7 +63,7 @@
"react-native-screens": "~2.2.0",
"react-native-svg": "11.0.1",
"react-native-view-shot": "3.1.2",
"react-native-webview": "8.1.1",
"react-native-webview": "8.1.2",
"unimodules-barcode-scanner-interface": "~5.1.0",
"unimodules-camera-interface": "~5.1.0",
"unimodules-constants-interface": "~5.1.0",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Expand Up @@ -14186,10 +14186,10 @@ react-native-web@^0.11.0, react-native-web@^0.11.4:
prop-types "^15.6.0"
react-timer-mixin "^0.13.4"

react-native-webview@8.1.1:
version "8.1.1"
resolved "https://registry.yarnpkg.com/react-native-webview/-/react-native-webview-8.1.1.tgz#7f06546972fd4b2113ad3039837f461bab81cd15"
integrity sha512-Bt1vwdz/JMPh39SW2H64p9NrlfVHXrsFFmMGa1O6I9UBP0Y201EofnT3xK3uY4/7KMWeM372MHrmLpyp1AJ4dg==
react-native-webview@8.1.2:
version "8.1.2"
resolved "https://registry.yarnpkg.com/react-native-webview/-/react-native-webview-8.1.2.tgz#c2ddb1e82d1c294f8f68a13be5d0536f7808f377"
integrity sha512-UnGQDttXcgp9JuexidYVu3KIQn1V9xG93yKIs7u6OMdORD5EM4lm7Z1fqqBa59LBeEii5M546kh1/rm0rDA0cA==
dependencies:
escape-string-regexp "2.0.0"
invariant "2.2.4"
Expand Down

0 comments on commit 7a706b9

Please sign in to comment.