Skip to content

Commit 531d3e5

Browse files
authored
[http2, conformance_tests] update dependencies (#1443)
1 parent f0bcf02 commit 531d3e5

File tree

8 files changed

+15
-10
lines changed

8 files changed

+15
-10
lines changed

.github/labeler.yml

+4
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,7 @@
3131
'package:http_parser':
3232
- changed-files:
3333
- 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/**'

pkgs/http2/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 2.3.2-wip
2+
13
## 2.3.1
24

35
- Require Dart 3.2

pkgs/http2/lib/http2.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@
4242
///
4343
/// A simple example on how to connect to a http/2 capable server and
4444
/// requesting a resource is available at https://github.com/dart-lang/http2/blob/master/example/display_headers.dart.
45-
library http2.http2;
45+
library;
4646

4747
import 'transport.dart';
48+
4849
export 'transport.dart';

pkgs/http2/lib/src/frames/frames.dart

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
library http2.src.frames;
6-
75
import 'dart:async';
86
import 'dart:math' show max;
97
import 'dart:typed_data';
@@ -14,7 +12,7 @@ import '../hpack/hpack.dart';
1412
import '../settings/settings.dart';
1513
import '../sync_errors.dart';
1614

15+
part 'frame_reader.dart';
1716
part 'frame_types.dart';
1817
part 'frame_utils.dart';
19-
part 'frame_reader.dart';
2018
part 'frame_writer.dart';

pkgs/http2/lib/src/hpack/hpack.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
/// 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:
77
/// https://tools.ietf.org/html/draft-ietf-httpbis-header-compression-10
8-
library http2.hpack;
8+
library;
99

1010
import 'dart:convert' show ascii;
1111
import 'dart:typed_data';

pkgs/http2/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: http2
2-
version: 2.3.1
2+
version: 2.3.2-wip
33
description: A HTTP/2 implementation in Dart.
44
repository: https://github.com/dart-lang/http/tree/master/pkgs/http2
55

@@ -13,6 +13,6 @@ environment:
1313

1414
dev_dependencies:
1515
build_runner: ^2.3.0
16-
dart_flutter_team_lints: ^2.0.0
16+
dart_flutter_team_lints: ^3.0.0
1717
mockito: ^5.3.2
1818
test: ^1.21.4

pkgs/http_client_conformance_tests/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ environment:
1111

1212
dependencies:
1313
async: ^2.8.2
14-
dart_style: ^2.3.7
14+
dart_style: '>=2.3.7 <4.0.0'
1515
http: ^1.2.0
1616
stream_channel: ^2.1.1
1717
test: ^1.21.2

pkgs/web_socket_conformance_tests/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ environment:
1212
dependencies:
1313
async: ^2.11.0
1414
crypto: ^3.0.3
15-
dart_style: ^2.3.7
15+
dart_style: '>2.3.7 <4.0.0'
1616
stream_channel: ^2.1.2
1717
test: ^1.24.0
1818
web_socket: ^0.1.0

0 commit comments

Comments
 (0)