Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow the next semver major versions of shelf_web_socket and web_socket_channel #2204

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pkgs/test/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.25.5

* Update the `package:web_socket_channel` version constraint to allow `3.x`.
* Update the `package:shelf_web_socket` version constraint to allow `2.x`.

## 1.25.4

* Add `@doNotSubmit` to more declarations of the `solo` parameter.
Expand Down
6 changes: 3 additions & 3 deletions pkgs/test/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: test
version: 1.25.4
version: 1.25.5
description: >-
A full featured library for writing and running Dart tests across platforms.
repository: https://github.com/dart-lang/test/tree/master/pkgs/test
Expand Down Expand Up @@ -28,7 +28,7 @@ dependencies:
shelf: ^1.0.0
shelf_packages_handler: ^3.0.0
shelf_static: ^1.0.0
shelf_web_socket: ^1.0.0
shelf_web_socket: '>=1.0.0 <3.0.0'
source_span: ^1.8.0
stack_trace: ^1.10.0
stream_channel: ^2.1.0
Expand All @@ -38,7 +38,7 @@ dependencies:
test_core: 0.6.2

typed_data: ^1.3.0
web_socket_channel: ^2.0.0
web_socket_channel: '>=2.0.0 <4.0.0'
webkit_inspection_protocol: ^1.0.0
yaml: ^3.0.0

Expand Down