Skip to content

Commit

Permalink
Moving issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Dec 6, 2024
1 parent ab30c76 commit c5b5f9c
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 80 deletions.
12 changes: 8 additions & 4 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,14 @@
- changed-files:
- any-glob-to-any-file: 'pkgs/http2/**'

'package:http_parser':
- changed-files:
- any-glob-to-any-file: 'pkgs/http_parser/**'

'package:http_client_conformance_tests':
- changed-files:
- any-glob-to-any-file: 'pkgs/http_client_conformance_tests/**'

'package:http_multi_server':
- changed-files:
- any-glob-to-any-file: 'pkgs/http_multi_server/**'

'package:http_parser':
- changed-files:
- any-glob-to-any-file: 'pkgs/http_parser/**'
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
name: Dart CI
name: package:http_multi_server

on:
# Run on PRs and pushes to the default branch.
push:
branches: [ master ]
branches:
- master
paths:
- '.github/workflows/http_multi_server.yaml'
- 'pkgs/http_multi_server/**'
pull_request:
branches: [ master ]
paths:
- '.github/workflows/http_multi_server.yaml'
- 'pkgs/http_multi_server/**'
schedule:
- cron: "0 0 * * 0"

defaults:
run:
working-directory: pkgs/http_multi_server/

env:
PUB_ENVIRONMENT: bot.github

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ and the browser.
| [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) |
| [http2](pkgs/http2/) | A HTTP/2 implementation in Dart. | [![pub package](https://img.shields.io/pub/v/http2.svg)](https://pub.dev/packages/http2) |
| [http_client_conformance_tests](pkgs/http_client_conformance_tests/) | A library that tests whether implementations of package:http's `Client` class behave as expected. | |
| [http_multi_server](pkgs/http_multi_server/) | A `dart:io` `HttpServer` wrapper that handles requests from multiple servers. | |
| [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) |
| [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) |
| [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) |
Expand Down
15 changes: 0 additions & 15 deletions pkgs/http_multi_server/.github/dependabot.yml

This file was deleted.

37 changes: 0 additions & 37 deletions pkgs/http_multi_server/.github/workflows/no-response.yml

This file was deleted.

17 changes: 0 additions & 17 deletions pkgs/http_multi_server/.github/workflows/publish.yaml

This file was deleted.

3 changes: 2 additions & 1 deletion pkgs/http_multi_server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 3.2.2-wip
## 3.2.2

* Require Dart 3.2
* Move to `dart-lang/http` monorepo.

## 3.2.1

Expand Down
2 changes: 1 addition & 1 deletion pkgs/http_multi_server/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![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)
[![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)
[![pub package](https://img.shields.io/pub/v/http_multi_server.svg)](https://pub.dev/packages/http_multi_server)
[![package publisher](https://img.shields.io/pub/publisher/http_multi_server.svg)](https://pub.dev/packages/http_multi_server/publisher)

Expand Down
2 changes: 1 addition & 1 deletion pkgs/http_multi_server/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: http_multi_server
version: 3.2.2-wip
version: 3.2.2
description: >-
A dart:io HttpServer wrapper that handles requests from multiple servers.
repository: https://github.com/dart-lang/http/tree/master/pkgs/http_multi_server
Expand Down

0 comments on commit c5b5f9c

Please sign in to comment.