-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge package:web_socket_channel into the http monorepo
- Loading branch information
Showing
25 changed files
with
1,972 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# 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: | ||
- "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# 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! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# 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 |
71 changes: 71 additions & 0 deletions
71
pkgs/web_socket_channel/.github/workflows/test-package.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: CI | ||
|
||
on: | ||
# Run on PRs and pushes to the default branch. | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
schedule: | ||
- cron: "0 0 * * 0" | ||
|
||
env: | ||
PUB_ENVIRONMENT: bot.github | ||
|
||
jobs: | ||
# Check code formatting and static analysis on a single OS (linux) | ||
# against Dart dev. | ||
analyze: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
sdk: [dev] | ||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | ||
- uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94 | ||
with: | ||
sdk: ${{ matrix.sdk }} | ||
- id: install | ||
name: Install dependencies | ||
run: dart pub get | ||
- name: Check formatting | ||
run: dart format --output=none --set-exit-if-changed . | ||
if: always() && steps.install.outcome == 'success' | ||
- name: Analyze code | ||
run: dart analyze | ||
if: always() && steps.install.outcome == 'success' | ||
|
||
test: | ||
needs: analyze | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest] | ||
sdk: [3.3, dev] | ||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | ||
- uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94 | ||
with: | ||
sdk: ${{ matrix.sdk }} | ||
- id: install | ||
name: Install dependencies | ||
run: dart pub get | ||
- name: Run VM tests | ||
run: dart test --platform vm | ||
if: always() && steps.install.outcome == 'success' | ||
- name: Run Chrome tests | ||
run: dart test --platform chrome | ||
if: always() && steps.install.outcome == 'success' | ||
- name: Run Chrome tests - wasm | ||
run: dart test --platform chrome --compiler dart2wasm | ||
if: always() && steps.install.outcome == 'success' && matrix.sdk == 'dev' | ||
|
||
# Run analysis against the oldest supported pub constraints. | ||
downgrade: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | ||
- uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94 | ||
- run: dart pub downgrade | ||
- run: dart analyze |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.dart_tool/ | ||
.packages | ||
pubspec.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
## 3.0.1 | ||
|
||
- Remove unnecessary `dependency_overrides`. | ||
- Remove obsolete documentation for `WebSocketChannel.new`. | ||
- Update package `web: '>=0.5.0 <2.0.0'`. | ||
|
||
## 3.0.0 | ||
|
||
- Provide an adapter around `package:web_socket` `WebSocket`s and make it the | ||
default implementation for `WebSocketChannel.connect`. | ||
- **BREAKING**: Remove `WebSocketChannel` constructor. | ||
- **BREAKING**: Make `WebSocketChannel` an `abstract interface`. | ||
- **BREAKING**: `IOWebSocketChannel.ready` will throw | ||
`WebSocketChannelException` instead of `WebSocketException`. | ||
|
||
## 2.4.5 | ||
|
||
- use secure random number generator for frame masking. | ||
|
||
## 2.4.4 | ||
|
||
- Require Dart `^3.3` | ||
- Require `package:web` `^0.5.0`. | ||
|
||
## 2.4.3 | ||
|
||
- `HtmlWebSocketChannel`: Relax the type of the websocket parameter to the | ||
constructor in order to mitigate a breaking change introduced in `2.4.1`. | ||
|
||
## 2.4.2 (retracted) | ||
|
||
- Allow `web: '>=0.3.0 <0.5.0'` | ||
|
||
## 2.4.1 | ||
|
||
- Update the examples to use `WebSocketChannel.ready` and clarify that | ||
`WebSocketChannel.ready` should be awaited before sending data over the | ||
`WebSocketChannel`. | ||
- Mention `ready` in the docs for `connect`. | ||
- Bump minimum Dart version to 3.2.0 | ||
- Move to `pkg:web` to support WebAssembly compilation. | ||
|
||
## 2.4.0 | ||
|
||
- Add a `customClient` parameter to the `IOWebSocketChannel.connect` factory, | ||
which allows the user to provide a custom `HttpClient` instance to use for the | ||
WebSocket connection | ||
- Bump minimum Dart version to 2.15.0 | ||
|
||
## 2.3.0 | ||
|
||
- Added a Future `ready` property to `WebSocketChannel`, which completes when | ||
the connection is established | ||
- Added a `connectTimeout` parameter to the `IOWebSocketChannel.connect` factory, | ||
which controls the timeout of the WebSocket Future. | ||
- Use platform agnostic code in README example. | ||
|
||
## 2.2.0 | ||
|
||
- Add `HtmlWebSocketChannel.innerWebSocket` getter to access features not exposed | ||
through the shared `WebSocketChannel` interface. | ||
|
||
## 2.1.0 | ||
|
||
- Add `IOWebSocketChannel.innerWebSocket` getter to access features not exposed | ||
through the shared `WebSocketChannel` interface. | ||
|
||
## 2.0.0 | ||
|
||
- Support null safety. | ||
- Require Dart 2.12. | ||
|
||
## 1.2.0 | ||
|
||
* Add `protocols` argument to `WebSocketChannel.connect`. See the docs for | ||
`WebSocket.connet`. | ||
* Allow the latest crypto release (`3.x`). | ||
|
||
## 1.1.0 | ||
|
||
* Add `WebSocketChannel.connect` factory constructor supporting platform | ||
independent creation of WebSockets providing the lowest common denominator | ||
of support on dart:io and dart:html. | ||
|
||
## 1.0.15 | ||
|
||
* bug fix don't pass protocols parameter to WebSocket. | ||
|
||
## 1.0.14 | ||
|
||
* Updates to handle `Socket implements Stream<Uint8List>` | ||
|
||
## 1.0.13 | ||
|
||
* Internal changes for consistency with the Dart SDK. | ||
|
||
## 1.0.12 | ||
|
||
* Allow `stream_channel` version 2.x | ||
|
||
## 1.0.11 | ||
|
||
* Fixed description in pubspec. | ||
|
||
* Fixed lints in README.md. | ||
|
||
## 1.0.10 | ||
|
||
* Fixed links in README.md. | ||
|
||
* Added an example. | ||
|
||
* Fixed analysis lints that affected package score. | ||
|
||
## 1.0.9 | ||
|
||
* Set max SDK version to `<3.0.0`. | ||
|
||
## 1.0.8 | ||
|
||
* Remove use of deprecated constant name. | ||
|
||
## 1.0.7 | ||
|
||
* Support the latest dev SDK. | ||
|
||
## 1.0.6 | ||
|
||
* Declare support for `async` 2.0.0. | ||
|
||
## 1.0.5 | ||
|
||
* Increase the SDK version constraint to `<2.0.0-dev.infinity`. | ||
|
||
## 1.0.4 | ||
|
||
* Support `crypto` 2.0.0. | ||
|
||
## 1.0.3 | ||
|
||
* Fix all strong-mode errors and warnings. | ||
|
||
* Fix a bug where `HtmlWebSocketChannel.close()` would crash on non-Dartium | ||
browsers if the close code and reason weren't provided explicitly. | ||
|
||
## 1.0.2 | ||
|
||
* Properly use `BASE64` from `dart:convert` rather than `crypto`. | ||
|
||
## 1.0.1 | ||
|
||
* Add support for `crypto` 1.0.0. | ||
|
||
## 1.0.0 | ||
|
||
* Initial version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
Want to contribute? Great! First, read this page (including the small print at | ||
the end). | ||
|
||
### Before you contribute | ||
Before we can use your code, you must sign the | ||
[Google Individual Contributor License Agreement](https://cla.developers.google.com/about/google-individual) | ||
(CLA), which you can do online. The CLA is necessary mainly because you own the | ||
copyright to your changes, even after your contribution becomes part of our | ||
codebase, so we need your permission to use and distribute your code. We also | ||
need to be sure of various other things—for instance that you'll tell us if you | ||
know that your code infringes on other people's patents. You don't have to sign | ||
the CLA until after you've submitted your code for review and a member has | ||
approved it, but you must do it before we can put your code into our codebase. | ||
|
||
Before you start working on a larger contribution, you should get in touch with | ||
us first through the issue tracker with your idea so that we can help out and | ||
possibly guide you. Coordinating up front makes it much easier to avoid | ||
frustration later on. | ||
|
||
### Code reviews | ||
All submissions, including submissions by project members, require review. | ||
|
||
### File headers | ||
All files in the project must start with the following header. | ||
|
||
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file | ||
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
### The small print | ||
Contributions made by corporations are covered by a different agreement than the | ||
one above, the | ||
[Software Grant and Corporate Contributor License Agreement](https://developers.google.com/open-source/cla/corporate). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Copyright 2016, the Dart project authors. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
met: | ||
|
||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above | ||
copyright notice, this list of conditions and the following | ||
disclaimer in the documentation and/or other materials provided | ||
with the distribution. | ||
* Neither the name of Google LLC nor the names of its | ||
contributors may be used to endorse or promote products derived | ||
from this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Oops, something went wrong.