cicd-integrations
2025.10
true
CI/CD integrations release notes
Last updated May 22, 2026
Release date: 6 November 2025
What's new
Solutions support
Azure DevOps extension 6.0 introduces full support for UiPath Solutions with new pipeline tasks:
- UiPath Solution Pack - Pack Solutions into distributable artifacts (
solution pack) - UiPath Solution Upload Package - Upload Solution package to Automation Cloud (
solution upload-package) - UiPath Solution Delete Package - Remove Solution package (
solution delete-package) - UiPath Solution Download Package - Download Solution package (
solution download-package) - UiPath Solution Download Config - Download Solution configuration (
solution download-config) - UiPath Solution Deploy - Deploy Solution package to target environment (
solution deploy) - UiPath Solution Activate Deployment - Activate Solution deployment with environment-specific settings (
solution deploy-activate) - UiPath Solution Uninstall Deployment - Uninstall Solution deployment from environment (
solution deploy-uninstall)
CLI integration updates
- Now installs UiPath CLI 25.10 by default.
- Supports all three CLI flavors:
UiPath.CLI.WindowsUiPath.CLI.LinuxUiPath.CLI.Windows.Legacy
- Breaking change: Older CLI versions (23.x / 24.x) are no longer automatically installed
Enhanced task capabilities
- Updated all existing tasks (@6 version) to support CLI 25.10 features
- Improved error handling and logging
- Better support for environment-specific configurations
Requirements
- Requires UiPath CLI 25.10 or later
- Compatible with Automation Cloud Orchestrator
- Solutions deployment is currently supported only in Automation Cloud
Migration notes
When upgrading to extension 6.0:
- Update pipeline YAML to use task version
@6. - Specify CLI version
25.10inUiPathInstallPlatformtask. - Update CLI package references in custom scripts.
- Review and test all pipeline definitions before production deployment.
Breaking changes
Important:
Azure DevOps Extension 6.0 introduces significant changes to CLI version management. Review these breaking changes carefully before upgrading.
CLI version availability
What changed
- The CLI version dropdown in UiPathInstallPlatform now lists only UiPath CLI 25.10 and later versions.
- Older versions (23.x, 24.x) are no longer available for automatic installation through the extension.
Action required
- Update all Azure DevOps pipeline YAML files to reference CLI version 25.10 or later.
- Replace any references to older CLI versions in your pipelines.
CLI flavor separation
What changed
The UiPath CLI is now distributed in three separate packages:
UiPath.CLI.Windows- for Cross-platform and Windows (non-legacy) projectsUiPath.CLI.Linux- for Cross-platform projects on LinuxUiPath.CLI.Windows.Legacy- for Windows - Legacy projects only
Why this matters
- Windows - Legacy projects can no longer be packaged using UiPath.CLI.Windows.
- You must use UiPath.CLI.Windows.Legacy for all Windows - Legacy projects.
Action required
- Identify which project types exist in your repository.
- Update your pipeline to install the appropriate CLI flavor(s).
Mixed project types in the same repository
What changed
If your repository contains both Windows - Legacy projects and other project types (Cross-platform or Windows non-legacy), you must:
-
Install multiple CLI flavors in your pipeline:
UiPath.CLI.Windows(for Cross-platform and Windows projects)UiPath.CLI.Windows.Legacy(for Windows - Legacy projects)
-
Organize your build stages to process each project type with the correct CLI.
Example pipeline approach
# Install CLI for Cross-platform and Windows (non-legacy) projects
- task: UiPathInstallPlatform@6
displayName: 'Install UiPath CLI Windows'
inputs:
cliVersion: 'Windows.25.10.0-20251104-11'
# Build modern projects
- task: UiPathPack@6
displayName: 'Pack Modern Projects'
inputs:
# Pack cross-platform and Windows (non-legacy) projects
# Install CLI for Windows - Legacy projects
- task: UiPathInstallPlatform@6
displayName: 'Install UiPath CLI Windows Legacy'
inputs:
cliVersion: 'Windows.Legacy.25.10.9424.14050'
# Build legacy projects
- task: UiPathPack@6
displayName: 'Pack Legacy Projects'
inputs:
# Pack Windows - Legacy projects
# Install CLI for Cross-platform and Windows (non-legacy) projects
- task: UiPathInstallPlatform@6
displayName: 'Install UiPath CLI Windows'
inputs:
cliVersion: 'Windows.25.10.0-20251104-11'
# Build modern projects
- task: UiPathPack@6
displayName: 'Pack Modern Projects'
inputs:
# Pack cross-platform and Windows (non-legacy) projects
# Install CLI for Windows - Legacy projects
- task: UiPathInstallPlatform@6
displayName: 'Install UiPath CLI Windows Legacy'
inputs:
cliVersion: 'Windows.Legacy.25.10.9424.14050'
# Build legacy projects
- task: UiPathPack@6
displayName: 'Pack Legacy Projects'
inputs:
# Pack Windows - Legacy projects
Important notes
- There is no automatic detection of project types. You must know which projects are Windows - Legacy.
- Consider organizing projects by type in separate folders for easier pipeline management.
- Refer to UiPath Install Platform (Azure DevOps) for detailed guidance.
.NET Runtime requirements
What changed
- All UiPath CLI 25.10 packages require .NET 8 Runtime. Previous versions used .NET 6.
Action required
- Ensure all Azure DevOps agents have .NET Desktop Runtime 8 (Windows) or .NET Runtime 8 (Linux) installed.
- Update agent setup scripts and documentation to install .NET 8.