Skip to content

Commit

Permalink
deps(Pub): Upgrade Flutter to version 3.10.5
Browse files Browse the repository at this point in the history
Update the minimum SDK version in the synthetic tests to 2.12.0, as it
is now required for null safety compatibility [1].
Additionally, adjust the upper boundary in the synthetic tests to align
with Dart 3.0.3, which is used in Flutter 3.10.x [2].

For more information, refer to the full changelog [3].

[1]: https://dart.dev/null-safety#dart-3-and-null-safety
[2]: https://docs.flutter.dev/release/archive
[3]: https://docs.flutter.dev/release/release-notes/release-notes-3.10.0

Signed-off-by: Marcel Bochtler <[email protected]>
  • Loading branch information
MarcelBochtler committed Jun 16, 2023
1 parent 9b8e9a0 commit a4330fe
Show file tree
Hide file tree
Showing 16 changed files with 2,335 additions and 2,891 deletions.
1 change: 1 addition & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@
path = plugins/package-managers/pub/src/funTest/assets/projects/external/dart-http
url = https://github.com/dart-lang/http.git
ignore = untracked
tag = 0.13.0
Submodule dart-http updated 47 files
+2 −2 .github/ISSUE_TEMPLATE/1-FAILING_CONNECTION.md
+1 −1 .github/ISSUE_TEMPLATE/3-FEATURE_REQUEST.md
+64 −0 .github/workflows/test-package.yml
+0 −3 .test_config
+0 −26 .travis.yml
+34 −0 CHANGELOG.md
+5 −5 README.md
+106 −0 analysis_options.yaml
+5 −4 example/main.dart
+29 −31 lib/http.dart
+1 −0 lib/io_client.dart
+51 −130 lib/src/base_client.dart
+29 −20 lib/src/base_request.dart
+8 −10 lib/src/base_response.dart
+6 −5 lib/src/boundary_characters.dart
+18 −35 lib/src/browser_client.dart
+1 −1 lib/src/byte_stream.dart
+35 −40 lib/src/client.dart
+2 −1 lib/src/exception.dart
+27 −26 lib/src/io_client.dart
+41 −0 lib/src/io_streamed_response.dart
+40 −39 lib/src/mock_client.dart
+27 −26 lib/src/multipart_file.dart
+3 −5 lib/src/multipart_file_io.dart
+1 −3 lib/src/multipart_file_stub.dart
+77 −86 lib/src/multipart_request.dart
+38 −26 lib/src/request.dart
+23 −22 lib/src/response.dart
+7 −5 lib/src/streamed_request.dart
+12 −12 lib/src/streamed_response.dart
+21 −83 lib/src/utils.dart
+7 −3 lib/testing.dart
+8 −8 pubspec.yaml
+13 −11 test/html/client_test.dart
+13 −14 test/html/streamed_request_test.dart
+110 −86 test/io/client_test.dart
+372 −497 test/io/http_test.dart
+9 −15 test/io/multipart_test.dart
+45 −49 test/io/request_test.dart
+29 −36 test/io/streamed_request_test.dart
+68 −77 test/io/utils.dart
+22 −36 test/mock_client_test.dart
+15 −7 test/multipart_test.dart
+63 −75 test/request_test.dart
+18 −20 test/response_test.dart
+1 −2 test/streamed_request_test.dart
+41 −44 test/utils.dart

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -338,4 +338,4 @@ packages:
source: hosted
version: "2.1.16"
sdks:
dart: ">=2.2.2 <3.0.0"
dart: ">=2.2.2 <4.0.0"
Loading

0 comments on commit a4330fe

Please sign in to comment.