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

Orchestrator 发行说明
上次更新日期 2025年9月9日
2023.10.4
link发行日期:2024 年 4 月 3 日
错误修复
link-
勘误 - 添加于 2024 年 12 月 15 日:我们之前解决了 2024 年 7 月 3 日的勘误中的一个问题,该问题关于由于表单验证问题而无法在电子邮件设置中保存自定义配置。具体问题是,即使已正确填写表单中的所有必填字段,“保存”按钮也显示为灰色。我们曾经表示,此问题已得到解决,用户能够在所有必填字段均如实填写后成功提交表单。但是,经进一步查看,我们遗憾地通知您,此问题尚未完全解决。对于由此造成的任何混淆或不便,我们深表歉意,并向您保证,我们正在积极寻找最终解决方案。在“已知问题”部分中查找临时解决方法。
- 提高了从包含大量资产的文件夹中获取项目的性能。
UiPath.dbo.OrganizationUnits
数据库表中的Path
列将根据Code
列进行更新。如果Code
列包含已删除子文件夹的不正确或过时的值,则安装程序会将其更新为NULL
,这违反了升级时的验证要求。这主要发生在删除子文件夹并随后移动其父文件夹的情况。已通过在这些场景中根据Key
列更新Path
列(不再返回NULL
)来解决此问题。- 对于 2023.4 及更高版本,由于
<add name="X-Content-Type-Options" value="nosniff" />
,identity/.well-known/openid-configuration
无法加载。因此,您必须从身份appsettings.Production.json
文件中将其删除。 - This release brings security updates and patches to address Common Vulnerabilities and Exposures (CVEs).
- 提升权限检查不再包括来自已禁用服务的权限。因此,当您尝试为其他用户分配权限时,将不会再发生以下错误:“禁止操作:您选择的至少一个角色会授予更多权限。请删除 {role_name} 角色以继续操作。(#1437)”。
已知问题
link在电子邮件设置中保存自定义配置时出现问题
勘误 - 添加于 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"
下载位置
link您可以从 Customer Portal 下载最新的产品版本。