Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
517e9d4
Implement http basic auth
JeroenWeener Aug 10, 2023
967879b
Apply feedback
JeroenWeener Aug 28, 2023
c8624c0
Create HttpAuthHandlerTest.java
JeroenWeener Aug 29, 2023
4f3574d
Format java files
JeroenWeener Aug 29, 2023
1e7f785
Regenerate build_runner files
JeroenWeener Aug 29, 2023
131bc56
Implement feedback
JeroenWeener Sep 11, 2023
bc01be4
Remove redundant key in `Info.plist`
JeroenWeener Sep 11, 2023
67aa00e
Update example apps
JeroenWeener Sep 11, 2023
32496d0
Implement http basic auth
JeroenWeener Aug 10, 2023
aeb8708
Apply feedback
JeroenWeener Aug 28, 2023
fffc4c7
Create HttpAuthHandlerTest.java
JeroenWeener Aug 29, 2023
b455040
Format java files
JeroenWeener Aug 29, 2023
2aa9bfe
Regenerate build_runner files
JeroenWeener Aug 29, 2023
db286ba
Implement feedback
JeroenWeener Sep 11, 2023
467feb3
Remove redundant key in `Info.plist`
JeroenWeener Sep 11, 2023
dad8ae6
Update example apps
JeroenWeener Sep 11, 2023
6f3d802
Merge branch 'webview-auth-request' of https://github.com/andreisas06…
JeroenWeener Nov 1, 2023
0fef591
Add platform interface dev dependency to example
JeroenWeener Nov 1, 2023
b2a4fbb
Merge branch 'main' into webview-auth-request
JeroenWeener Nov 1, 2023
ce35d9b
Update packages/webview_flutter/webview_flutter_platform_interface/li…
bparrishMines Nov 8, 2023
fc32898
Merge branch 'main' of github.com:flutter/packages into webview-auth-…
bparrishMines Nov 8, 2023
4673e65
Merge branch 'webview-auth-request' of github.com:andreisas06/package…
bparrishMines Nov 8, 2023
580521a
Fix some lints, errros and call on errors
bparrishMines Nov 8, 2023
d1f305b
fix lints
bparrishMines Nov 8, 2023
a3f74be
fix tests
bparrishMines Nov 8, 2023
ed3798f
add onProceed and onCancel back
bparrishMines Nov 8, 2023
154c1f8
dont require realm to be nonnull
bparrishMines Nov 8, 2023
3c61dbc
add line back
bparrishMines Nov 8, 2023
7cf0d7e
Merge remote-tracking branch 'upstream/main' into webview-auth-request
JeroenWeener Nov 21, 2023
a21f29a
Update changelogs
JeroenWeener Nov 21, 2023
8f7603a
Merge main
JeroenWeener Dec 20, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'main' of github.com:flutter/packages into webview-auth-…
…request
  • Loading branch information
bparrishMines committed Nov 8, 2023
commit fc3289833060251b4fccade68294ac9706411ff4
4 changes: 4 additions & 0 deletions packages/webview_flutter/webview_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

* Adds support for HTTP basic authentication. See `NavigationDelegate(onReceivedHttpAuthRequest)`.

## 4.4.2

* Fixes `use_build_context_synchronously` lint violations in the example app.

## 4.4.1

* Exposes `JavaScriptLogLevel` from platform interface.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

* Adds support for `PlatformNavigationDelegate.setOnReceiveHttpAuthRequest`.

## 3.12.1

* Fixes `use_build_context_synchronously` lint violations in the example app.

## 3.12.0

* Adds support for `PlatformWebViewController.getUserAgent`.
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

* Adds support for `PlatformNavigationDelegate.setOnReceiveHttpAuthRequest`.

## 3.9.4

* Updates to Pigeon 13.

## 3.9.3

* Fixes `use_build_context_synchronously` lint violations in the example app.

## 3.9.2

* Fixes error caused by calling `WKWebViewConfiguration.limitsNavigationsToAppBoundDomains` on
Expand All @@ -22,7 +30,6 @@
## 3.7.4

* Adds pub topics to package metadata.

* Updates minimum supported SDK version to Flutter 3.7/Dart 2.19.

## 3.7.3
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ - (void)createWithInstance:(NSURLAuthenticationChallenge *)instance
NSAssert(!error, @"%@", error);
}];

[self.api createWithIdentifier:@([self.instanceManager addHostCreatedInstance:instance])
protectionSpaceIdentifier:@([self.instanceManager
identifierWithStrongReferenceForInstance:protectionSpace])
[self.api createWithIdentifier:[self.instanceManager addHostCreatedInstance:instance]
protectionSpaceIdentifier:[self.instanceManager
identifierWithStrongReferenceForInstance:protectionSpace]
completion:completion];
}
@end
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ - (instancetype)initWithBinaryMessenger:(id<FlutterBinaryMessenger>)binaryMessen
return self;
}

- (void)createWithUserWithIdentifier:(nonnull NSNumber *)identifier
- (void)createWithUserWithIdentifier:(NSInteger)identifier
user:(nonnull NSString *)user
password:(nonnull NSString *)password
persistence:(FWFNSUrlCredentialPersistence)persistence
Expand All @@ -36,7 +36,7 @@ - (void)createWithUserWithIdentifier:(nonnull NSNumber *)identifier
persistence:
FWFNativeNSURLCredentialPersistenceFromFWFNSUrlCredentialPersistence(
persistence)]
withIdentifier:identifier.longValue];
withIdentifier:identifier];
}

- (nullable NSURL *)credentialForIdentifier:(NSNumber *)identifier
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ - (void)createWithInstance:(NSURLProtectionSpace *)instance
authenticationMethod:(nullable NSString *)authenticationMethod
completion:(void (^)(FlutterError *_Nullable))completion {
if (![self.instanceManager containsInstance:instance]) {
[self.api createWithIdentifier:@([self.instanceManager addHostCreatedInstance:instance])
[self.api createWithIdentifier:[self.instanceManager addHostCreatedInstance:instance]
host:host
realm:realm
authenticationMethod:authenticationMethod
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.