Skip to content

Commit ec77e97

Browse files
authored
refactor(dart_frog_web_socket): update to Dart 3 and Very Good Analysis 5 (#686)
* refactor(dart_fro_web_socket): update to Dart 3 and Very Good Analysis 5 * remove default
1 parent 2ad1f1a commit ec77e97

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include: package:very_good_analysis/analysis_options.4.0.0.yaml
1+
include: package:very_good_analysis/analysis_options.5.0.0.yaml

packages/dart_frog_web_socket/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ issue_tracker: https://github.com/VeryGoodOpenSource/dart_frog/issues
77
documentation: https://dartfrog.vgv.dev/docs/overview
88

99
environment:
10-
sdk: ">=2.19.0 <3.0.0"
10+
sdk: ">=3.0.0 <4.0.0"
1111

1212
dependencies:
1313
dart_frog: ^0.3.0
1414
shelf_web_socket: ^1.0.3
1515
web_socket_channel: ^2.0.0
1616

1717
dev_dependencies:
18-
http: ^0.13.5
18+
http: ^1.0.0
1919
mocktail: ^0.3.0
2020
test: ^1.19.2
21-
very_good_analysis: ^4.0.0
21+
very_good_analysis: ^5.0.0

packages/dart_frog_web_socket/test/src/web_socket_handler_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ void main() {
118118
'localhost',
119119
0,
120120
);
121-
url = Uri.http('localhost:${server.port}', '');
121+
url = Uri.http('localhost:${server.port}');
122122
});
123123

124124
tearDown(() => server.close());
@@ -164,7 +164,7 @@ void main() {
164164
'localhost',
165165
0,
166166
);
167-
url = Uri.http('localhost:${server.port}', '');
167+
url = Uri.http('localhost:${server.port}');
168168
});
169169

170170
tearDown(() => server.close());

0 commit comments

Comments
 (0)