Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
8bca259
Partially implemented ssl error decision
Colman Oct 3, 2024
32b3c83
Partially implemented ssl error decision
Colman Oct 3, 2024
f24ded9
Partially implemented ssl error decision
Colman Oct 7, 2024
c44a50d
Partially implemented ssl error decision
Colman Oct 7, 2024
b1ed63e
Partially implemented ssl error decision
Colman Oct 7, 2024
90b1457
Partially implemented ssl error decision
Colman Oct 7, 2024
de9acf9
Partially implemented ssl error decision
Colman Oct 7, 2024
fdaa89f
Partially implemented ssl error decision
Colman Oct 7, 2024
0458aba
Partially implemented ssl error decision
Colman Oct 7, 2024
e2cb3a1
Partially implemented ssl error decision
Colman Oct 7, 2024
ca81379
Partially implemented ssl error decision
Colman Oct 7, 2024
5a94528
Partially implemented ssl error decision
Colman Oct 8, 2024
ae64dae
Partially implemented ssl error decision
Colman Oct 8, 2024
a06c18c
Partially implemented ssl error decision
Colman Oct 9, 2024
7634b1f
Partially implemented ssl error decision
Colman Oct 9, 2024
c9edcdc
Partially implemented ssl error decision
Colman Oct 9, 2024
81d045a
Partially implemented ssl error decision
Colman Oct 11, 2024
a81420d
Partially implemented ssl error decision
Colman Oct 15, 2024
384e94c
Partially implemented ssl error decision
Colman Oct 15, 2024
55fb7ef
Partially implemented ssl error decision
Colman Oct 16, 2024
8cd4127
Partially implemented ssl error decision
Colman Oct 16, 2024
515580a
Partially implemented ssl error decision
Colman Oct 16, 2024
97d26ea
Partially implemented ssl error decision
Colman Oct 16, 2024
3a9f7c6
Partially implemented ssl error decision
Colman Oct 16, 2024
464dba3
Partially implemented ssl error decision
Colman Oct 16, 2024
e8a591e
Partially implemented ssl error decision
Colman Oct 16, 2024
1f396ca
Partially implemented ssl error decision
Colman Oct 16, 2024
ffe9f00
Partially implemented ssl error decision
Colman Oct 16, 2024
7a3b559
Partially implemented ssl error decision
Colman Oct 16, 2024
ffe6662
Partially implemented ssl error decision
Colman Oct 16, 2024
4988352
Partially implemented ssl error test
Colman Oct 16, 2024
9333d5d
Partially implemented ssl error test
Colman Oct 16, 2024
ac544c9
Partially implemented ssl error decision
Colman Oct 17, 2024
afe3943
Partially implemented ssl error decision
Colman Oct 17, 2024
998e334
Partially implemented ssl error decision
Colman Oct 17, 2024
941915c
Partially implemented ssl error decision
Colman Oct 17, 2024
7ef9309
Fixed versions
Colman Oct 17, 2024
b62371c
Fixed versions
Colman Oct 17, 2024
b0735a7
Added test
Colman Oct 17, 2024
7a10765
Merge branch 'main' into add-an-option-to-bypass-ssl-checks
Colman Oct 18, 2024
64266f6
Fixed change logs
Colman Oct 18, 2024
91cdee9
Added path based dependency overrides
Colman Oct 18, 2024
ae9162d
Added Dart unit tests to the Android package
Colman Oct 18, 2024
f2e0b64
Formatted files
Colman Oct 18, 2024
af4a93a
Fixed switch statements
Colman Oct 18, 2024
0fffc68
Merge branch 'main' into add-an-option-to-bypass-ssl-checks
Colman Oct 31, 2024
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' into add-an-option-to-bypass-ssl-checks
# Conflicts:
#	packages/webview_flutter/webview_flutter/CHANGELOG.md
#	packages/webview_flutter/webview_flutter_android/CHANGELOG.md
#	packages/webview_flutter/webview_flutter_android/pubspec.yaml
#	packages/webview_flutter/webview_flutter_wkwebview/CHANGELOG.md
#	packages/webview_flutter/webview_flutter_wkwebview/lib/src/foundation/foundation.dart
  • Loading branch information
Colman committed Oct 18, 2024
commit 7a10765a06456e174997eaad8b4fd05bef742e38
6 changes: 5 additions & 1 deletion packages/webview_flutter/webview_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## 4.11.0

* Adds `onSslError` callback to `NavigationDelegate` to catch SSL errors.

## 4.10.0

* Implemented onSslError
* Updates minimum supported `webview_flutter_android` from 3.16.0 to 4.0.0.

## 4.9.0

Expand Down
16 changes: 15 additions & 1 deletion packages/webview_flutter/webview_flutter_android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
## 3.17.0
## 4.1.0

* Implements onReceivedSslError

## 4.0.0

* Bumps androidx.webkit:webkit from 1.12.0 to 1.12.1.
* **Breaking Change** Bumps Android `minSdkVersion` from 19 to 21.

## 3.16.9

* Updates Java compatibility version to 11.
* Updates minimum supported SDK version to Flutter 3.24/Dart 3.5.

## 3.16.8

* Bumps androidx.webkit:webkit from 1.11.0 to 1.12.0.

## 3.16.7

* Bumps androidx.annotation:annotation from 1.8.1 to 1.8.2.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: webview_flutter_android
description: A Flutter plugin that provides a WebView widget on Android.
repository: https://github.com/flutter/packages/tree/main/packages/webview_flutter/webview_flutter_android
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+webview%22
version: 3.17.0
version: 4.1.0

environment:
sdk: ^3.5.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## 3.17.0

* Implement handling for the NSURLAuthenticationMethodServerTrust authentication method.

## 3.16.0

* Implement handling for the NSURLAuthenticationMethodServerTrust authentication method
* Supports NTLM for authentication.

## 3.15.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,19 @@ class NSUrlProtectionSpace extends NSObject {

/// The SSL certificate DER (only applicable if the authentication method is server trust)
final Uint8List? x509CertificateDer;

@override
NSUrlProtectionSpace copy() {
return NSUrlProtectionSpace.detached(
host: host,
authenticationMethod: authenticationMethod,
protocol: protocol,
port: port,
realm: realm,
sslErrorType: sslErrorType,
x509CertificateDer: x509CertificateDer == null ? null : Uint8List.fromList(x509CertificateDer!.toList()),
);
}
}

/// The authentication method used by the receiver.
Expand All @@ -516,6 +529,9 @@ class NSUrlAuthenticationMethod {
/// Use HTTP digest authentication for this protection space.
static const String httpDigest = 'NSURLAuthenticationMethodHTTPDigest';

/// Use NTLM authentication for this protection space.
static const String httpNtlm = 'NSURLAuthenticationMethodNTLM';

/// Use HTTP digest authentication for this protection space.
static const String serverTrust = 'NSURLAuthenticationMethodServerTrust';
}
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.