This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
Releases: dart-archive/bazel_worker
Releases · dart-archive/bazel_worker
package:bazel_worker v1.1.1
bazel_worker version 1.1.0
- Add constructors with named parameters to
the generated worker protocol messages. - Include comments on the generated worker protocol API.
package:bazel_worker v1.0.3
- Require
package:protobuf
>= 3.0.0. - Require Dart SDK >= 2.19.0
0.1.9
0.1.7
0.1.6
0.1.5
0.1.4
- Added
BazelWorkerDriver
class, which can be used to implement the bazel side
of the protocol. This allows you to speak to any process which knows the bazel
protocol from your own process. - Changed
WorkerConnection#readRequest
to return aFutureOr<WorkRequest>
instead of dynamic.
0.1.3
- Add automatic intercepting of print calls and append them to
response.output
. This makes more libraries work out of the box, as printing
would previously cause an error due to communication over stdin/stdout.- Note that using stdin/stdout directly will still cause an error, but that is
less common.
- Note that using stdin/stdout directly will still cause an error, but that is