Skip to content

Tags: crasyboy42/react-native-webview

Tags

v11.2.1

Toggle v11.2.1's commit message
chore(release): 11.2.1 [skip ci]

## [11.2.1](react-native-webview/react-native-webview@v11.2.0...v11.2.1) (2021-01-25)

### Bug Fixes

* **ios:** error on iOS < 13([react-native-webview#1843](react-native-webview#1843)) ([283fe12](react-native-webview@283fe12))

v11.2.0

Toggle v11.2.0's commit message
chore(release): 11.2.0 [skip ci]

# [11.2.0](react-native-webview/react-native-webview@v11.1.0...v11.2.0) (2021-01-20)

### Features

* **iOS & MacOS:** allowUniversalAccessFromFileURLs property([react-native-webview#1730](react-native-webview#1730)) ([8d098ef](react-native-webview@8d098ef))

v11.1.0

Toggle v11.1.0's commit message
chore(release): 11.1.0 [skip ci]

# [11.1.0](react-native-webview/react-native-webview@v11.0.3...v11.1.0) (2021-01-20)

### Features

* **iOS 13+:** automaticallyAdjustsScrollIndicatorInsets prop ([react-native-webview#1077](react-native-webview#1077)) ([d46a6d3](react-native-webview@d46a6d3))

v11.0.3

Toggle v11.0.3's commit message
chore(release): 11.0.3 [skip ci]

## [11.0.3](react-native-webview/react-native-webview@v11.0.2...v11.0.3) (2021-01-13)

### Bug Fixes

* **iOS:** restore cookie handling for iOS <= 10 ([react-native-webview#1728](react-native-webview#1728)) ([d338cae](react-native-webview@d338cae))

v11.0.2

Toggle v11.0.2's commit message
chore(release): 11.0.2 [skip ci]

## [11.0.2](react-native-webview/react-native-webview@v11.0.1...v11.0.2) (2020-12-08)

### Bug Fixes

* **android:** changed initial value of nextLockIdentifier from 0 to 1 ([react-native-webview#1689](react-native-webview#1689)) ([53c0382](react-native-webview@53c0382))

v11.0.1

Toggle v11.0.1's commit message
chore(release): 11.0.1 [skip ci]

## [11.0.1](react-native-webview/react-native-webview@v11.0.0...v11.0.1) (2020-12-05)

### Bug Fixes

* **ts:** onScroll event type ([react-native-webview#1631](react-native-webview#1631)) ([84b7177](react-native-webview@84b7177))

v11.0.0

Toggle v11.0.0's commit message
chore(release): 11.0.0 [skip ci]

# [11.0.0](react-native-webview/react-native-webview@v10.10.2...v11.0.0) (2020-11-24)

### Features

* **android:** Introduce setSupportMultipleWindows to mitigate CVE-2020-6506 ([react-native-webview#1747](react-native-webview#1747) by [@mrcoinbase](https://github.com/mrcoinbase) and [@kelset](https://github.com/kelset) -- THANK YOU!) ([194c6a2](react-native-webview@194c6a2))

### BREAKING CHANGES

* **android:** This release introduces the `setSupportMultipleWindows` prop for Android. This sets the underlying Android WebView setting `setSupportMultipleWindows`. This prop defaults to `true` (previously `false`), and serves to mitigate the security advisory [CVE-2020-6506](GHSA-36j3-xxf7-4pqg).

The primary way this new behavior changes existing React Native WebView implementations on Android is that links that open in new tabs/windows (such as `<a target="_blank">`) will now prompt to open in the system browser, rather than re-using the current WebView.

If this behavior is not desirable, you can set this new prop to `false`, but be aware that this exposes your app to the security vulnerability listed above. Make sure you have read and understand the whole advisory and relevant links.

iOS & Windows are unaffected.

```jsx
<WebView
  // ...
  setSupportMultipleWindows={true} // default: true
/>
```

Thanks to @mrcoinbase, @kelset, and @Titozzz for their work on this.

v10.10.2

Toggle v10.10.2's commit message
chore(release): 10.10.2 [skip ci]

## [10.10.2](react-native-webview/react-native-webview@v10.10.1...v10.10.2) (2020-11-06)

### Bug Fixes

* **android:** Unset mWebChromeClient on WebViewManager rather than WebView ([react-native-webview#1720](react-native-webview#1720)) ([c95c0ea](react-native-webview@c95c0ea))

v10.10.1

Toggle v10.10.1's commit message
chore(release): 10.10.1 [skip ci]

## [10.10.1](react-native-webview/react-native-webview@v10.10.0...v10.10.1) (2020-11-06)

### Bug Fixes

* **windows:** Resolve Missing Deploy Target ([react-native-webview#1716](react-native-webview#1716) by [@chiaramooney](https://github.com/chiaramooney)) ([8bd0b41](react-native-webview@8bd0b41))

v10.10.0

Toggle v10.10.0's commit message
chore(release): 10.10.0 [skip ci]

# [10.10.0](react-native-webview/react-native-webview@v10.9.3...v10.10.0) (2020-10-26)

### Features

* **windows:** JS-WebView messaging bridge & multiple WebViews fixes ([react-native-webview#1617](react-native-webview#1617)) ([b930e25](react-native-webview@b930e25))