build_daemon 3.1.1 build_daemon: ^3.1.1 copied to clipboard
A daemon for running Dart builds.
3.1.1 #
- Report file watching errors and stop the daemon.
- Change
Level
to implementComparable
instead of using it as a mixin.
3.1.0 #
- Add
BuildResults.changedAssets
containing asset URIs changed during a build. - Updated the example to use
dart pub
instead ofpub
. - Run
serveRequests
in an error zone and forward errors to the clients.
3.0.1 #
- Drop package:pedantic dependency and replace it with package:lints.
3.0.0 #
- Migrate to null safety.
2.1.10 #
- Allow the latest
http_multi_server
.
2.1.9 #
- Support version
1.x
ofshelf_web_socket
and2.x
ofweb_socket_channel
2.1.8 #
- Begin conversion to use analyzer 1.0.0.
2.1.7 #
- Allow the null safe pre-release version of
shelf
andwatcher
.
2.1.6 #
- Allow the null safe pre-release version of
stream_transform
.
2.1.5 #
- Allow the null safe pre-release version of
logging
,built_value
, andbuilt_collection
.- Keeps the old
built_value_generator
and generated code which is compatible across both versions of the core libs.
- Keeps the old
2.1.4 #
- Remove dependency on
package:package_resolver
.
2.1.3 #
- Allow the latest
stream_transform
.
2.1.2 #
- Depend on the latest
built_value
.
2.1.1 #
- Require SDK version
2.6.0
to enable extension methods.
2.1.0 #
- Added optional
DefaultBuildTarget.buildFilters
field.
2.0.0 #
- Create a public entrypoint for backend implementations of the daemon protocol.
- Refer to
lib/daemon.dart
.
- Refer to
- Update client
connect
method to now take an optionalbuildMode
. The default mode is auto in which builds will automatically occur on changes. The alternative mode is manual in which builds will only occur when triggered with the clientstartBuild
method. - Add enum of build modes to
constants.dart
.
1.1.0 #
- Add
failureType
toShutdownNotification
.
1.0.0 #
- Changed the
ServerLog
class to have separatelevel
,message
,loggerName
,error
, andstackTrace
fields. - Accept file change notifications as
Stream<List<WatchEvent>>
instead ofStream<WatchEvent>
. This allows file change notifications to be sent as batches of simultaneous changes, preventing over-triggering of builds.
0.6.1 #
- Use
HttpMultiServer
to better support IPv6 and IPv4 workflows.
0.6.0 #
- Add retry logic to the state file helpers
runningVersion
andcurrentOptions
. DaemonBuilder
is now an abstract class.- Significantly increase doc comment coverage.
0.5.1 #
- Support shutting down the daemon with a notification.
0.5.0 #
- Add OutputLocation to DefaultBuildTarget.
0.4.2 #
- Enable configuring the environment for the daemon.
0.4.1 #
- Support closing a daemon client.
- Fix a null set bug in the build target manager.
0.4.0 #
- Replace the client log stream with an optional logHandler. This simplifies the logging logic and prevents the need for the client to print to stdio.
0.3.0 #
- Forward daemon output while starting up / connecting.
0.2.3 #
- Shutdown the daemon if no client connects within 30 seconds.
0.2.2 #
- Resolve client path issues with running on Windows.
0.2.1 #
- Resolve issues with running on Windows.
- Close the lock file prior to deleting it.
- Properly join paths and escape the workspace.
0.2.0 #
- Support custom build results.
- Options are no longer dynamic and are provided upon connecting.
- Report OptionsSkew.
- Prefix build daemon directory with username.
- Forward filesystem changes to daemon builder.
- Support custom build targets.
0.0.1 #
- Initial Build Daemon support.