File tree 7 files changed +14
-14
lines changed 7 files changed +14
-14
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.0.5
2
+
3
+ * Increase the SDK version constraint to ` <2.0.0-dev.infinity ` .
4
+
1
5
## 1.0.4
2
6
3
7
* Support ` crypto ` 2.0.0.
Original file line number Diff line number Diff line change
1
+ analyzer :
2
+ strong-mode : true
Original file line number Diff line number Diff line change 2
2
// for details. All rights reserved. Use of this source code is governed by a
3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
+ library web_socket_channel.html;
6
+
5
7
import 'dart:async' ;
6
8
import 'dart:html' ;
7
9
import 'dart:typed_data' ;
Original file line number Diff line number Diff line change 2
2
// for details. All rights reserved. Use of this source code is governed by a
3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
+ library web_socket_channel.io;
6
+
5
7
import 'dart:async' ;
6
8
import 'dart:io' ;
7
9
Original file line number Diff line number Diff line change @@ -57,18 +57,6 @@ class _WebSocketOpcode {
57
57
static const int RESERVED_F = 15 ;
58
58
}
59
59
60
- /**
61
- * Stores the header and integer value derived from negotiation of
62
- * client_max_window_bits and server_max_window_bits. headerValue will be
63
- * set in the Websocket response headers.
64
- */
65
- class _CompressionMaxWindowBits {
66
- String headerValue;
67
- int maxWindowBits;
68
- _CompressionMaxWindowBits ([this .headerValue, this .maxWindowBits]);
69
- String toString () => headerValue;
70
- }
71
-
72
60
/**
73
61
* The web socket protocol transformer handles the protocol byte stream
74
62
* which is supplied through the [:handleData:] . As the protocol is processed,
Original file line number Diff line number Diff line change 16
16
/// channel.close(status.goingAway);
17
17
/// }
18
18
/// ```
19
+ library web_socket_channel.status;
20
+
19
21
import 'dart:core' ;
20
22
21
23
/// The purpose for which the connection was established has been fulfilled.
Original file line number Diff line number Diff line change 1
1
name : web_socket_channel
2
- version : 1.0.5-dev
2
+ version : 1.0.5
3
3
description : StreamChannel wrappers for WebSockets.
4
4
author :
Dart Team <[email protected] >
5
5
homepage : https://github.com/dart-lang/web_socket_channel
6
6
7
7
environment :
8
- sdk : ' >=1.13.0 <2.0.0'
8
+ sdk : ' >=1.13.0 <2.0.0-dev.infinity '
9
9
10
10
dependencies :
11
11
async : ' ^1.3.0'
You can’t perform that action at this time.
0 commit comments