orchestrator
2023.10
false
重要 :
新发布内容的本地化可能需要 1-2 周的时间才能完成。

Orchestrator 发行说明
上次更新日期 2025年11月6日
发布日期:2024 年 4 月 19 日
- 提高了从包含大量资产的文件夹中获取项目的性能。
- 此版本带来了安全更新和补丁,以解决常见漏洞和披露 (CVE)。
- 提升权限检查不再包括来自已禁用服务的权限。因此,当您尝试为其他用户分配权限时,将不会再发生以下错误:“禁止操作:您选择的至少一个角色会授予更多权限。请删除 {role_name} 角色以继续操作。(#1437)”。
- 修复了阻止您将文件上传到 S3 存储桶的问题。
Automation Suite 机器人
此版本带来了安全更新和补丁,以解决常见漏洞和披露 (CVE)。
在电子邮件设置中保存自定义配置时出现问题
勘误 - 添加于 2024 年 12 月 15 日:配置电子邮件设置时,由于表单验证存在问题,无法保存任何自定义配置。尽管已正确填写所有必填字段,但“保存” 按钮错误地显示为灰色。解决方法是,您可以向
/identity_/api/setting 端点发出 PUT 请求。
使用适当的访问令牌,并确保请求正文中包含必要的详细信息。 还要确保将
Email.Smtp.UseDefaultCredentials 设置为 True,如以下示例所示:
{
"Settings": [
{
"Key": "Email.Smtp.Host",
"Value": "SendGrid"
},
{
"Key": "Email.Smtp.Port",
"Value": "587"
},
{
"Key": "Email.Smtp.UserName",
"Value": ""
},
{
"Key": "Email.Smtp.Domain",
"Value": ""
},
{
"Key": "Email.Smtp.FromEmail",
"Value": "no-reply@uipath.com"
},
{
"Key": "Email.Smtp.FromDisplayName",
"Value": "UiPath Platform"
},
{
"Key": "Email.Smtp.EnableSsl",
"Value": "true"
},
{
"Key": "Email.Smtp.UseDefaultCredentials",
"Value": "true"
},
{
"Key": "Email.Smtp.Password",
"Value": ""
},
{
"Key": "Email.Smtp.ConnectionTimeout",
"Value": "180000"
}
],
"PartitionGlobalId": ""
}{
"Settings": [
{
"Key": "Email.Smtp.Host",
"Value": "SendGrid"
},
{
"Key": "Email.Smtp.Port",
"Value": "587"
},
{
"Key": "Email.Smtp.UserName",
"Value": ""
},
{
"Key": "Email.Smtp.Domain",
"Value": ""
},
{
"Key": "Email.Smtp.FromEmail",
"Value": "no-reply@uipath.com"
},
{
"Key": "Email.Smtp.FromDisplayName",
"Value": "UiPath Platform"
},
{
"Key": "Email.Smtp.EnableSsl",
"Value": "true"
},
{
"Key": "Email.Smtp.UseDefaultCredentials",
"Value": "true"
},
{
"Key": "Email.Smtp.Password",
"Value": ""
},
{
"Key": "Email.Smtp.ConnectionTimeout",
"Value": "180000"
}
],
"PartitionGlobalId": ""
}尝试运行 MigrateTo-ResourceCatalog.ps1 脚本时出错
勘误 - 添加于 2024 年 4 月 17 日
尝试运行
MigrateTo-ResourceCatalog.ps1 脚本时,有时会发生以下错误:This command cannot be run due to the error: The system cannot find the file specified. 仅当启动流程命令尝试执行无法找到的文件时,才会发生这种情况。
要解决此问题,我们建议将以下行添加到脚本中的
Init-TempFolder 命令中:$script:cliPath = Join-Path $script:cliPath "\UiPath.ResourceCatalogService.CLI.exe"$script:cliPath = Join-Path $script:cliPath "\UiPath.ResourceCatalogService.CLI.exe"我们建议您定期查看弃用时间表,以获取有关针对即将弃用和删除功能的任何更新。
查看以下页面以获取 Automation Suite 下载链接: