Skip to content

Commit c5b5f9c

Browse files
committed
Moving issues
1 parent ab30c76 commit c5b5f9c

File tree

9 files changed

+26
-80
lines changed

9 files changed

+26
-80
lines changed

.github/labeler.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,14 @@
2020
- changed-files:
2121
- any-glob-to-any-file: 'pkgs/http2/**'
2222

23-
'package:http_parser':
24-
- changed-files:
25-
- any-glob-to-any-file: 'pkgs/http_parser/**'
26-
2723
'package:http_client_conformance_tests':
2824
- changed-files:
2925
- any-glob-to-any-file: 'pkgs/http_client_conformance_tests/**'
26+
27+
'package:http_multi_server':
28+
- changed-files:
29+
- any-glob-to-any-file: 'pkgs/http_multi_server/**'
30+
31+
'package:http_parser':
32+
- changed-files:
33+
- any-glob-to-any-file: 'pkgs/http_parser/**'

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

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
1-
name: Dart CI
1+
name: package:http_multi_server
22

33
on:
4-
# Run on PRs and pushes to the default branch.
54
push:
6-
branches: [ master ]
5+
branches:
6+
- master
7+
paths:
8+
- '.github/workflows/http_multi_server.yaml'
9+
- 'pkgs/http_multi_server/**'
710
pull_request:
8-
branches: [ master ]
11+
paths:
12+
- '.github/workflows/http_multi_server.yaml'
13+
- 'pkgs/http_multi_server/**'
914
schedule:
1015
- cron: "0 0 * * 0"
1116

17+
defaults:
18+
run:
19+
working-directory: pkgs/http_multi_server/
20+
1221
env:
1322
PUB_ENVIRONMENT: bot.github
1423

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ and the browser.
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) |
1717
| [http2](pkgs/http2/) | A HTTP/2 implementation in Dart. | [![pub package](https://img.shields.io/pub/v/http2.svg)](https://pub.dev/packages/http2) |
1818
| [http_client_conformance_tests](pkgs/http_client_conformance_tests/) | A library that tests whether implementations of package:http's `Client` class behave as expected. | |
19+
| [http_multi_server](pkgs/http_multi_server/) | A `dart:io` `HttpServer` wrapper that handles requests from multiple servers. | |
1920
| [http_parser](pkgs/http_parser/) | A platform-independent package for parsing and serializing HTTP formats. | [![pub package](https://img.shields.io/pub/v/http_parser.svg)](https://pub.dev/packages/http_parser) |
2021
| [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) |
2122
| [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/http_multi_server/.github/dependabot.yml

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

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

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

pkgs/http_multi_server/.github/workflows/publish.yaml

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

pkgs/http_multi_server/CHANGELOG.md

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

33
* Require Dart 3.2
4+
* Move to `dart-lang/http` monorepo.
45

56
## 3.2.1
67

pkgs/http_multi_server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Dart CI](https://github.com/dart-lang/http_multi_server/actions/workflows/test-package.yml/badge.svg)](https://github.com/dart-lang/http_multi_server/actions/workflows/test-package.yml)
1+
[![Dart CI](https://github.com/dart-lang/http/actions/workflows/http_multi_server.yaml/badge.svg)](https://github.com/dart-lang/http/actions/workflows/http_multi_server.yaml)
22
[![pub package](https://img.shields.io/pub/v/http_multi_server.svg)](https://pub.dev/packages/http_multi_server)
33
[![package publisher](https://img.shields.io/pub/publisher/http_multi_server.svg)](https://pub.dev/packages/http_multi_server/publisher)
44

pkgs/http_multi_server/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: http_multi_server
2-
version: 3.2.2-wip
2+
version: 3.2.2
33
description: >-
44
A dart:io HttpServer wrapper that handles requests from multiple servers.
55
repository: https://github.com/dart-lang/http/tree/master/pkgs/http_multi_server

0 commit comments

Comments
 (0)