Skip to content

Commit ec4cdb0

Browse files
committed
Moving fixes
1 parent 37b7a19 commit ec4cdb0

File tree

9 files changed

+22
-75
lines changed

9 files changed

+22
-75
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:http_parser':
20+
- changed-files:
21+
- any-glob-to-any-file: 'pkgs/http_parser/**'
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/http_parser/.github/workflows/test-package.yml renamed to .github/workflows/http_parser.yaml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
1-
name: Dart CI
1+
name: package:http_parser
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/http_parser.yaml'
10+
- 'pkgs/http_parser/**'
711
pull_request:
8-
branches: [ master ]
12+
paths:
13+
- '.github/workflows/http_parser.yaml'
14+
- 'pkgs/http_parser/**'
915
schedule:
1016
- cron: "0 0 * * 0"
1117

1218
env:
1319
PUB_ENVIRONMENT: bot.github
20+
1421
permissions: read-all
1522

1623
jobs:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ and the browser.
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) |
1717
| [http_client_conformance_tests](pkgs/http_client_conformance_tests/) | A library that tests whether implementations of package:http's `Client` class behave as expected. | |
18+
| [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) |
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) |
2021
| [web_socket](pkgs/web_socket/) | Any easy-to-use library for communicating with WebSockets that has multiple implementations. | [![pub package](https://img.shields.io/pub/v/web_socket.svg)](https://pub.dev/packages/web_socket) |

pkgs/http_parser/.github/dependabot.yaml

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

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

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

pkgs/http_parser/.github/workflows/publish.yaml

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

pkgs/http_parser/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 4.1.1
2+
3+
* Move to `dart-lang/http` monorepo.
4+
15
## 4.1.0
26

37
* `CaseInsensitiveMap`: added constructor `fromEntries`.

pkgs/http_parser/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
[![Build Status](https://github.com/dart-lang/http_parser/workflows/Dart%20CI/badge.svg)](https://github.com/dart-lang/http_parser/actions?query=workflow%3A"Dart+CI"+branch%3Amaster)
21
[![Pub Package](https://img.shields.io/pub/v/http_parser.svg)](https://pub.dartlang.org/packages/http_parser)
32
[![package publisher](https://img.shields.io/pub/publisher/http_parser.svg)](https://pub.dev/packages/http_parser/publisher)
43

pkgs/http_parser/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: http_parser
2-
version: 4.1.0
2+
version: 4.1.1
33
description: >-
44
A platform-independent package for parsing and serializing HTTP formats.
55
repository: https://github.com/dart-lang/http/tree/master/pkgs/http_parser

0 commit comments

Comments
 (0)