ANNOUNCEMENT

Orkes Conductor Changelog

All
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
May 01, 2026
Platform
AI Assistant supports Claude and OpenAI

AI Assistant, an AI-powered chat interface in Conductor UI which supports building workflows, debugging executions, and exploring your workflow catalog, can now be powered by Claude (Anthropic) or OpenAI models.

Learn more
Apr 22, 2026
API
Retrieve all resources associated with a tag via new API

Introduced a new GET /api/metadata/tags/resources endpoint that retrieves all resources associated with a specific tag.

Learn more
Apr 07, 2026
Platform
Mock Sub Workflow tasks in workflow tests

POST /workflow/test and POST /workflow/test/sync now support mocking Sub Workflow tasks. When a mock output is supplied for a Sub Workflow's task reference name, the task completes immediately with that output, and no child workflow is started.

Customizable HTTP status codes

The HTTP task and HTTP Poll task now support an acceptedStatusCodes field in inputParameters. Use this to define which HTTP status codes or families (e.g., "404", "4xx") should be treated as successful task outcomes. When not set, only 2xx responses are accepted. When explicitly set, only the listed codes are accepted; 2xx is not implicitly included.

Mar 19, 2026
Platform
Return sync API calls immediately when hitting a Wait task

The Wait task now supports a yield input parameter. When set to true, synchronous API calls return immediately upon reaching a Wait task with a duration, rather than holding the HTTP connection open.

Learn more
Mar 16, 2026
API
Test workflows synchronously with HTTP task mocking

A new endpoint POST /workflow/test/sync has been added for testing workflows synchronously. The key addition in this endpoint is support for mocking HTTP tasks. You can supply mock outputs for HTTP tasks the same way as any other task. If no mock is provided for an HTTP task, it falls through and executes normally.

Learn more
Jan 27, 2026
Platform
Build workflows with the AI Assistant

The Conductor AI Assistant can now leverage configured integrations when helping build workflows, making it easier to create integration-connected workflows through conversational UI.

Learn more
Jan 7, 2026
API
Retrieve all tags grouped by resource type via new API

A new GET /api/metadata/tags/grouped endpoint returns all tags organized by resource type with a count per type. This supports tag management and auditing across large Conductor deployments.

Learn more
Dec 15, 2025
Platform
Expose workflows as APIs and MCP tools with Gateway

Orkes Conductor’s Gateway lets you expose any workflow as an API endpoint or MCP tool. API Gateway routes map HTTP requests to workflows, while MCP Gateway surfaces workflows as tools for AI agents. Both support authentication, rate limiting, CORS configuration, and pre/post transformation scripts.

Learn more
Oct 29, 2025
Integrations
AWS and GCP cloud provider integrations

Orkes Conductor now supports integrations with AWS and Google Cloud Platform, enabling workflows to securely access private S3 and GCS storage buckets using storage-related tasks.

Learn more
Oct 24, 2025
Platform
Split large text into segments with the Chunk Text task

The new AI task, Chunk Text, splits large text content into smaller, structured s

Learn more
List files from S3, GCS, Azure Blob, or Git in a workflow

The new AI task, List Files, retrieves file listings from S3, GCS, Azure Blob, or Git repositories. It is designed for workflows that need to dynamically index or process file-based data sources.

Learn more
Extract and convert documents to Markdown with the Parse Document task

The new AI task, Parse Document, extracts and converts documents from cloud storage, Git repositories, and websites into Markdown format. It supports Office documents, PDFs, HTML, images (via OCR), ZIP archives, and text files.

Learn more
Oct 24, 2025
API
Search schedule definitions via paginated API

A new GET /api/scheduler/schedules/search endpoint has been added to support paginated search over schedule definitions. This improves manageability for clusters with large numbers of scheduled workflows.

Learn more
Oct 1, 2025
Platform
Pass a workflow definition directly into a Sub Workflow task at runtime

The Sub Workflow task now supports a Workflow definition parameter, allowing the complete workflow definition to be passed as a variable, object, or array at runtime. This enables more dynamic workflow composition patterns.

Learn more
Sep 23, 2025
Platform
Tag event handlers for easier management and filtering

