Moving issues
diff --git a/.github/labeler.yml b/.github/labeler.yml
index 3add1c1..335e94d 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -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/**'
diff --git a/pkgs/http_multi_server/.github/workflows/test-package.yml b/.github/workflows/http_multi_server.yaml
similarity index 82%
rename from pkgs/http_multi_server/.github/workflows/test-package.yml
rename to .github/workflows/http_multi_server.yaml
index 63ffbeb..71f6062 100644
--- a/pkgs/http_multi_server/.github/workflows/test-package.yml
+++ b/.github/workflows/http_multi_server.yaml
@@ -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
diff --git a/README.md b/README.md
index 31fc650..b106fec 100644
--- a/README.md
+++ b/README.md
@@ -16,6 +16,7 @@
| [http](pkgs/http/) | A composable, multi-platform, Future-based API for HTTP requests. | [](https://pub.dev/packages/http) |
| [http2](pkgs/http2/) | A HTTP/2 implementation in Dart. | [](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. | [](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. | [](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. | [](https://pub.dev/packages/ok_http) |
diff --git a/pkgs/http_multi_server/.github/dependabot.yml b/pkgs/http_multi_server/.github/dependabot.yml
deleted file mode 100644
index cde02ad..0000000
--- a/pkgs/http_multi_server/.github/dependabot.yml
+++ /dev/null
@@ -1,15 +0,0 @@
-# Dependabot configuration file.
-# See https://docs.github.com/en/code-security/dependabot/dependabot-version-updates
-version: 2
-
-updates:
- - package-ecosystem: github-actions
- directory: /
- schedule:
- interval: monthly
- labels:
- - autosubmit
- groups:
- github-actions:
- patterns:
- - "*"
diff --git a/pkgs/http_multi_server/.github/workflows/no-response.yml b/pkgs/http_multi_server/.github/workflows/no-response.yml
deleted file mode 100644
index ab1ac49..0000000
--- a/pkgs/http_multi_server/.github/workflows/no-response.yml
+++ /dev/null
@@ -1,37 +0,0 @@
-# A workflow to close issues where the author hasn't responded to a request for
-# more information; see https://github.com/actions/stale.
-
-name: No Response
-
-# Run as a daily cron.
-on:
- schedule:
- # Every day at 8am
- - cron: '0 8 * * *'
-
-# All permissions not specified are set to 'none'.
-permissions:
- issues: write
- pull-requests: write
-
-jobs:
- no-response:
- runs-on: ubuntu-latest
- if: ${{ github.repository_owner == 'dart-lang' }}
- steps:
- - uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e
- with:
- # Don't automatically mark inactive issues+PRs as stale.
- days-before-stale: -1
- # Close needs-info issues and PRs after 14 days of inactivity.
- days-before-close: 14
- stale-issue-label: "needs-info"
- close-issue-message: >
- Without additional information we're not able to resolve this issue.
- Feel free to add more info or respond to any questions above and we
- can reopen the case. Thanks for your contribution!
- stale-pr-label: "needs-info"
- close-pr-message: >
- Without additional information we're not able to resolve this PR.
- Feel free to add more info or respond to any questions above.
- Thanks for your contribution!
diff --git a/pkgs/http_multi_server/.github/workflows/publish.yaml b/pkgs/http_multi_server/.github/workflows/publish.yaml
deleted file mode 100644
index 27157a0..0000000
--- a/pkgs/http_multi_server/.github/workflows/publish.yaml
+++ /dev/null
@@ -1,17 +0,0 @@
-# A CI configuration to auto-publish pub packages.
-
-name: Publish
-
-on:
- pull_request:
- branches: [ master ]
- push:
- tags: [ 'v[0-9]+.[0-9]+.[0-9]+' ]
-
-jobs:
- publish:
- if: ${{ github.repository_owner == 'dart-lang' }}
- uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main
- permissions:
- id-token: write # Required for authentication using OIDC
- pull-requests: write # Required for writing the pull request note
diff --git a/pkgs/http_multi_server/CHANGELOG.md b/pkgs/http_multi_server/CHANGELOG.md
index 4ea18f2..2af6d1d 100644
--- a/pkgs/http_multi_server/CHANGELOG.md
+++ b/pkgs/http_multi_server/CHANGELOG.md
@@ -1,6 +1,7 @@
-## 3.2.2-wip
+## 3.2.2
* Require Dart 3.2
+* Move to `dart-lang/http` monorepo.
## 3.2.1
diff --git a/pkgs/http_multi_server/README.md b/pkgs/http_multi_server/README.md
index da27074..7d1d6bf 100644
--- a/pkgs/http_multi_server/README.md
+++ b/pkgs/http_multi_server/README.md
@@ -1,4 +1,4 @@
-[](https://github.com/dart-lang/http_multi_server/actions/workflows/test-package.yml)
+[](https://github.com/dart-lang/http/actions/workflows/http_multi_server.yaml)
[](https://pub.dev/packages/http_multi_server)
[](https://pub.dev/packages/http_multi_server/publisher)
diff --git a/pkgs/http_multi_server/pubspec.yaml b/pkgs/http_multi_server/pubspec.yaml
index 6a68091..c359aec 100644
--- a/pkgs/http_multi_server/pubspec.yaml
+++ b/pkgs/http_multi_server/pubspec.yaml
@@ -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