Skip to content

Commit

Permalink
Moving fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Dec 11, 2024
1 parent 7bd6dfc commit 1312034
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 76 deletions.
4 changes: 4 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,7 @@
'package:http_client_conformance_tests':
- changed-files:
- any-glob-to-any-file: 'pkgs/http_client_conformance_tests/**'

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

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

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

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 @@ -20,6 +20,7 @@ and the browser.
| [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) |
| [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) |
| [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) |
| [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. | |

## Contributing
Expand Down
15 changes: 0 additions & 15 deletions pkgs/web_socket_channel/.github/dependabot.yml

This file was deleted.

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

This file was deleted.

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

This file was deleted.

4 changes: 4 additions & 0 deletions pkgs/web_socket_channel/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.0.2

- Move to `dart-lang/http` monorepo.

## 3.0.1

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

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

[connect]: https://pub.dev/documentation/web_socket_channel/latest/web_socket_channel/WebSocketChannel/WebSocketChannel.connect.html
[connect]: https://pub.dev/documentation/web_socket_channel/latest/web_socket_channel/WebSocketChannel/WebSocketChannel.connect.html
2 changes: 1 addition & 1 deletion pkgs/web_socket_channel/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: web_socket_channel
version: 3.0.1
version: 3.0.2
description: >-
StreamChannel wrappers for WebSockets. Provides a cross-platform
WebSocketChannel API, a cross-platform implementation of that API that
Expand Down

0 comments on commit 1312034

Please sign in to comment.