Skip to content

Commit f8086ed

Browse files
mralephCommit Queue
authored and
Commit Queue
committed
[vm] Enable waitFor for 3.2 release
We are going to enable waitFor in 3.2 release and disable it in 3.3. This makes migration smoother for users that need to use Isolate.resolvePackageUriSync which is only added in 3.2. The actual removal timeline remains the same: we will remove waitFor in 3.4. TEST=ci Bug: #52121 Change-Id: I1ab7d07f874b3d914f070f1c358fcffaa96da28b Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/329420 Reviewed-by: Martin Kustermann <[email protected]> Commit-Queue: Slava Egorov <[email protected]>
1 parent 0ffbf29 commit f8086ed

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

CHANGELOG.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,6 @@ constraint][language version] lower bound to 3.2 or greater (`sdk: '^3.2.0'`).
7171

7272
- Added `broadcast` parameter to `Stream.empty` constructor.
7373

74-
#### `dart:cli`
75-
76-
- **Breaking change** [#52121][]:
77-
- `waitFor` is disabled by default and slated for removal in 3.4. Attempting
78-
to call this function will now throw an exception. Users that still depend
79-
on `waitFor` can enable it by passing `--enable_deprecated_wait_for` flag
80-
to the VM.
81-
82-
[#52121]: https://github.com/dart-lang/sdk/issues/52121
83-
8474
#### `dart:convert`
8575

8676
- **Breaking change** [#52801][]:

runtime/vm/dart_api_impl.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ DEFINE_FLAG(bool,
8484
"Dump common hash tables before snapshotting.");
8585
DEFINE_FLAG(bool,
8686
enable_deprecated_wait_for,
87-
false,
87+
true,
8888
"Enable deprecated dart:cli waitFor. "
8989
"This feature will be fully removed in Dart 3.4 release. "
9090
"See https://dartbug.com/52121.");

0 commit comments

Comments
 (0)