File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -144,6 +144,16 @@ constraint][language version] lower bound to 3.2 or greater (`sdk: '^3.2.0'`).
144
144
145
145
- Added ` broadcast ` parameter to ` Stream.empty ` constructor.
146
146
147
+ #### ` dart:cli `
148
+
149
+ - ** Breaking change** [ #52121 ] [ ] :
150
+ - ` waitFor ` is disabled by default and slated for removal in 3.4. Attempting
151
+ to call this function will now throw an exception. Users that still depend
152
+ on ` waitFor ` can enable it by passing ` --enable_deprecated_wait_for ` flag
153
+ to the VM.
154
+
155
+ [ #52121 ] : https://github.com/dart-lang/sdk/issues/52121
156
+
147
157
#### ` dart:convert `
148
158
149
159
- ** Breaking change** [ #52801 ] [ ] :
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ DEFINE_FLAG(bool,
84
84
" Dump common hash tables before snapshotting." );
85
85
DEFINE_FLAG (bool ,
86
86
enable_deprecated_wait_for,
87
- true ,
87
+ false ,
88
88
" Enable deprecated dart:cli waitFor. "
89
89
" This feature will be fully removed in Dart 3.4 release. "
90
90
" See https://dartbug.com/52121." );
You can’t perform that action at this time.
0 commit comments