File tree 10 files changed +19
-34
lines changed 10 files changed +19
-34
lines changed Original file line number Diff line number Diff line change 29
29
strategy :
30
30
fail-fast : false
31
31
matrix :
32
- sdk : [3.0.0, dev]
32
+ sdk : [dev]
33
33
steps :
34
34
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
35
35
- uses : dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
62
62
matrix :
63
63
# Add macos-latest and/or windows-latest if relevant for this package.
64
64
os : [ubuntu-latest]
65
- sdk : [stable, beta ]
65
+ sdk : [3.4, dev ]
66
66
steps :
67
67
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
68
68
- uses : dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ class Config {
82
82
83
83
/// Constructs a config by parsing the three sources.
84
84
///
85
- /// If provided, [commandLineDefines] must be a list of ' <key>=<value>' .
85
+ /// If provided, [commandLineDefines] must be a list of ` <key>=<value>` .
86
86
///
87
87
/// If provided, [workingDirectory] is used to resolves paths inside
88
88
/// [commandLineDefines] .
@@ -120,7 +120,7 @@ class Config {
120
120
121
121
/// Constructs a config by parsing the three sources.
122
122
///
123
- /// If provided, [commandLineDefines] must be a list of ' <key>=<value>' .
123
+ /// If provided, [commandLineDefines] must be a list of ` <key>=<value>` .
124
124
///
125
125
/// If provided, [workingDirectory] is used to resolves paths inside
126
126
/// [commandLineDefines] .
Original file line number Diff line number Diff line change @@ -60,8 +60,8 @@ final class Extension {
60
60
/// * [bool] (`true` or `false` ),
61
61
/// * [String] ,
62
62
/// * [num] ([int] or [double] ),
63
- /// * [ List<Object?>] , and,
64
- /// * [ Map<String, Object?>] .
63
+ /// * ` List<Object?>` , and,
64
+ /// * ` Map<String, Object?>` .
65
65
final Map <String , Object ?> config;
66
66
67
67
Extension ._({
Original file line number Diff line number Diff line change @@ -38,8 +38,8 @@ import 'package:yaml/yaml.dart'
38
38
/// * [bool] (`true` or `false` ),
39
39
/// * [String] ,
40
40
/// * [num] ([int] or [double] ),
41
- /// * [ List<Object?>] , and,
42
- /// * [ Map<String, Object?>] .
41
+ /// * ` List<Object?>` , and,
42
+ /// * ` Map<String, Object?>` .
43
43
Map <String , Object ?> parseYamlFromConfigFile (String yamlString) {
44
44
final visited = < YamlNode > {};
45
45
Object ? toPlainType (YamlNode n) {
Original file line number Diff line number Diff line change @@ -348,7 +348,6 @@ class BoundMultipartStream {
348
348
default :
349
349
// Should be unreachable.
350
350
assert (false );
351
- break ;
352
351
}
353
352
354
353
// Move to the next byte.
Original file line number Diff line number Diff line change
1
+ ## 2.0.4-wip
2
+
3
+ * Require Dart 3.4
4
+
1
5
## 2.0.3
2
6
3
7
* Require ` package:http ` v1.0.0
Original file line number Diff line number Diff line change @@ -10,34 +10,14 @@ analyzer:
10
10
11
11
linter :
12
12
rules :
13
- - always_declare_return_types
14
- - avoid_catching_errors
15
- - avoid_dynamic_calls
16
13
- avoid_private_typedef_functions
17
14
- avoid_unused_constructor_parameters
18
15
- avoid_void_async
19
16
- cancel_subscriptions
20
- - directives_ordering
21
17
- literal_only_boolean_expressions
22
18
- no_adjacent_strings_in_list
23
19
- no_runtimeType_toString
24
- - omit_local_variable_types
25
- - only_throw_errors
26
20
- package_api_docs
27
- - prefer_asserts_in_initializer_lists
28
- - prefer_const_constructors
29
21
- prefer_const_declarations
30
- - prefer_relative_imports
31
- - prefer_single_quotes
32
- - sort_pub_dependencies
33
- - test_types_in_equals
34
- - throw_in_finally
35
- - type_annotate_public_apis
36
- - unawaited_futures
37
22
- unnecessary_await_in_return
38
- - unnecessary_lambdas
39
- - unnecessary_parenthesis
40
- - unnecessary_statements
41
- - use_is_even_rather_than_modulo
42
23
- use_string_buffers
43
- - use_super_parameters
Original file line number Diff line number Diff line change 1
1
name : oauth2
2
- version : 2.0.3
2
+ version : 2.0.4-wip
3
3
description : >-
4
4
A client library for authenticating with a remote service via OAuth2 on
5
5
behalf of a user, and making authorized HTTP requests with the user's
6
6
OAuth2 credentials.
7
7
repository : https://github.com/dart-lang/tools/tree/main/pkgs/oauth2
8
8
9
9
environment :
10
- sdk : ^3.0 .0
10
+ sdk : ^3.4 .0
11
11
12
12
dependencies :
13
13
collection : ^1.15.0
@@ -16,5 +16,5 @@ dependencies:
16
16
http_parser : ^4.0.0
17
17
18
18
dev_dependencies :
19
- dart_flutter_team_lints : ^2 .0.0
19
+ dart_flutter_team_lints : ^3 .0.0
20
20
test : ^1.16.0
Original file line number Diff line number Diff line change
1
+ ## 2.1.3-wip
2
+
1
3
## 2.1.2
2
4
3
5
* Require Dart 3.3.0
Original file line number Diff line number Diff line change 1
1
name : source_map_stack_trace
2
- version : 2.1.2
2
+ version : 2.1.3-wip
3
3
description : A package for applying source maps to stack traces.
4
4
repository : https://github.com/dart-lang/tools/tree/main/pkgs/source_map_stack_trace
5
5
@@ -12,6 +12,6 @@ dependencies:
12
12
stack_trace : ^1.10.0
13
13
14
14
dev_dependencies :
15
- dart_flutter_team_lints : ^2 .0.0
15
+ dart_flutter_team_lints : ^3 .0.0
16
16
source_span : ^1.8.0
17
17
test : ^1.16.0
You can’t perform that action at this time.
0 commit comments