Skip to content

Commit 638a669

Browse files
committed
Defer changes in v3.3.0-wip to v4.0.0-wip
1 parent d4e3d46 commit 638a669

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

frontend_server_client/CHANGELOG.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
## 4.0.0-wip
22

3+
- Update Dart SDK constraint to `^3.0.0`.
4+
- Support changes in the SDK layout for Dart 3.0.
35
- By default, start the frontend server from the AOT snapshot shipped in the
46
Dart SDK.
57
- Throw an `ArgumentError` when `FrontendServerClient.start` is called with the
68
`frontendServerPath` argument omitted and the `debug` argument set to true.
7-
8-
## 3.3.0
9-
10-
- Update Dart SDK constraint to `>=3.0.0 <4.0.0`.
11-
- Support changes in the SDK layout for Dart 3.0.
9+
- Update `package:vm_service` constraint to `^14.0.0`.
1210

1311
## 3.2.0
1412

frontend_server_client/lib/src/frontend_server_client.dart

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ class FrontendServerClient {
103103
feServer = await Process.start(
104104
Platform.resolvedExecutable,
105105
<String>[
106-
if (debug) '--observe',
107-
frontendServerPath,
108-
...commonArguments,
109-
],
106+
if (debug) '--observe',
107+
frontendServerPath,
108+
...commonArguments,
109+
],
110110
);
111111
} else if (File(_feServerAotSnapshotPath).existsSync()) {
112112
if (debug) {
@@ -123,10 +123,10 @@ class FrontendServerClient {
123123
feServer = await Process.start(
124124
Platform.resolvedExecutable,
125125
<String>[
126-
if (debug) '--observe',
127-
_feServerAppJitSnapshotPath,
128-
...commonArguments,
129-
],
126+
if (debug) '--observe',
127+
_feServerAppJitSnapshotPath,
128+
...commonArguments,
129+
],
130130
);
131131
}
132132
var feServerStdoutLines = StreamQueue(feServer.stdout

frontend_server_client/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ dev_dependencies:
2020
test: ^1.16.0
2121
test_descriptor: ^2.0.0
2222
test_process: ^2.0.0
23-
vm_service: ^8.0.0
23+
vm_service: ^14.0.0

0 commit comments

Comments
 (0)