Skip to content

Commit ced6bc8

Browse files
committed
Moving fixes
1 parent ca023aa commit ced6bc8

File tree

11 files changed

+18
-115
lines changed

11 files changed

+18
-115
lines changed

.github/labeler.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
- changed-files:
1717
- any-glob-to-any-file: 'pkgs/http/**'
1818

19+
'package:http2':
20+
- changed-files:
21+
- any-glob-to-any-file: 'pkgs/http2/**'
22+
1923
'package:http_client_conformance_tests':
2024
- changed-files:
21-
- any-glob-to-any-file: 'pkgs/http_client_conformance_tests/**'
25+
- any-glob-to-any-file: 'pkgs/http_client_conformance_tests/**'

pkgs/http2/.github/workflows/test-package.yml renamed to .github/workflows/http2.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
name: Dart CI
22

33
on:
4-
# Run on PRs and pushes to the default branch.
54
push:
6-
branches: [ master ]
5+
branches:
6+
- main
7+
- master
8+
paths:
9+
- '.github/workflows/http2.yaml'
10+
- 'pkgs/http2/**'
711
pull_request:
8-
branches: [ master ]
12+
paths:
13+
- '.github/workflows/http2.yaml'
14+
- 'pkgs/http2/**'
915
schedule:
1016
- cron: "0 0 * * 0"
1117

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ and the browser.
1414
| [cupertino_http](pkgs/cupertino_http/) | A macOS/iOS Flutter plugin that provides access to the [Foundation URL Loading System](https://developer.apple.com/documentation/foundation/url_loading_system). | [![pub package](https://img.shields.io/pub/v/cupertino_http.svg)](https://pub.dev/packages/cupertino_http) |
1515
| [flutter_http_example](pkgs/flutter_http_example/) | An Flutter app that demonstrates how to configure and use `package:http`. ||
1616
| [http](pkgs/http/) | A composable, multi-platform, Future-based API for HTTP requests. | [![pub package](https://img.shields.io/pub/v/http.svg)](https://pub.dev/packages/http) |
17+
| [http2](pkgs/http2/) | A HTTP/2 implementation in Dart. | [![pub package](https://img.shields.io/pub/v/http2.svg)](https://pub.dev/packages/http2) |
1718
| [http_client_conformance_tests](pkgs/http_client_conformance_tests/) | A library that tests whether implementations of package:http's `Client` class behave as expected. | |
1819
| [http_profile](pkgs/http_profile/) | A library used by HTTP client authors to integrate with the DevTools Network View. | [![pub package](https://img.shields.io/pub/v/http_profile.svg)](https://pub.dev/packages/http_profile) |
1920
| [ok_http](pkgs/ok_http/) | An Android Flutter plugin that provides access to the [OkHttp](https://square.github.io/okhttp/) HTTP client and the OkHttp [WebSocket](https://square.github.io/okhttp/5.x/okhttp/okhttp3/-web-socket/index.html) API. | [![pub package](https://img.shields.io/pub/v/ok_http.svg)](https://pub.dev/packages/ok_http) |

pkgs/http2/.github/dependabot.yaml

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

pkgs/http2/.github/workflows/health.yaml

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

pkgs/http2/.github/workflows/no-response.yml

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

pkgs/http2/.github/workflows/post_summaries.yaml

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

pkgs/http2/.github/workflows/publish.yaml

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

pkgs/http2/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
## 2.3.1-wip
1+
## 2.3.1
22

33
- Require Dart 3.2
44
- Add topics to `pubspec.yaml`
5+
- Move to `dart-lang/http` monorepo.
56

67
## 2.3.0
78

pkgs/http2/README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
[![Dart CI](https://github.com/dart-lang/http2/actions/workflows/test-package.yml/badge.svg)](https://github.com/dart-lang/http2/actions/workflows/test-package.yml)
21
[![pub package](https://img.shields.io/pub/v/http2.svg)](https://pub.dev/packages/http2)
32
[![package publisher](https://img.shields.io/pub/publisher/http2.svg)](https://pub.dev/packages/http2/publisher)
43

@@ -54,11 +53,3 @@ Future<void> main() async {
5453
An example with better error handling is available [here][example].
5554

5655
See the [API docs][api] for more details.
57-
58-
## Features and bugs
59-
60-
Please file feature requests and bugs at the [issue tracker][tracker].
61-
62-
[tracker]: https://github.com/dart-lang/http2/issues
63-
[api]: https://pub.dev/documentation/http2/latest/
64-
[example]: https://github.com/dart-lang/http2/blob/master/example/display_headers.dart

0 commit comments

Comments
 (0)