Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: UiPath/uipathcli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.46
Choose a base ref
...
head repository: UiPath/uipathcli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.47
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Oct 14, 2025

  1. Preserve slash in path parameter

    The slash in the path parameter should not be escaped in order to
    support multi path segment parameters.
    
    Example:
    
    This change allows the support for storage object keys in the path.
    The following specification would allow `objectKey`s to contain a slash
    for folder support:
    
    ```
    paths:
      /api/{objectKey}:
        parameters:
        - name: objectKey
          in: path
          required: true
          description: The object key
          schema:
            type: string
        get:
          operationId: download
          summary: Download file
    ```
    thschmitt committed Oct 14, 2025
    Configuration menu
    Copy the full SHA
    ade7fd0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #206 from UiPath/fix/handle-slash-path-parameter

    Preserve slash in path parameter
    thschmitt authored Oct 14, 2025
    Configuration menu
    Copy the full SHA
    7289bc4 View commit details
    Browse the repository at this point in the history
Loading