File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 1.0.8
2+
3+ * Remove use of deprecated constant name.
4+
15## 1.0.7
26
37* Support the latest dev SDK.
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ class WebSocketChannel extends StreamChannelMixin {
6565 static String signKey (String key) {
6666 // We use [codeUnits] here rather than UTF-8-decoding the string because
6767 // [key] is expected to be base64 encoded, and so will be pure ASCII.
68- return convert.BASE64
68+ return convert.base64
6969 .encode (sha1.convert ((key + webSocketGUID).codeUnits).bytes);
7070 }
7171
Original file line number Diff line number Diff line change 11name : web_socket_channel
2- version : 1.0.7
2+ version : 1.0.8
33description : StreamChannel wrappers for WebSockets.
44author :
Dart Team <[email protected] > 55homepage : https://github.com/dart-lang/web_socket_channel
You can’t perform that action at this time.
0 commit comments