5e8b4d5c2b
								
							 
						 
						
							chore(iOS): Extract wkWebViewConfig setup to setUpWkWebViewConfig function 
							
							
						 
						5 лет назад  
				
					
						
							
								 
						
							
								f0cb28ff9a
								
							 
						 
						
							chore(release): 8.0.3 [skip ci] 
							
							
## [8.0.3](https://github.com/react-native-community/react-native-webview/compare/v8.0.2...v8.0.3 ) (2020-01-08)
### Bug Fixes
* **whitelisted origins:** Prevent handling of un-whitelisted URLs ([0442126 ](https://github.com/react-native-community/react-native-webview/commit/ 0442126 )) 
							
							
						 
						5 лет назад  
				
					
						
							
								 
						
							
								0442126595
								
							 
						 
						
							fix(whitelisted origins): Prevent handling of un-whitelisted URLs 
							
							
* Preventing an unhandled promise rejection when: a URL is loaded by the WebView, but the URL isn't in the origin whitelist, so it is handed off to the OS to handle by calling Linking.openURL(), but Linking.openURL has an error.  The code wasn't catching the error, so this would result in an unhandled promise rejection. Now the error is being caught.
* Fixing a problem where a URL is handled to the OS to deal with, via Linking.openURL, and also loaded in the WebView by making those cases mutually exclusive (they weren't previously).  In more detail: when a URL is loaded by the WebView that isn't in the origin whitelist it is handled off to the OS to handle by calling Linking.openURL.  But, if the onShouldStartLoadWithRequest prop is set, then that function would also be called, and then that would determine whether the URL should be loaded.  This can result in a situation where the URL is passed to Linking.openURL and onShouldStartLoadWithRequest returns true so it is also loaded in the WebView.  The client can fix this by duplicating the origin whitelist logic in their onShouldStartLoadWithRequest of course, but this change makes it so they don't have to.
Co-authored-by: Jason Safaiyeh <safaiyeh@protonmail.com > 
							
							
						 
						5 лет назад  
				
					
						
							
								 
						
							
								13ae8c9661
								
							 
						 
						
							chore(README): Lean Core badge 
							
							
* docs: add Lean core badge
* docs: adjust badge style 
							
							
						 
						5 лет назад  
				
					
						
							
								 
						
							
								07a87131dc
								
							 
						 
						
							chore(deps): bump npm from 6.11.3 to 6.13.4 (#1079 ) 
							
							
Bumps [npm](https://github.com/npm/cli ) from 6.11.3 to 6.13.4.
- [Release notes](https://github.com/npm/cli/releases )
- [Changelog](https://github.com/npm/cli/blob/latest/CHANGELOG.md )
- [Commits](https://github.com/npm/cli/compare/v6.11.3...v6.13.4 )
Signed-off-by: dependabot[bot] <support@github.com > 
							
							
						 
						5 лет назад  
				
					
						
							
								 
						
							
								c4f8a74763
								
							 
						 
						
							chore(release): 8.0.2 [skip ci] 
							
							
## [8.0.2](https://github.com/react-native-community/react-native-webview/compare/v8.0.1...v8.0.2 ) (2019-12-27)
### Bug Fixes
* **iOS:** WKWebView RetainCycle ([#1096 ](https://github.com/react-native-community/react-native-webview/issues/1096 )) ([4f4644f ](https://github.com/react-native-community/react-native-webview/commit/ 4f4644f )) 
							
							
						 
						5 лет назад  
				
					
						
							
								 
						
							
								8a9836c703
								
							 
						 
						
							chore(docs): Add 8.0.0 to Breaking History on README (#1085 ) 
							
							
						 
						5 лет назад  
				
					
						
							
								 
						
							
								4f4644ffd8
								
							 
						 
						
							fix(iOS): WKWebView RetainCycle (#1096 ) 
							
							
						 
						5 лет назад  
				
					
						
							
								 
						
							
								7ba1bc5129
								
							 
						 
						
							chore(release): 8.0.1 [skip ci] 
							
							
## [8.0.1](https://github.com/react-native-community/react-native-webview/compare/v8.0.0...v8.0.1 ) (2019-12-17)
### Bug Fixes
* **iOS:** Ignore WebKitDomainError 101 ([#961 ](https://github.com/react-native-community/react-native-webview/issues/961 )) ([adb5608 ](https://github.com/react-native-community/react-native-webview/commit/ adb5608 )) 
							
							
						 
						5 лет назад  
				
					
						
							
								 
						
							
								adb5608116
								
							 
						 
						
							fix(iOS): Ignore WebKitDomainError 101 (#961 ) 
							
							
						 
						5 лет назад  
				
					
						
							
								 
						
							
								ce565f4832
								
							 
						 
						
							chore(release): 8.0.0 [skip ci] 
							
							
# [8.0.0](https://github.com/react-native-community/react-native-webview/compare/v7.6.0...v8.0.0 ) (2019-12-16)
### Features
* **ios:** Generate history API events on iOS ([#1082 ](https://github.com/react-native-community/react-native-webview/issues/1082 )) ([3615296 ](https://github.com/react-native-community/react-native-webview/commit/ 3615296 ))
### BREAKING CHANGES
* **ios:** if you use onNavigationStateChange on iOS it will now trigger on # changes to the url.
* Hook the `window.history` API on iOS to generate events
The underlying WKWebView doesn't seem to generate any events in response to the `window.history` API - none of the `WKNavigationDelegate` methods fire.
Given this limitation, the only way to know when the location changes via this API is to inject Javascript into the page and have it notify the native code directly when any of these functions are called.
The `setTimeout` call gives up the current tick, allowing the location to change before firing the event.
* Remove the outdated section about hash changes
Now that this bug is fixed, the workaround is no longer required. 
							
							
						 
						5 лет назад  
				
					
						
							
								 
						
							
								361529630f
								
							 
						 
						
							feat(ios): Generate history API events on iOS (#1082 ) 
							
							
BREAKING CHANGE: if you use onNavigationStateChange on iOS it will now trigger on # changes to the url.
* Hook the `window.history` API on iOS to generate events
The underlying WKWebView doesn't seem to generate any events in response to the `window.history` API - none of the `WKNavigationDelegate` methods fire.
Given this limitation, the only way to know when the location changes via this API is to inject Javascript into the page and have it notify the native code directly when any of these functions are called.
The `setTimeout` call gives up the current tick, allowing the location to change before firing the event.
* Remove the outdated section about hash changes
Now that this bug is fixed, the workaround is no longer required. 
							
							
						 
						5 лет назад  
				
					
						
							
								 
						
							
								c4001338c1
								
							 
						 
						
							chore(release): 7.6.0 [skip ci] 
							
							
# [7.6.0](https://github.com/react-native-community/react-native-webview/compare/v7.5.2...v7.6.0 ) (2019-12-06)
### Bug Fixes
* **ios:** Make allowFileAccessFromFileURLs work in iOS. ([#1061 ](https://github.com/react-native-community/react-native-webview/issues/1061 )) ([88b6498 ](https://github.com/react-native-community/react-native-webview/commit/ 88b6498 ))
### Features
* **iOS:** new prop injectedJavaScriptBeforeContentLoaded ([#1038 ](https://github.com/react-native-community/react-native-webview/issues/1038 )) ([604495e ](https://github.com/react-native-community/react-native-webview/commit/ 604495e )) 
							
							
						 
						5 лет назад  
				
					
						
							
								 
						
							
								88b64981f4
								
							 
						 
						
							fix(ios): Make allowFileAccessFromFileURLs work in iOS. (#1061 ) 
							
							
						 
						5 лет назад  
				
					
						
							
								 
						
							
								604495e399
								
							 
						 
						
							feat(iOS): new prop injectedJavaScriptBeforeContentLoaded (#1038 ) 
							
							
* Run the injectedJavaScript on DocumentStart for iOS
* Add new prop injectedJavaScriptBeforeContentLoaded
Update types
Update docs
* Self review 
							
							
						 
						5 лет назад  
				
					
						
							
								 
						
							
								5ddd6c6fc2
								
							 
						 
						
							chore(release): 7.5.2 [skip ci] 
							
							
## [7.5.2](https://github.com/react-native-community/react-native-webview/compare/v7.5.1...v7.5.2 ) (2019-11-26)
### Bug Fixes
* **android:** Added fallback poster image to prevent crashes ([#1036 ](https://github.com/react-native-community/react-native-webview/issues/1036 )) ([d8acd90 ](https://github.com/react-native-community/react-native-webview/commit/ d8acd90 ))
* **build:** Android build errors when using Gradle 6.0 ([#1037 ](https://github.com/react-native-community/react-native-webview/issues/1037 )) ([5b0c634 ](https://github.com/react-native-community/react-native-webview/commit/ 5b0c634 )) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								5b0c634f15
								
							 
						 
						
							fix(build): Android build errors when using Gradle 6.0 (#1037 ) 
							
							
* Fix Android build errors when using Gradle 6.0
* Update gradle.properties
* Remove newline at end of file
* newline 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								d8acd9086c
								
							 
						 
						
							fix(android): Added fallback poster image to prevent crashes (#1036 ) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								71a375f898
								
							 
						 
						
							chore(cleaning): Remove old comments (#1019 ) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								351adba284
								
							 
						 
						
							chore(buildtools): enable --frozen-lockfile yarn flag (#1005 ) 
							
							
that is required for reproducible dependencies which is usually common on CI 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								30d63a1773
								
							 
						 
						
							chore(buildtools): Use fixed version of cocoapods gem on ci (#1006 ) 
							
							
install exact version instead of latest one 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								ef5c36c88e
								
									
										
											
								
							 
						 
						
							chore(docs): Document request focus method 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								4c2feefbcc
								
							 
						 
						
							chore(release): 7.5.1 [skip ci] 
							
							
## [7.5.1](https://github.com/react-native-community/react-native-webview/compare/v7.5.0...v7.5.1 ) (2019-11-13)
### Bug Fixes
* **android:** Fix ClassCastException when doing native things([#987 ](https://github.com/react-native-community/react-native-webview/issues/987 )) ([7e68da4 ](https://github.com/react-native-community/react-native-webview/commit/ 7e68da4 )) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								7e68da4ffe
								
							 
						 
						
							fix(android): Fix ClassCastException when doing native things(#987 ) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								9dff31258d
								
							 
						 
						
							chore(release): 7.5.0 [skip ci] 
							
							
# [7.5.0](https://github.com/react-native-community/react-native-webview/compare/v7.4.4...v7.5.0 ) (2019-11-12)
### Features
* **android:** add clearHistory, clearCache and clearFormData ([#450 ](https://github.com/react-native-community/react-native-webview/issues/450 )) ([4a4f4a2 ](https://github.com/react-native-community/react-native-webview/commit/ 4a4f4a2 )) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								4a4f4a2c45
								
							 
						 
						
							feat(android): add clearHistory, clearCache and clearFormData (#450 ) 
							
							
* add clearHistory, clearCache and clearFormData android webview api.
* remove pointless `async`
* add docs for new android webview methods
* Update Reference.md
* update commands types
* add more strict type for RNCWebViewUIManager `Commands` property 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								5d6128909c
								
							 
						 
						
							chore(release): 7.4.4 [skip ci] 
							
							
## [7.4.4](https://github.com/react-native-community/react-native-webview/compare/v7.4.3...v7.4.4 ) (2019-11-12)
### Bug Fixes
* **android:** crash problem while loading local html resource ([#1010 ](https://github.com/react-native-community/react-native-webview/issues/1010 )) ([05c286f ](https://github.com/react-native-community/react-native-webview/commit/ 05c286f )) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								6088dd9f06
								
							 
						 
						
							chore(docs): Steps to load local HTML files into the webview (#1008 ) 
							
							
Fixes #746  
These steps are based on my other project React native draftjs which requires loading a local HTML file. The code can be found in the following line - bc51410117/index.js (L113)  
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								05c286fc23
								
							 
						 
						
							fix(android): crash problem while loading local html resource (#1010 ) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								b92d6ae014
								
							 
						 
						
							chore(docs): README.md translated into Brazilian portugues (#980 ) 
							
							
I was using this solution a lot, so I decided to translate it into my language. 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								82af9559ef
								
									
										
											
								
							 
						 
						
							chore(docs): Add in-page link to new guide 
							
							
[skip ci] 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								8c9f986df0
								
							 
						 
						
							chore(docs): Added guide for working with custom headers and cookies (#994 ) 
							
							
* Added guide for working with custom headers and cookies
* Remove extraneous files 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								c1b3696e01
								
							 
						 
						
							chore(docs): Added missing word (#948 ) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								75ee940e89
								
							 
						 
						
							chore(release): 7.4.3 [skip ci] 
							
							
## [7.4.3](https://github.com/react-native-community/react-native-webview/compare/v7.4.2...v7.4.3 ) (2019-10-22)
### Bug Fixes
* **android:** possible NullPointerException ([#965 ](https://github.com/react-native-community/react-native-webview/issues/965 )) ([fab77dc ](https://github.com/react-native-community/react-native-webview/commit/ fab77dc )) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								fab77dc82f
								
							 
						 
						
							fix(android): possible NullPointerException (#965 ) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								f1479ee26a
								
							 
						 
						
							chore(release): 7.4.2 [skip ci] 
							
							
## [7.4.2](https://github.com/react-native-community/react-native-webview/compare/v7.4.1...v7.4.2 ) (2019-10-11)
### Bug Fixes
* **lint android:** Add TargetAPI to onPermissionRequest ([#940 ](https://github.com/react-native-community/react-native-webview/issues/940 )) ([0b783da ](https://github.com/react-native-community/react-native-webview/commit/ 0b783da )) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								0b783da0a4
								
							 
						 
						
							fix(lint android): Add TargetAPI to onPermissionRequest (#940 ) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								9d42878704
								
							 
						 
						
							chore(release): 7.4.1 [skip ci] 
							
							
## [7.4.1](https://github.com/react-native-community/react-native-webview/compare/v7.4.0...v7.4.1 ) (2019-10-03)
### Bug Fixes
* **deps:** Fix RNCWebViewUIManager interface typescript error (#… ([#928 ](https://github.com/react-native-community/react-native-webview/issues/928 )) ([e529fa9 ](https://github.com/react-native-community/react-native-webview/commit/ e529fa9 )), closes [#901 ](https://github.com/react-native-community/react-native-webview/issues/901 ) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								e529fa9006
								
							 
						 
						
							fix(deps): Fix RNCWebViewUIManager interface typescript error (#… (#928 ) 
							
							
* fix(deps): Fix RNCWebViewUIManager interface typescript error (#901 )
* fix: Revert indentation changes 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								1302a37408
								
							 
						 
						
							chore(release): 7.4.0 [skip ci] 
							
							
# [7.4.0](https://github.com/react-native-community/react-native-webview/compare/v7.3.0...v7.4.0 ) (2019-09-29)
### Features
* **android:** allowFileAccessFromFileURLs prop added ([#831 ](https://github.com/react-native-community/react-native-webview/issues/831 )) ([4db3d84 ](https://github.com/react-native-community/react-native-webview/commit/ 4db3d84 )) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								4db3d84dda
								
							 
						 
						
							feat(android): allowFileAccessFromFileURLs prop added (#831 ) 
							
							
* add allowFileAccessFromFileURLs propery to do the expected on android
* Added types
* Update WebViewTypes.ts 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								089ca67c6e
								
							 
						 
						
							chore(release): 7.3.0 [skip ci] 
							
							
# [7.3.0](https://github.com/react-native-community/react-native-webview/compare/v7.2.8...v7.3.0 ) (2019-09-29)
### Features
* **android:** Expose cacheMode property ([#895 ](https://github.com/react-native-community/react-native-webview/issues/895 )) ([5da5925 ](https://github.com/react-native-community/react-native-webview/commit/ 5da5925 ))
* **new prop:** containerStyle ([#912 ](https://github.com/react-native-community/react-native-webview/issues/912 )) ([902d3d1 ](https://github.com/react-native-community/react-native-webview/commit/ 902d3d1 )) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								5da59251ce
								
							 
						 
						
							feat(android): Expose cacheMode property (#895 ) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								902d3d1e7f
								
							 
						 
						
							feat(new prop): containerStyle (#912 ) 
							
							
* feat(new prop): containerStyle
* chore(docs): Add documentation for `containerStyle` 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								7f41de1bcb
								
							 
						 
						
							chore(release): 7.2.8 [skip ci] 
							
							
## [7.2.8](https://github.com/react-native-community/react-native-webview/compare/v7.2.7...v7.2.8 ) (2019-09-29)
### Bug Fixes
* **android:** renderError - the error status might be overwritte… ([#915 ](https://github.com/react-native-community/react-native-webview/issues/915 )) ([01de9e5 ](https://github.com/react-native-community/react-native-webview/commit/ 01de9e5 )) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								01de9e5fa0
								
							 
						 
						
							fix(android): renderError - the error status might be overwritte… (#915 ) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								f958f8a493
								
							 
						 
						
							chore(release): 7.2.7 [skip ci] 
							
							
## [7.2.7](https://github.com/react-native-community/react-native-webview/compare/v7.2.6...v7.2.7 ) (2019-09-26)
### Bug Fixes
* **iOS:** hideKeyboardAccessoryView on iPads ([#661 ](https://github.com/react-native-community/react-native-webview/issues/661 )) ([09372c9 ](https://github.com/react-native-community/react-native-webview/commit/ 09372c9 )) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								09372c9d95
								
							 
						 
						
							fix(iOS): hideKeyboardAccessoryView on iPads (#661 ) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								fd836551bc
								
							 
						 
						
							chore(release): 7.2.6 [skip ci] 
							
							
## [7.2.6](https://github.com/react-native-community/react-native-webview/compare/v7.2.5...v7.2.6 ) (2019-09-26)
### Bug Fixes
* **iOS:** Fix changing notification bars [#735 ](https://github.com/react-native-community/react-native-webview/issues/735 ) ([#898 ](https://github.com/react-native-community/react-native-webview/issues/898 )) ([05e2d27 ](https://github.com/react-native-community/react-native-webview/commit/ 05e2d27 )) 
							
							
						 
						6 лет назад  
				
					
						
							
								 
						
							
								05e2d27662
								
							 
						 
						
							fix(iOS): Fix changing notification bars #735  (#898 ) 
							
							
UIWindowDidBecomeVisibleNotification and UIWindowDidBecomeHiddenNotification seem far more reliable at detecting fullscreen video.
Tested on iOS 11, 12 and 13 
							
							
						 
						6 лет назад