Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[http2, conformance_tests] update dependencies #1443

Merged
merged 2 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,7 @@
'package:http_parser':
- changed-files:
- any-glob-to-any-file: 'pkgs/http_parser/**'

'package:web_socket_conformance_tests':
- changed-files:
- any-glob-to-any-file: 'pkgs/web_socket_conformance_tests/**'
2 changes: 2 additions & 0 deletions pkgs/http2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 2.3.2-wip

## 2.3.1

- Require Dart 3.2
Expand Down
3 changes: 2 additions & 1 deletion pkgs/http2/lib/http2.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
///
/// A simple example on how to connect to a http/2 capable server and
/// requesting a resource is available at https://github.com/dart-lang/http2/blob/master/example/display_headers.dart.
library http2.http2;
library;

import 'transport.dart';

export 'transport.dart';
4 changes: 1 addition & 3 deletions pkgs/http2/lib/src/frames/frames.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library http2.src.frames;

import 'dart:async';
import 'dart:math' show max;
import 'dart:typed_data';
Expand All @@ -14,7 +12,7 @@ import '../hpack/hpack.dart';
import '../settings/settings.dart';
import '../sync_errors.dart';

part 'frame_reader.dart';
part 'frame_types.dart';
part 'frame_utils.dart';
part 'frame_reader.dart';
part 'frame_writer.dart';
4 changes: 2 additions & 2 deletions pkgs/http2/lib/src/hpack/hpack.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
// BSD-style license that can be found in the LICENSE file.

/// Implements a [HPackContext] for encoding/decoding headers according to the
/// HPACK specificaiton. See here for more information:
/// HPACK specification. See here for more information:
/// https://tools.ietf.org/html/draft-ietf-httpbis-header-compression-10
library http2.hpack;
library;

import 'dart:convert' show ascii;
import 'dart:typed_data';
Expand Down
4 changes: 2 additions & 2 deletions pkgs/http2/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: http2
version: 2.3.1
version: 2.3.2-wip
description: A HTTP/2 implementation in Dart.
repository: https://github.com/dart-lang/http/tree/master/pkgs/http2

Expand All @@ -13,6 +13,6 @@ environment:

dev_dependencies:
build_runner: ^2.3.0
dart_flutter_team_lints: ^2.0.0
dart_flutter_team_lints: ^3.0.0
mockito: ^5.3.2
test: ^1.21.4
2 changes: 1 addition & 1 deletion pkgs/http_client_conformance_tests/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ environment:

dependencies:
async: ^2.8.2
dart_style: ^2.3.7
dart_style: '>=2.3.7 <4.0.0'
brianquinlan marked this conversation as resolved.
Show resolved Hide resolved
http: ^1.2.0
stream_channel: ^2.1.1
test: ^1.21.2
Expand Down
2 changes: 1 addition & 1 deletion pkgs/web_socket_conformance_tests/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ environment:
dependencies:
async: ^2.11.0
crypto: ^3.0.3
dart_style: ^2.3.7
dart_style: '>2.3.7 <4.0.0'
stream_channel: ^2.1.2
test: ^1.24.0
web_socket: ^0.1.0
Expand Down
Loading