diff --git a/packages/process/CHANGELOG.md b/packages/process/CHANGELOG.md index 49852187099a..32697bd92772 100644 --- a/packages/process/CHANGELOG.md +++ b/packages/process/CHANGELOG.md @@ -1,5 +1,6 @@ ## 5.0.2 +* Removes mention of the removed record/replay feature from README. * Updates minimum supported SDK version to Flutter 3.10/Dart 3.0. * Fixes new lint warnings. diff --git a/packages/process/README.md b/packages/process/README.md index 78e7c8c3fe07..255cc17f22a7 100644 --- a/packages/process/README.md +++ b/packages/process/README.md @@ -5,8 +5,8 @@ A generic process invocation abstraction for Dart. Like `dart:io`, `package:process` supplies a rich, Dart-idiomatic API for spawning OS processes. -Unlike `dart:io`, `package:process`: +Unlike `dart:io`, `package:process` requires processes to be started with +[ProcessManager], which allows for easy mocking and testing of code that +spawns processes in a hermetic way. -- Can be used to implement custom process invocation backends. -- Comes with a record-replay implementation out-of-the-box, making it super - easy to test code that spawns processes in a hermetic way. +[ProcessManager]: https://pub.dev/documentation/process/latest/process/ProcessManager-class.html