UiPath Documentation
orchestrator
latest
false
Orchestrator 发行说明
重要 :
新发布内容的本地化可能需要 1-2 周的时间才能完成。

2023 年 1 月

适用于 Automation Cloud 中 Orchestrator 的 2023 年 1 月发行说明。

2023 年 1 月 31 日​

重大变更​

上次登录时间不再可用​

A few weeks ago, we announced that the Last Login column will soon be removed from the Orchestrator tenant-level License page for Attended licenses.

此后,我们使用用于检索此信息的 API 替代方法更新了公告。

有关详细信息,请参阅下方的初始发行说明。

2023 年 1 月 30 日​

改进​

在后台导出网格​

Nothing stops you from interacting with Orchestrator anymore, not even exporting grids! The improved capability allows you to export your data in the background, allowing you to continue working on other tasks while the export is prepared. Additionally, you will be notified in real-time about the status of the export. Moreover, you can find all of your exports centralized in the new My reports page, from where you can download them.

了解有关在后台导出网格的更多信息。

导出操作的新警示​

电子邮件订阅存在一个新警示:“导出”警示,用于通知您导出成功或失败。默认情况下,您将在警示电子邮件中收到此新警示,但如果该电子邮件像垃圾邮件般发送至您的电子邮箱,则您可以取消订阅。

2023 年 1 月 23 日​

更新服务器变更内容​

如果已禁用更新服务器模块,则机器人计算机上的更新服务将不再检查更新。

通过 API 从外部订阅源上传包​

You can now upload an automation package from an external feed via the /odata/Processes/UiPath.Server.Configuration.OData.SetArguments endpoint. Make sure the package arguments are the same as the arguments displayed on the Processes page in Orchestrator, as Orchestrator does not validate packages from external feeds.

2023 年 1 月 11 日​

Automation Users 角色权限​

默认情况下,系统现在会在租户级别的“Automation Users 角色”中启用“执行介质”权限的“创建”选项。

错误修复​

The process version included in the Job Details window was incorrect, displaying the latest version uploaded to Orchestrator. Now, the Process Version field correctly renders the version used to run the job.

2023 年 1 月 5 日​

重大变更​

队列项目的最终状态为“最终”​

在 2022 年,我们已允许通过“设置事务状态”活动 为状态设置为“失败”的事务设置“输出”和“分析”数据。为确保队列项目之间最终状态的一致性,我们在调用SetTransactionResult端点时强制执行错误响应:

  • 失败的项目上包含成功负载
    POST https://localhost:0000/odata/Queues(1)/UiPathODataSvc.SetTransactionResult
    {
      "transactionResult": {
        "IsSuccessful": true
      }
    }
    POST https://localhost:0000/odata/Queues(1)/UiPathODataSvc.SetTransactionResult
    {
      "transactionResult": {
        "IsSuccessful": true
      }
    }
    
  • 成功的项目上包含失败负载
    POST https://localhost:0000/odata/Queues(1)/UiPathODataSvc.SetTransactionResult
    {
      "transactionResult": {
        "IsSuccessful": false,
        "ProcessingException": {
          "Reason": "string",
          "Details": "string",
          "Type": "ApplicationException"
        }
      }
    }
    POST https://localhost:0000/odata/Queues(1)/UiPathODataSvc.SetTransactionResult
    {
      "transactionResult": {
        "IsSuccessful": false,
        "ProcessingException": {
          "Reason": "string",
          "Details": "string",
          "Type": "ApplicationException"
        }
      }
    }
    

错误代码为 1866,并显示消息“从最终状态开始的转换无效”。这表示您无法在队列项目达到最终状态后更改状态。

除了优化队列处理机制外,这还使 UiPath Insights 能够根据队列项目事件更新和正确同步数据。

备注:

此行为限制自 2023 年 4 月起适用于企业版用户。有关详细信息,请参阅我们的弃用时间表。

重要提示:

You'll be receiving the same error code when you use the DeferDate or DueDate properties in the SetTransactionResult payload to move transactions out of their final states. Going forward, to set a new defer or due date, you'll need to clone the transaction or create a new one.

错误修复​

Orchestrator 未显示已更新和重新发布的 Studio REF 项目的参数列表。在基于 Robotic Enterprise Framework 模板的 Studio 项目中,在现有参数的基础上添加新参数时,会发生此问题。

2023 年 1 月 9 日​

自定义凭据主机和存储​

Orchestrator 现在提供了必要的基础架构,用于添加和管理您自己的安全凭据存储。为此,我们创建了 Orchestrator Credentials Proxy,该代理通过 .msi 安装程序进行部署或通过 Docker 映像进行部署,您可以将第三方插件集成到现有解决方案中。

Orchestrator 通过凭据代理以使用这些第三方插件。代理创建自 Orchestrator 租户级别的“凭据”菜单中提供的新“代理”页面,并通过公共 URL 和密钥链接到 Credentials Proxy。

To expose the credential stores, on the Stores page, which is also available in the Credentials menu at the tenant level, select the newly created proxy from the Proxy menu. This will display its underlying stores in the Type menu, allowing you to select and define the desired option.

重大变更​

上次登录时间不再可用​

The Last Login column will soon be removed from the Orchestrator tenant-level License page for Attended licenses. This is because the corresponding API endpoint no longer returns column values.

其中的一项好处是,此更改将允许在包含超过 300.000 个 Attended 机器人的环境中更快地加载详细信息。

但是,如果要检索此信息,可以使用 /api/UserPartition/users/{partitionGlobalId} 端点。

我什么时候可以看到这些更改?​

发行说明针对新更改公告的日期即为该更改最早的推出时间。

如果更改尚未出现,请稍加等候,预计在我们将更改推广到所有区域后不久,即会推出。

弃用时间表​

我们建议您定期查看弃用时间表,以获取有关针对即将弃用和删除功能的任何更新。

此页面有帮助吗?

连接

需要帮助? 支持

想要了解详细内容? UiPath Academy

有问题? UiPath 论坛

保持更新