You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,23 @@
1
1
# Change Log
2
2
All notable changes to this project will be documented in this file.
3
3
4
+
## 1.1.0 - 2019-06-18
5
+
### Added
6
+
- Added support for sending synchronous messages to an actor.
7
+
- Added support for creating/managing nonces associated with aliases through a new API: `GET, POST /actors/aliases/{alias}/nonces`.
8
+
- Added support for halting a running execution through a new API endpoint: `DELETE /actors/{actor_id}/executions/{execution_id}`.
9
+
- Added support for streaming logs back to the logs service during a running execution so that the user does not have to wait for an execution to complete before seeing logs.
10
+
11
+
### Changed
12
+
- The spawer management of workers has been greatly simplified with a significant reduction in messages between the two agents at start up. Worker status was updated to add additional worker states during start up. Worker state transitions are now validated at the model level.
13
+
- The `abacosamples/wc` word count image has been updated to now send a bytes result on the results channel.
14
+
- Improved worker and client cleanup code when actor goes into an ERROR state.
15
+
- Updates to health agent to add additional checks/clean up of clients store.
16
+
- Consolidated to a single docker-compose.yml file for local development and upgraded it to v3 docker-compose format.
0 commit comments