Event handlers can now be tagged, bringing them in line with other Conductor resources that support tagging. This improves discoverability, filtering, and management of event handler definitions at scale.

Learn more
Sep 2, 2025
Integrations
Read from Git repositories in workflows

Orkes Conductor now supports integration with Git repositories, including GitHub, GitLab, Bitbucket, and any other repository that supports API tokens. This enables workflows to read from and interact with version-controlled file sources.

Learn more
Aug 12, 2025
Integrations
Run local Ollama models in AI workflows

Orkes Conductor now supports integration with Ollama, enabling workflows to use locally hosted LLMs in AI tasks. Supports optional authentication headers for secured or proxied Ollama deployments.

Learn more
Aug 11, 2025
Platform
Evaluate string conditions in Business Rules without custom code

The Business Rule task now supports five new string operators: startsWith, endsWith, contains, matches, and length. These expand the range of rule conditions that can be evaluated without custom code.

Learn more
Aug 8, 2025
Platform
Control rule file cache duration per Business Rule task

Business Rule tasks now support a cacheTimeoutMinutes parameter to control how long downloaded rule files are cached at the task level. This gives teams finer control over rule file freshness without relying on system-wide defaults.

Learn more
Aug 6, 2025
API
Execute workflows synchronously and signal APIs

A new POST /api/workflow/execute/{name}/{version} endpoint runs workflows synchronously with configurable consistency modes (SYNCHRONOUS, DURABLE, REGION_DURABLE). New signal endpoints let you resume paused Yield or Wait tasks synchronously (POST /api/tasks/{workflowId}/{status}/signal/sync) or asynchronously, with a return strategy to control what the API returns.

Learn more
Jul 31, 2025
Platform
Version and roll back AI prompts without affecting production workflows

AI Prompts now support versioning, starting at version 1 and incrementing with each new save. Teams can maintain multiple prompt variants in parallel, making it easier to iterate and roll back prompt changes without affecting production workflows.

Learn more
Jul 29, 2025
Platform
Mask sensitive fields in workflow definitions

Workflow definitions now support a maskedFields parameter to designate sensitive fields that should be hidden during introspection. Masked values are displayed as ****** in workflow input and output views, preventing unintended data exposure.

Learn more
Jul 18, 2025
Platform
Centrally define and reuse HTTP and gRPC services across workflows

Remote Services lets you register HTTP and gRPC service endpoints once and reuse them across HTTP, HTTP Poll, and gRPC tasks. Supports automatic endpoint discovery from Swagger specs or gRPC reflection, circuit breaker configuration, and request hedging for reduced tail latency.

Learn more
Jun 24, 2025
Platform
Yield task for pausable synchronous workflows

The new Yield task pauses workflow execution until it is explicitly resumed via signal APIs. When used with synchronous workflow execution, Conductor returns immediately at the Yield point rather than holding the connection open, enabling tightly coordinated request-response patterns with external systems.

Learn more
Apr 30, 2025
Platform
Prevent duplicate webhook-triggered workflows with dynamic idempotency keys

Workflows triggered by webhook events can now use dynamic idempotency keys defined as workflow inputs via expression, ${workflow.input.<variable>}. This prevents duplicate workflow executions from repeated webhook deliveries using data-driven key values.

Learn more
Apr 25, 2025
Integrations
Fine-tune NATS message consumption with pull consumer configuration

The NATS message broker integration now includes default parameters and new pull consumer configuration options: Batch Count, Pull Period, and Pull Batch Wait Time. These additions give teams more precise control over message consumption behavior.

Learn more
Apr 23, 2025
Integrations
Use Grok and Perplexity as LLM providers in workflows

Orkes Conductor now supports integrations with Grok and Perplexity as AI/LLM providers. Teams can connect these models through the Integrations panel and use them in AI-powered workflows.

Learn more
Send emails directly from workflows with SendGrid

A new SendGrid integration allows Conductor workflows to send transactional and marketing emails directly. The accompanying SendGrid task enables email sending as a workflow step after configuring the integration.

Learn more
Apr 23, 2025
Platform
Import BPMN workflows directly into Conductor

