Skip to content

Commit 1312034

Browse files
committed
Moving fixes
1 parent 7bd6dfc commit 1312034

File tree

9 files changed

+24
-76
lines changed

9 files changed

+24
-76
lines changed

.github/labeler.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,7 @@
2727
'package:http_client_conformance_tests':
2828
- changed-files:
2929
- any-glob-to-any-file: 'pkgs/http_client_conformance_tests/**'
30+
31+
'package:web_socket_channel':
32+
- changed-files:
33+
- any-glob-to-any-file: 'pkgs/web_socket_channel/**'

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

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
1-
name: CI
1+
name: package:web_socket_channel
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/web_socket_channel.yaml'
9+
- 'pkgs/web_socket_channel/**'
710
pull_request:
8-
branches: [ master ]
11+
paths:
12+
- '.github/workflows/web_socket_channel.yaml'
13+
- 'pkgs/web_socket_channel/**'
914
schedule:
1015
- cron: "0 0 * * 0"
1116

17+
defaults:
18+
run:
19+
working-directory: pkgs/web_socket_channel/
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
@@ -20,6 +20,7 @@ and the browser.
2020
| [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) |
2121
| [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) |
2222
| [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) |
23+
| [web_socket_channel](pkgs/web_socket_channel/) | StreamChannel wrappers for WebSockets. Provides a cross-platform WebSocketChannel API. | [![package issues](https://img.shields.io/badge/package:web_socket_channel-4774bc)](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aweb_socket_channel) | [![pub package](https://img.shields.io/pub/v/web_socket_channel.svg)](https://pub.dev/packages/web_socket_channel) |
2324
| [web_socket_conformance_tests](pkgs/web_socket_conformance_tests/) | A library that tests whether implementations of `package:web_socket`'s `WebSocket` class behave as expected. | |
2425

2526
## Contributing

pkgs/web_socket_channel/.github/dependabot.yml

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

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

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

pkgs/web_socket_channel/.github/workflows/publish.yaml

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

pkgs/web_socket_channel/CHANGELOG.md

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

37
- Remove unnecessary `dependency_overrides`.

pkgs/web_socket_channel/README.md

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

@@ -70,4 +69,4 @@ WebSocket protocol. The [`WebSocketChannel.connect` constructor][connect]
7069
connects to a listening server using the appropriate implementation for the
7170
platform.
7271

73-
[connect]: https://pub.dev/documentation/web_socket_channel/latest/web_socket_channel/WebSocketChannel/WebSocketChannel.connect.html
72+
[connect]: https://pub.dev/documentation/web_socket_channel/latest/web_socket_channel/WebSocketChannel/WebSocketChannel.connect.html

pkgs/web_socket_channel/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: web_socket_channel
2-
version: 3.0.1
2+
version: 3.0.2
33
description: >-
44
StreamChannel wrappers for WebSockets. Provides a cross-platform
55
WebSocketChannel API, a cross-platform implementation of that API that

0 commit comments

Comments
 (0)