This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
Releases: Netflix/conductor
Releases · Netflix/conductor
v3.0.0-rc.8
- Hooks to disable background processes upon shutdown
v2.31.1
- Added support for Elasticsearch7
- Fixed behavior of TERMINATE task such that other non-terminal tasks in the workflow would be CANCELED and workflow would be in expected terminal state
- [UI] Fixed bulk restart using latest definitions
- Added a notification which will be published when a workflow is finalized (all tasks within it are in expected terminal state)
v3.0.0-rc.7
- TaskResource APIs return 204 to maintain client compatibility
- Workflow finalized notification
- Fixed conditional sync system task with large payload
v3.0.0-rc.6
- Library modules use Spring Boot as a
compileOnly
dependency - More metadata for Spring configuration
v2.31.0
- Added retry workflow with resume subworkflow functionality
- Removed id column from Postgres and MySQL tables, set primary key to existing unique index
- Modified the primary key on the queue_message table to be queue_name, message_id columns for Postgres and MySQL
- [Java Client] Added support for serialization of
java.time.*
types when jackson version >2.12 is detected - [Java Client] Fixed handling erroneous response codes when uploading to external payload storage
- [Python Client] Print exec_function name in the error statement
v3.0.0-rc.5
gradle 6.7.1
v3.0.0-rc.4
- Support for Spring Configuration Metadata. All libraries now include a spring-configuration-metadata.json file.
- Refactoring
v3.0.0-rc.3
- Using SpringBoot Property Conversion. See CHANGELOG.MD for changes and default values.
v3.0.0-rc.2
- Property namespace changes. All properties now start with
conductor
prefix. See CHANGELOG.MD. - Support for Redis standalone configuration. Closes #2019.
v3.0.0-rc.1
EventProcessor is optional and EventServiceImpl is modified to handle…