Commit 531d3e5 1 parent f0bcf02 commit 531d3e5 Copy full SHA for 531d3e5
File tree 8 files changed +15
-10
lines changed
http_client_conformance_tests
web_socket_conformance_tests
8 files changed +15
-10
lines changed Original file line number Diff line number Diff line change 31
31
' package:http_parser ' :
32
32
- changed-files :
33
33
- any-glob-to-any-file : ' pkgs/http_parser/**'
34
+
35
+ ' package:web_socket_conformance_tests ' :
36
+ - changed-files :
37
+ - any-glob-to-any-file : ' pkgs/web_socket_conformance_tests/**'
Original file line number Diff line number Diff line change
1
+ ## 2.3.2-wip
2
+
1
3
## 2.3.1
2
4
3
5
- Require Dart 3.2
Original file line number Diff line number Diff line change 42
42
///
43
43
/// A simple example on how to connect to a http/2 capable server and
44
44
/// requesting a resource is available at https://github.com/dart-lang/http2/blob/master/example/display_headers.dart.
45
- library http2.http2 ;
45
+ library ;
46
46
47
47
import 'transport.dart' ;
48
+
48
49
export 'transport.dart' ;
Original file line number Diff line number Diff line change 2
2
// for details. All rights reserved. Use of this source code is governed by a
3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
- library http2.src.frames;
6
-
7
5
import 'dart:async' ;
8
6
import 'dart:math' show max;
9
7
import 'dart:typed_data' ;
@@ -14,7 +12,7 @@ import '../hpack/hpack.dart';
14
12
import '../settings/settings.dart' ;
15
13
import '../sync_errors.dart' ;
16
14
15
+ part 'frame_reader.dart' ;
17
16
part 'frame_types.dart' ;
18
17
part 'frame_utils.dart' ;
19
- part 'frame_reader.dart' ;
20
18
part 'frame_writer.dart' ;
Original file line number Diff line number Diff line change 3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
5
/// Implements a [HPackContext] for encoding/decoding headers according to the
6
- /// HPACK specificaiton . See here for more information:
6
+ /// HPACK specification . See here for more information:
7
7
/// https://tools.ietf.org/html/draft-ietf-httpbis-header-compression-10
8
- library http2.hpack ;
8
+ library ;
9
9
10
10
import 'dart:convert' show ascii;
11
11
import 'dart:typed_data' ;
Original file line number Diff line number Diff line change 1
1
name : http2
2
- version : 2.3.1
2
+ version : 2.3.2-wip
3
3
description : A HTTP/2 implementation in Dart.
4
4
repository : https://github.com/dart-lang/http/tree/master/pkgs/http2
5
5
@@ -13,6 +13,6 @@ environment:
13
13
14
14
dev_dependencies :
15
15
build_runner : ^2.3.0
16
- dart_flutter_team_lints : ^2 .0.0
16
+ dart_flutter_team_lints : ^3 .0.0
17
17
mockito : ^5.3.2
18
18
test : ^1.21.4
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ environment:
11
11
12
12
dependencies :
13
13
async : ^2.8.2
14
- dart_style : ^ 2.3.7
14
+ dart_style : ' >= 2.3.7 <4.0.0 '
15
15
http : ^1.2.0
16
16
stream_channel : ^2.1.1
17
17
test : ^1.21.2
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ environment:
12
12
dependencies :
13
13
async : ^2.11.0
14
14
crypto : ^3.0.3
15
- dart_style : ^ 2.3.7
15
+ dart_style : ' > 2.3.7 <4.0.0 '
16
16
stream_channel : ^2.1.2
17
17
test : ^1.24.0
18
18
web_socket : ^0.1.0
You can’t perform that action at this time.
0 commit comments