Deluge Updates & Release Notes
27 updates curated from 1 source by the Releasebot Team. Last updated: Aug 26, 2026
- Aug 25, 2026
- Date parsed from source:Aug 25, 2026
- First seen by Releasebot:Aug 26, 2026
Throw statement in Deluge
Deluge introduces the throw statement, giving scripts explicit control over error handling with custom exceptions, optional data payloads, and catch block handling for failed conditions.
The throw statement has been introduced in Deluge, giving you explicit control over error handling in your scripts. When a condition fails, such as an API returning an error, a validation check not passing, or a business rule being violated, you can use throw to immediately stop script execution and raise a custom exception with a message and an optional data payload of any Deluge type. Control is then passed to the nearest matching catch block for handling.
If no catch block is available, the script terminates and the execution is marked as failed, ensuring failures are never silently swallowed.
For more information, refer to the Throw statement help doc.
Original source - Aug 11, 2026
- Date parsed from source:Aug 11, 2026
- First seen by Releasebot:Apr 19, 2026
- Modified by Releasebot:Aug 13, 2026
Arabic language in toWords
Deluge adds Arabic language support in toWords() with the 'ar' code.
We've rolled out support for the Arabic language in the toWords() function. This language is now identifiable using the 'ar' code.
For more information, visit toWords help doc.
Original source All of your release notes in one feed
Join Releasebot and get updates from Zoho and hundreds of other software products.
- Jul 15, 2026
- Date parsed from source:Jul 15, 2026
- First seen by Releasebot:Aug 1, 2026
BYOC in Custom Services
Deluge adds Enable Custom Credentials for Custom Services, letting each user enter their own client ID and secret when creating a connection. This supports OAuth 1.0 and OAuth 2.0 and helps keep service creator credentials private and reusable only by the right user.
We've introduced the Enable Custom Credentials option while creating a service under Custom Services. When enabled during service creation, the client ID and client secret are no longer set at the service level. Instead, each user is prompted to enter their own client ID and client secret while creating a connection for that service, which are then used to generate the authentication tokens. This lets each user in your organization work with their own unique credentials and ensures that the service creator's credentials cannot be accessed or reused by others.
This option is supported for services using OAuth 1.0 and OAuth 2.0 authentication.
For more information, visit the Connections help doc.
Original source - Jul 15, 2026
- Date parsed from source:Jul 15, 2026
- First seen by Releasebot:Aug 1, 2026
Advanced Configuration in Custom Services
Deluge adds an Advanced Configuration section for Custom Services with client authentication and dynamic parameters.
We've introduced a new Advanced Configuration section while creating a service in Custom Services. It offers two options:
- Client Authentication: Specifies how the client_id and client_secret are sent to the OAuth token endpoint. You can choose to send them in the request body or in the Basic Auth header.
- Dynamic Parameters: Lets you use dynamic parameters ({ParamLinkName}) as placeholders in Deluge webhook task URLs and connection authentication URLs.
For more information, visit the Connections help doc.
Original source - Jul 15, 2026
- Date parsed from source:Jul 15, 2026
- First seen by Releasebot:Aug 1, 2026
Send Mail Task deprecated for Zoho Webinar
Deluge removes Send Mail support for Zoho Webinar and directs users to native webinar email workflows.
The Deluge Send Mail task is no longer supported for Zoho Webinar. Going forward, only the native mail functionality available within Zoho Webinar can be used to send emails in the context of Webinar workflows.
For more information, visit the Send Mail task help doc.
Original source Similar to Deluge with recent updates:
- Zoho One updates47 release notes · Latest Jul 1, 2026
- Notion updates128 release notes · Latest Aug 31, 2026
- OpenAI updates191 release notes · Latest Sep 1, 2026
- Claude Developer Platform updates156 release notes · Latest Sep 1, 2026
- Antigravity updates48 release notes · Latest Aug 26, 2026
- Anthropic updates61 release notes · Latest Sep 1, 2026
- Jun 29, 2026
- Date parsed from source:Jun 29, 2026
- First seen by Releasebot:Jun 29, 2026
New Zoho Learn Integration tasks
Deluge adds Zoho Learn integration tasks for courses, members, learner status, and course reports.
We've introduced new integration tasks for Zoho Learn in Deluge which enable you to automate and perform a diverse range of actions. The four available tasks are:
- Get Course: Fetches the details of a course from your Zoho Learn portal using its URL.
- Add Members to a Course: Adds one or more members to a specified course in Zoho Learn.
- Update Learner Status: Updates the completion status of a learner in a specified course.
- Course Report: Retrieves the completion and progress report for all learners in a specified course.
For more information, visit the Zoho Learn Integration Tasks help doc.
Original source - Jun 22, 2026
- Date parsed from source:Jun 22, 2026
- First seen by Releasebot:Jun 23, 2026
New setFilePassword task
Deluge introduces the setFilePassword task, adding password protection for PDF and ZIP file objects so users can encrypt files and control access with a specified password.
The setFilePassword task has been introduced in Deluge, allowing you to encrypt and password-protect PDF and ZIP file objects. Once applied, the file can only be accessed by entering the specified password. Please be aware that this task does not return a value, instead the password is applied directly to the file object.
For PDF files, the password supports a maximum of 32 characters. If a longer password is provided, only the first 32 characters will be used. Additionally, this task can only be used on files that are not already password-protected. Please note that existing passwords cannot be modified, replaced, or removed.
For more information, visit the setFilePassword help doc.
Original source - May 21, 2026
- Date parsed from source:May 21, 2026
- First seen by Releasebot:May 22, 2026
Enhancements to Encryption Tasks
Deluge adds a new character_set parameter to base64Encode and base64Decode, with UTF-8, UTF-16LE, and UTF-16BE support by defaulting to UTF-8. Deluge also introduces base32Encode and base32Decode tasks for Base32 encoding and decoding.
character_set Parameter for base64Encode and base64Decode
The base64Encode and base64Decode tasks have been enhanced with a new character_set parameter that specifies the character set to be used during encoding and decoding. If this parameter is not specified, UTF-8 is applied by default.
Supported values:
- UTF-8 (Default)
- UTF-16LE
- UTF-16BE
For more information, visit the base64Encode and base64Decode help docs.
New Encryption Tasks: base32Encode and base32Decode
Two new encryption tasks, base32Encode and base32Decode, have been introduced in Deluge. These tasks allow you to encode and decode data using the Base32 encoding scheme.
For more information, visit the base32Encode and base32Decode help docs.
Original source - Apr 16, 2026
- Date parsed from source:Apr 16, 2026
- First seen by Releasebot:Apr 19, 2026
Enhancements to the convertToPDF task
Deluge enhances convertToPDF with 20+ optional parameters for finer PDF layout and formatting control.
We've enhanced the convertToPDF task to offer greater flexibility in customizing PDF outputs. You can now tailor the generated PDF using optional parameters passed as key-value pairs within the options_collection.
With support for 20+ parameters, including options like scale, orientation (landscape), margins (top, bottom, etc.), and more. These enable you have finer control over the layout and formatting of your PDFs.
For more information, visit convertToPDF help doc.
Original source - Apr 15, 2026
- Date parsed from source:Apr 15, 2026
- First seen by Releasebot:Apr 19, 2026
Zoho CRM integration tasks V8
Deluge adds Zoho CRM integration tasks on V8 APIs for record, search, file, and lead operations.
We’ve introduced a new set of integration tasks for Zoho CRM, built on the latest V8 APIs. These tasks enable you to perform a wide range of CRM operations directly from Deluge.
The available tasks include:
- Create Record
- Bulk Create Records
- Get Records
- Get Related Records
- Fetch Record using Record ID
- Update Record
- Bulk Update Records
- Update Related Record
- Search Records
- Attach File
- Convert Lead
- Get Fields
- Upsert Record
For more information, visit Zoho CRM Integration Tasks V8 help doc.
Original source - Feb 10, 2026
- Date parsed from source:Feb 10, 2026
- First seen by Releasebot:Apr 19, 2026
Zoho Webinar and Zoho Show integration tasks
Deluge adds new Zoho Webinar and Zoho Show integration tasks to automate more actions.
We've introduced new integration tasks for Zoho Webinar and Zoho Show in Deluge which enable you to automate and perform a diverse range of actions. Currently, 17 tasks are available for Zoho Webinar and 5 tasks for Zoho Show.
For more information, visit Zoho Webinar Integration Tasks and Zoho Show Integration Tasks .
Original source - Jan 6, 2026
- Date parsed from source:Jan 6, 2026
- First seen by Releasebot:Apr 19, 2026
Enhancements to Translate task
Deluge expands its Translate task with support for 57 more languages, bringing total coverage to 74 languages.
The Translate task is now more powerful with support for 57 additional languages. With this update, you can use the task to translate content across 74 languages.
For more information, visit the Translate task help docs.
Original source - Nov 28, 2025
- Date parsed from source:Nov 28, 2025
- First seen by Releasebot:Apr 19, 2026
New request method in invokeUrl and invokeAPI
Deluge adds OPTIONS support in invokeUrl and invokeAPI for checking permitted server actions before making requests.
We've introduced support for a new HTTP request method, OPTIONS, within the invokeUrl and invokeAPI Deluge tasks. This method allows you to check which actions a server permits before making an actual request. Please note that this method does not send or modify data; it simply queries the server to understand what operations are allowed.
For more information, visit the invokeUrl task and invokeAPI task help docs.
Original source - Nov 14, 2025
- Date parsed from source:Nov 14, 2025
- First seen by Releasebot:Apr 19, 2026
Zia Deluge task
Deluge adds the Zia task, an AI-powered function for generative AI workflows that automates text generation, information extraction, and content summarization. It lets users prompt LLMs directly and choose an AI vendor, including Zoho’s own model, OpenAI, and Google Gemini.
The Zia task in Deluge is an AI-powered function that allows you to harness the power of generative AI. It helps automate content-heavy or repetitive tasks such as generating text, extracting information from documents, summarising content, and more.
The Zia task functions like any other generative AI workflow; you simply provide a prompt, and it uses large language models (LLMs) to produce natural language output.
Additionally, you also have the flexibility to choose your preferred AI vendor. Zia can be powered by Zoho's own LLM or external vendors such as OpenAI, Google Gemini, and more.
For more information, visit the Zia task help doc.
Original source - Oct 21, 2025
- Date parsed from source:Oct 21, 2025
- First seen by Releasebot:Apr 19, 2026
Enhancements to Zoho Map Integration Tasks
Deluge improves Zoho Map integration tasks with faster, more scalable backend processing and a new structured JSON-like response format. It also boosts distance calculation accuracy and response times, while tagging existing scripts with v1 to support migration before the old format is deprecated.
We've rolled out backend enhancements for Zoho Map integration tasks (Geocode, Reverse Geocode, and Distance Between) to improve performance and scalability. You'll notice quicker results when calling map-related tasks. The primary aim of this update is to provide more structured and detailed responses in a JSON-like format. Additionally, the update brings improved distance calculation accuracy and faster response times. Going forward, any new Map tasks would be in the new format. To help with migration, existing Map task scripts will be automatically tagged with v1 (e.g., zoho.map.v1.geoCode). Please update your Deluge scripts to handle the new response structure and test thoroughly to ensure compatibility. The old format will be deprecated on January 16, 2026.
For more information, visit the Deluge community post .
Original source
Curated by the Releasebot team
Releasebot is an aggregator of official product update announcements from hundreds of software vendors and thousands of sources.
Our editorial process involves the manual review and audit of release notes procured with the help of automated systems.