-
Notifications
You must be signed in to change notification settings - Fork 561
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
Use WebSockets pkg version supported on unix and enable tests #1396
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
"System.Net.Primitives": "4.0.10", | ||
"System.Net.WebHeaderCollection": "4.0.0", | ||
"System.Net.WebSockets": "4.0.0", | ||
"System.Net.WebSockets.Client": "4.0.0", | ||
"System.Net.WebSockets.Client": "4.0.1-beta-24322-03", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just to point out, we now officially cannot release a stable version until There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There's no api surface changes, so if we needed to we could role back our dependency (I made no product changes to enable this fix) and release a stable version which doesn't support WS on linux. |
||
"System.ObjectModel": "4.0.0", | ||
"System.Reflection": "4.0.10", | ||
"System.Reflection.DispatchProxy": "4.0.0", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we try to not add
"System.Net.WebSockets.Client": "4.0.1-beta-24322-03"
in test-runtime as this will add this package dependency to ALL test project while we likely only need this for websocket tests?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Chicken and egg with nuget package dependencies. Once we release a new build of the SM packages, this will get pulled in as a product dependency on all the tests anyway.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed to merge this first.
@mconnew do you like to have an issue opened to track to remove this dependency from test-runtime later or will you just remember it? 😄