This repository was archived by the owner on Jan 6, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +9
-7
lines changed Expand file tree Collapse file tree 6 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 47
47
matrix :
48
48
# Add macos-latest and/or windows-latest if relevant for this package.
49
49
os : [ubuntu-latest]
50
- sdk : [3.2.0 , dev]
50
+ sdk : [3.3 , dev]
51
51
steps :
52
52
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
53
53
- uses : dart-lang/setup-dart@fedb1266e91cf51be2fdb382869461a434b920a3
Original file line number Diff line number Diff line change 1
1
## 4.1.5-wip
2
2
3
3
- Drop unneeded dependency on ` package:js ` .
4
+ - Update the minimum Dart SDK version to ` 3.3.0 ` .
5
+ - Support the latest ` package:web ` .
4
6
5
7
## 4.1.4
6
8
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import 'package:sse/server/sse_handler.dart';
7
7
8
8
/// A basic server which sets up an SSE handler.
9
9
///
10
- /// When a client connnects it will send a simple message and print the
10
+ /// When a client connects it will send a simple message and print the
11
11
/// response.
12
12
void main () async {
13
13
var handler = SseHandler (Uri .parse ('/sseHandler' ));
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import 'dart:js_interop';
9
9
import 'package:logging/logging.dart' ;
10
10
import 'package:pool/pool.dart' ;
11
11
import 'package:stream_channel/stream_channel.dart' ;
12
- import 'package:web/helpers .dart' ;
12
+ import 'package:web/web .dart' ;
13
13
14
14
import '../src/util/uuid.dart' ;
15
15
@@ -21,7 +21,7 @@ import '../src/util/uuid.dart';
21
21
/// Note Chrome's limit is 6000. So this gives us plenty of headroom.
22
22
final _requestPool = Pool (1000 );
23
23
24
- /// A client for bi-directional sse communcation .
24
+ /// A client for bi-directional sse communication .
25
25
///
26
26
/// The client can send any JSON-encodable messages to the server by adding
27
27
/// them to the [sink] and listen to messages from the server on the [stream] .
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ description: >-
7
7
repository : https://github.com/dart-lang/sse
8
8
9
9
environment :
10
- sdk : ^3.2 .0
10
+ sdk : ^3.3 .0
11
11
12
12
dependencies :
13
13
async : ^2.0.8
@@ -16,7 +16,7 @@ dependencies:
16
16
pool : ^1.5.0
17
17
shelf : ^1.1.0
18
18
stream_channel : ^2.0.0
19
- web : ' >=0.3.0 <0. 5.0'
19
+ web : ^0. 5.0
20
20
21
21
dev_dependencies :
22
22
dart_flutter_team_lints : ^2.0.0
Original file line number Diff line number Diff line change 3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
5
import 'package:sse/client/sse_client.dart' ;
6
- import 'package:web/helpers .dart' ;
6
+ import 'package:web/web .dart' ;
7
7
8
8
void main () {
9
9
var channel = SseClient ('/test' );
You can’t perform that action at this time.
0 commit comments