File tree 5 files changed +18
-14
lines changed
5 files changed +18
-14
lines changed Original file line number Diff line number Diff line change 16
16
runs-on : ubuntu-latest
17
17
strategy :
18
18
matrix :
19
- sdk : [3.2.0 , dev]
19
+ sdk : [3.5 , dev]
20
20
steps :
21
21
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
22
22
- uses : dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
60
60
strategy :
61
61
matrix :
62
62
os : [ubuntu-latest, macos-latest, windows-latest]
63
- sdk : [3.2.0 , dev]
63
+ sdk : [3.5 , dev]
64
64
platform : [vm, chrome]
65
65
exclude :
66
66
# We only run Chrome tests on Linux. No need to run them
Original file line number Diff line number Diff line change 4
4
* Small fixes, such as ports in testing and enabling ` timeline_test.dart ` .
5
5
* When the keep alive manager runs into a timeout, it will finish the transport instead of closing
6
6
the connection, as defined in the gRPC spec.
7
+ * Upgrade to ` package:lints ` version 5.0.0 and Dart SDK version 3.5.0.
7
8
8
9
## 4.0.1
9
10
Original file line number Diff line number Diff line change @@ -9,12 +9,15 @@ analyzer:
9
9
10
10
linter :
11
11
rules :
12
- - always_declare_return_types
13
- - cancel_subscriptions
14
- - close_sinks
15
- - directives_ordering
16
- - omit_local_variable_types
17
- - prefer_final_locals
18
- - prefer_single_quotes
19
- - test_types_in_equals
20
- - prefer_relative_imports
12
+ # true
13
+ always_declare_return_types : true
14
+ cancel_subscriptions : true
15
+ close_sinks : true
16
+ directives_ordering : true
17
+ omit_local_variable_types : true
18
+ prefer_final_locals : true
19
+ prefer_single_quotes : true
20
+ test_types_in_equals : true
21
+ prefer_relative_imports : true
22
+ # false
23
+ unintended_html_in_doc_comment : false
Original file line number Diff line number Diff line change 16
16
/// Exports the minimum api to define server and client stubs.
17
17
///
18
18
/// Mainly intended to be imported by generated code.
19
- library service_api ;
19
+ library ;
20
20
21
21
export 'src/client/call.dart' show CallOptions, MetadataProvider;
22
22
export 'src/client/channel.dart' show ClientChannel;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ version: 4.0.2-wip
5
5
repository : https://github.com/grpc/grpc-dart
6
6
7
7
environment :
8
- sdk : ^3.2 .0
8
+ sdk : ^3.5 .0
9
9
10
10
dependencies :
11
11
async : ^2.5.0
@@ -21,7 +21,7 @@ dependencies:
21
21
dev_dependencies :
22
22
build_runner : ^2.0.0
23
23
build_test : ^2.0.0
24
- lints : ^4 .0.0
24
+ lints : ^5 .0.0
25
25
mockito : ^5.0.0
26
26
path : ^1.8.0
27
27
test : ^1.16.0
You can’t perform that action at this time.
0 commit comments