Orkes Conductor now supports importing standard BPMN files (XML and .bpmn format) directly into workflow definitions. This simplifies migration from BPMN-based systems by eliminating the need to manually recreate workflows.

Learn more
Jan 22, 2025
Platform
Inherit idempotency keys in Sub Workflows automatically

When a Sub Workflow task has an idempotency strategy configured but no explicit key provided, it now automatically inherits the idempotency key from its parent workflow. This reduces the need for manual key management in nested workflow patterns.

Learn more
Nov 29, 2024
Platform
Rate limiting for concurrent workflow executions

Workflows can now be configured with a rate limit to control how many executions run concurrently. Any workflows triggered beyond the limit are queued by trigger time, providing better control over system load.

Learn more
Nov 28, 2024
Platform
Fail duplicate workflow requests with the new "Fail on Running" idempotency strategy

A third idempotency strategy, Fail on Running, has been added alongside the existing ReturnExisting and Fail strategies. When selected, the workflow request fails if another workflow with the same idempotency key is currently in a Running or Paused state, preventing unintended concurrent executions.

Learn more
Oct 18, 2024
Platform
Enforce schema for workflow and task inputs and outputs

Conductor now supports defining schemas that enforce the payload structure for workflow and task inputs/outputs. This helps teams catch structural mismatches early and maintain consistency across workflow and task definitions.

Learn more
Oct 4, 2024
Platform
Load rule files from URLs without file extensions in Business Rule tasks

The Business Rule task can now download rule files from URLs that do not have CSV, XLS, or XLSX file extensions. As long as the URL's Content-Type header indicates a supported format, the file is processed correctly.

Learn more
Jul 29, 2024
Integrations
Authenticate with NATS using JWT token-based auth

NATS Messaging integration now supports token-based authentication via a token-based endpoint. This gives teams a secure, flexible way to authenticate using a JWT token fetched from their NATS server, without relying on credential-based methods.

Learn more
Jun 12, 2024
Integrations
Trigger workflows from SendGrid and Twilio delivery events

Conductor webhooks now support SendGrid and Twilio as sources, enabling workflows to be triggered from email and SMS delivery events.

Learn more
May 22, 2024
Integrations
Store and query embeddings with MongoDB Atlas Vector Search

Orkes Conductor now supports MongoDB as a vector database integration, enabling workflows to store and query embeddings using MongoDB Atlas Vector Search.

Learn more
May 16, 2024
Integrations
Store and search embeddings with Postgres vector database

Orkes Conductor now supports Postgres (pgvector) as a vector database integration, enabling workflows to store and search embeddings using a Postgres-backed vector store.

Learn more
Mar 14, 2024
Integrations
Trigger workflows from Stripe payment events

Conductor webhooks now support Stripe as a source, enabling workflows to be triggered from Stripe payment events.

Learn more
Mar 10, 2024
Integrations
Connect workflows to IBM MQ message queues

Orkes Conductor now supports IBM MQ as a message broker integration, enabling workflows to consume and produce messages on IBM MQ queues.

Learn more
Feb 26, 2024
Integrations
Use AWS Bedrock models in AI workflows

Orkes Conductor now supports integrations with AWS Bedrock, including Anthropic, Cohere, and Titan models hosted on Bedrock. Teams can use these models in AI tasks without managing model infrastructure directly.

Learn more
Feb 20, 2024
Integrations
Trigger workflows from Microsoft Teams events

Conductor webhooks now support Microsoft Teams as a source, enabling workflows to be triggered from Teams events. 

Learn more
Feb 9, 2024
Platform
Reference cluster-level values in workflows with Environment Variables

Environment variables let you define cluster-level values that can be referenced in any workflow. Supports plain text and JSON values, with JSON fields accessible via standard path notation.

Learn more
Jan 06, 2024
Platform
Send messages to an LLM and return structured responses with the LLM Chat Complete task

The new LLM Chat Complete task sends messages to a configured LLM and returns the model's response as task output. Supports system prompts, message history, prompt templates, and prompt variables for dynamic inputs.

Learn more
Introducing Agentspan
We’re open-sourcing Agentspan, a durable runtime for AI agents and an open-source SDK to build, run, and observe agents
Try It Now!