- Print
- DarkLight
- PDF
15 Jan 2020
Features
The ability to encrypt data when processing and storing tasks was added. Encryption feature will be enabled by default for all Corezoid.com clients and is available for configuration for clients with Private Cloud and On-premises hosting types.
Added the Conf Agent application to change basic configuration settings in the web interface and track changes history. Available for hosting types: Private Cloud and On-premises.
Improvements
Now when deploying Corezoid in the AWS environment, you can manage access to AWS services using roles rather than access keys. Available only for hosting type: Private Cloud - AWS.
Removed the requirement to wrap the body of the request with the
<doc></doc>
tag when uploading tasks in XML-format - this will allow for direct integration with services that send webhooks in XML-format.Changed the approach to providing access to the process by Direct URL - now you can use previously created API keys:
Limited the number of objects displayed in the search results - now the first 30 objects corresponding to the entered query are displayed:
Added display of spaces in the task reference parameter and ability to search for such tasks:
Fixes
- Error during deploying the process with Erlang code in the Code node;
- Error when calling Sync API with disabled Send system parameters option
- Incorrect line number with an error when importing from .csv;
- Added headers parameter validation (check for Cyrillic characters);
- Empty search results after changing the current company in another browser window;
- Fixed the progress bar when you upload the files;
- Corrected hiding the add node panel when you try to add a node on the link between nodes;
- Error when going to the Trash menu with an opened information panel.
Notes to the next releases
Changes in downloading and importing objects. TThe transition to the .zip format instead of .json with backward compatibility support for .json import. This means that you will be able to import previously downloaded objects from .json files, but all new objects will be downloaded in the .zip files.
The Delay Node. The minimum time interval setting is planned to be added for the tasks in the Delay node (by default 2 sec), which cannot be bypassed with the
$unixtime()
function; write us at support@corezoid.com if you need to set a smaller value for your processes to work.The size of the task. The maximum task size in Corezoid.com is planned to be limited to 128 KB. Be sure to email us at support@corezoid.com if you are processing larger tasks.
Note: Changes are planned:
In v 4.3 (tentatively - August 7, 2019), a string with JSON data will not be perceived as a JSON object if, when working with data, access to its properties is implied.
For example, from a string with JSON data
{
"obj":"{\"key\":\"value\"}" // type String
}
It will not be possible to get the value of the key
({{obj.key}}
) parameter or process it.
- In v5.0, the request URL to Corezoid API for copying objects will be changed:
Old URL: https://admin.corezoid.com/api/2/json
New URL: https://admin.corezoid.com/api/2/copy
{
"ops": [
"type": "create",
"obj": "obj_copy",
"obj_type": "folder",
"obj_id": {{copy_folder_id}},
"folder_id": {{to_folder_id}},
"title": "{{folder_new_name}}",
"company_id": "{{company_id}}"
}