From 0a93fb5c37eedf3fcc281c4bf8f1c9e84a604ad2 Mon Sep 17 00:00:00 2001 From: Brett Sutton Date: Sun, 14 Apr 2024 08:09:35 +1000 Subject: [PATCH] Released 4.0.1-beta.4. --- dcli_terminal/CHANGELOG.md | 12 ++++++++++++ dcli_terminal/lib/src/version/version.g.dart | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/dcli_terminal/CHANGELOG.md b/dcli_terminal/CHANGELOG.md index 09755b47..86d29cb0 100644 --- a/dcli_terminal/CHANGELOG.md +++ b/dcli_terminal/CHANGELOG.md @@ -1,3 +1,15 @@ +# 4.0.1-beta.4 +- added back in the missing nothrow arg to start method. +- Fixed running of detached processes. We were trying to get the exit code which would never work. +- Added some missing async statements when using named locks. Fixed a bug in dart_project when running in a unit test. It was getting the platformComfig which was a uri of the form file:// but then trying to process it as a simple path. +- moved message_response to its own file. Added a processor for exceptions as we were dumping exceptions generated in the isolate on the ground. Fixed a bug when we call start in with mode terminal. We were still trying to attach to the stdio stream when the don't actually exist. The same goes for detached. added json encoding to DCliException and RunException so we can pass them over the isolate boundary via a mailbox. +- changed namedLock to async until tsavoc has a chance to merge in his sync version. We may need a sync and async version to + allow for async callbacks. + - still no action on async validation methods for 'ask'. + +Most unit tests are now working and most of the common process execution paths appear to be working. + + # 4.0.1-beta.2 - upgraded to the latest version of dart_console. - migrated back to dart_console as I'm now the maintainer. diff --git a/dcli_terminal/lib/src/version/version.g.dart b/dcli_terminal/lib/src/version/version.g.dart index 6acd3bd8..8cf11d5c 100644 --- a/dcli_terminal/lib/src/version/version.g.dart +++ b/dcli_terminal/lib/src/version/version.g.dart @@ -1,3 +1,3 @@ /// GENERATED BY pub_release do not modify. /// Instance of 'Name' version -String packageVersion = '4.0.1-alpha.11'; +String packageVersion = '4.0.1-beta.4';