File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1+ ## 2.0.1
2+
3+ - Update to ` package:uuid ` version 2.0.
4+
15## 2.0.0
26
37- No longer expose ` close ` and ` onClose ` on an ` SseConnection ` . This is simply
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ class SseClient extends StreamChannelMixin<String> {
3131 /// [serverUrl] is the URL under which the server is listening for
3232 /// incoming bi-directional SSE connections.
3333 SseClient (String serverUrl) {
34- var clientId = '${ Uuid ().v1 ()}' ;
34+ var clientId = Uuid ().v1 ();
3535 _eventSource = new EventSource ('$serverUrl ?sseClientId=$clientId ' ,
3636 withCredentials: true );
3737 _serverUrl = '$serverUrl ?sseClientId=$clientId ' ;
Original file line number Diff line number Diff line change 11name : sse
2- version : 2.0.0
2+ version : 2.0.1
33author :
Dart Team <[email protected] > 44homepage : https://github.com/dart-lang/sse
55description : >-
@@ -17,7 +17,7 @@ dependencies:
1717 pedantic : ^1.4.0
1818 stream_channel : ^1.6.8
1919 shelf : ^0.7.4
20- uuid : ^1 .0.3
20+ uuid : ^2 .0.0
2121
2222dev_dependencies :
2323 shelf_static : ^0.2.8
You can’t perform that action at this time.
0 commit comments