Skip to content

Commit f6640bb

Browse files
authored
build: bump Flutter to 3.35.3 (#612)
* build: bump Flutter to 3.35.3 * fix custom_lint and remove cocoapods * build widget_catalog with spm
1 parent 36115a1 commit f6640bb

File tree

36 files changed

+335
-2215
lines changed

36 files changed

+335
-2215
lines changed

.cspell/framework-words.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ ltrb
2929
LTWH
3030
mockito
3131
mocktail
32+
nonobvious
3233
nullsafety
3334
pbcopy
3435
Podfile

.fvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"flutter": "3.32.1"
2+
"flutter": "3.35.3"
33
}

.github/workflows/pod-install-for-dependabot.yaml

Lines changed: 0 additions & 114 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
}
6060
},
6161
"dart.flutterGenerateLocalizationsOnSave": "all",
62-
"dart.flutterSdkPath": ".fvm/versions/3.32.1",
62+
"dart.flutterSdkPath": ".fvm/versions/3.35.3",
6363
"dart.debugExternalPackageLibraries": false,
6464
"dart.debugSdkLibraries": false,
6565
"dart.experimentalRefactors": true,

codecov.yml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ codecov:
77
coverage:
88
precision: 2
99
round: down
10-
range: "70...100"
10+
range: "60...80"
1111

1212
status:
1313
project:
1414
default:
1515
target: auto
1616
threshold: 0%
17-
paths:
18-
- "lib"
17+
only_pulls: true
1918
patch: # for pull requests
2019
default:
2120
target: 80%
2221
threshold: 0%
22+
only_pulls: true
2323
paths:
24-
- "lib"
24+
- "packages/**/lib/"
2525

2626
parsers:
2727
gcov:
@@ -33,22 +33,24 @@ parsers:
3333

3434
# excluding generated files and examples from the coverage report
3535
ignore:
36-
- "**/gen"
37-
- "**/stub"
38-
- "**/*.g.dart"
36+
- "**/gen/**"
37+
- "**/stub/**"
3938
- "**/*.freezed.dart"
39+
- "**/*.g.dart"
4040

4141
comment: # See: https://docs.codecov.io/docs/pull-request-comments
42-
layout: "reach, diff, flags, tree, header, footer"
42+
layout: "header, diff, files, flags, components, footer"
4343
behavior: default
44-
require_changes: false
44+
require_changes: true
4545

4646
component_management:
4747
default_rules:
4848
paths:
4949
- "packages/*/lib/**"
50-
- "!**/*.g.dart"
50+
- "!**/stub/**"
51+
- "!**/gen/**"
5152
- "!**/*.freezed.dart"
53+
- "!**/*.g.dart"
5254
individual_components:
5355
- component_id: flutter_app
5456
paths:

docs/CONTRIBUTING.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# for Contributor
2+
3+
## Setup
4+
5+
Get dependencies.
6+
7+
```
8+
make
9+
```

packages/convenient_widgets/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ publish_to: "none"
44
version: 1.0.0
55

66
environment:
7-
sdk: ^3.8.0
7+
sdk: ^3.9.2
88

99
resolution: workspace
1010

@@ -15,9 +15,9 @@ dependencies:
1515
simple_logger: ^1.8.0+1
1616

1717
dev_dependencies:
18-
altive_lints: ^1.21.0
18+
altive_lints: ^1.23.0
1919
build_runner: ^2.4.15
20-
custom_lint: ^0.7.5
20+
custom_lint: ^0.8.0
2121
flutter_gen_runner: ^5.10.0
2222
flutter_test:
2323
sdk: flutter

packages/flutter_app/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>12.0</string>
24+
<string>13.0</string>
2525
</dict>
2626
</plist>
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug-dev.xcconfig"
21
#include "Debug.xcconfig"
32
#include "dev.xcconfig"
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug-prod.xcconfig"
21
#include "Debug.xcconfig"
32
#include "prod.xcconfig"

0 commit comments

Comments
 (0)