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: dotnet/aspire
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v13.1.0
Choose a base ref
...
head repository: dotnet/aspire
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v13.1.1
Choose a head ref
  • 8 commits
  • 33 files changed
  • 10 contributors

Commits on Jan 7, 2026

  1. [release/13.1] Ensure WithHostHttpsPort works when chained inline (#1…

    …3678)
    
    * Ensure WithHostHttpsPort works outside when chained inline
    
    * Ensure the endpoint is still updated if called after the HTTPS endpoint is registered
    
    ---------
    
    Co-authored-by: David Negstad <David.Negstad@microsoft.com>
    github-actions[bot] and danegsta authored Jan 7, 2026
    Configuration menu
    Copy the full SHA
    7f1fd47 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2026

  1. Escape backslashes in path string (#13822)

    Co-authored-by: David Negstad <David.Negstad@microsoft.com>
    github-actions[bot] and danegsta authored Jan 13, 2026
    Configuration menu
    Copy the full SHA
    cc4876b View commit details
    Browse the repository at this point in the history
  2. [release/13.1] [Testing] Fixing bugs for sticky slot app settings (#1…

    …3810)
    
    * Fixing bugs for sticky slot app settings
    
    * Fix max host prefix length
    
    * nit fix
    
    * Fixes
    
    * app service references
    
    * Updated Azure.Provisioning.AppService to 1.3.1 to add support for sticky app settings for deployment slots.
    
    * Fxing unit tests
    
    * nit fix
    
    * Added doc
    
    * Added notes justifying the hostname constants
    
    * Reverting non-essential refactoring
    
    * minor fixes for PR comments
    
    * nit fixes
    
    ---------
    
    Co-authored-by: Shilpi Rachna <shilpir@microsoft.com>
    github-actions[bot] and ShilpiR authored Jan 13, 2026
    Configuration menu
    Copy the full SHA
    1ac45fb View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2026

  1. [release/13.1] Fix AzureBicepResource file-not-found error when using…

    … templateFile with AzurePublishingContext (#14018)
    
    * Initial plan
    
    * Fix AzureBicepResource template file handling and add test
    
    - Convert relative template file paths to absolute in constructor
    - Copy template files to output directory when directory parameter is provided
    - Add test to verify bicep resources with template files can be published
    
    Co-authored-by: eerhardt <8291187+eerhardt@users.noreply.github.com>
    
    * Fix AzureBicepResource template file handling
    
    - Don't combine paths if TemplateFile is specified
    - Add test to verify bicep resources with template files can be published
    
    Fix #13967
    
    ---------
    
    Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
    Co-authored-by: eerhardt <8291187+eerhardt@users.noreply.github.com>
    Co-authored-by: Eric Erhardt <eric.erhardt@microsoft.com>
    4 people authored Jan 20, 2026
    Configuration menu
    Copy the full SHA
    94bdf85 View commit details
    Browse the repository at this point in the history
  2. [release/13.1] Filter dev certs without X509SubjectKeyIdentifierExten…

    …sion when any cert has it (#13676)
    
    * Initial plan
    
    * Filter out dev certs without X509SubjectKeyIdentifierExtension when any cert has it
    
    Co-authored-by: danegsta <50252651+danegsta@users.noreply.github.com>
    
    ---------
    
    Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
    Co-authored-by: danegsta <50252651+danegsta@users.noreply.github.com>
    3 people authored Jan 20, 2026
    Configuration menu
    Copy the full SHA
    333ec1e View commit details
    Browse the repository at this point in the history
  3. [release/13.1] Fix Aspire.ProjectTemplates build failure from command…

    … line length limits (#14009)
    
    * Initial plan
    
    * Update replace-text.cs to use System.CommandLine and .rsp file support
    
    - Added System.CommandLine package directive to replace-text.cs
    - Rewrote the script to use System.CommandLine's Option and RootCommand APIs
    - System.CommandLine automatically supports .rsp files via @ prefix
    - Updated Aspire.ProjectTemplates.csproj to generate .rsp file with arguments
    - Changed script invocation to pass .rsp file instead of command-line arguments
    - This prevents command line length issues when building templates on Windows
    
    Co-authored-by: DamianEdwards <249088+DamianEdwards@users.noreply.github.com>
    
    * Improve error handling in replace-text.cs script
    
    - Replace Environment.Exit() calls with proper return statements
    - Add try-catch block around the entire action handler
    - Return exit codes from the action handler instead of calling Environment.Exit()
    - This allows proper cleanup and makes the script more testable
    
    Co-authored-by: DamianEdwards <249088+DamianEdwards@users.noreply.github.com>
    
    * Build replace-text.cs to executable before running to avoid dotnet CLI expanding .rsp
    
    The dotnet CLI itself uses System.CommandLine and expands .rsp files before passing
    arguments, which means we still hit the command line limit when using 'dotnet script.cs'.
    
    Now the build process:
    1. Builds the script to an executable using 'dotnet build'
    2. Runs the compiled executable directly with '@response.rsp'
    3. This avoids the dotnet CLI intermediary and prevents .rsp expansion
    
    The compiled executable is placed in artifacts/bin/replace-text/Debug/
    
    Co-authored-by: DamianEdwards <249088+DamianEdwards@users.noreply.github.com>
    
    * Remove accidentally committed test files
    
    Co-authored-by: DamianEdwards <249088+DamianEdwards@users.noreply.github.com>
    
    * Use dotnet script.cs with -- to avoid CLI expanding .rsp file
    
    Per feedback, the simpler approach is to use 'dotnet script.cs -- @response.rsp'
    where the '--' tells dotnet CLI to pass arguments directly to the script without
    interpretation. This avoids the CLI expanding the .rsp file and hitting command
    line limits.
    
    The script still needs to be built once (dotnet does this automatically when
    running .cs files), so we keep the build step to ensure it's compiled before use.
    
    Co-authored-by: DamianEdwards <249088+DamianEdwards@users.noreply.github.com>
    
    * Remove explicit build step for replace-text script
    
    The build step is not needed. When using 'dotnet script.cs -- @response.rsp',
    dotnet automatically compiles and caches the script as needed. The explicit
    build step was redundant.
    
    Co-authored-by: DamianEdwards <249088+DamianEdwards@users.noreply.github.com>
    
    * Fix formatting
    
    ---------
    
    Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
    Co-authored-by: DamianEdwards <249088+DamianEdwards@users.noreply.github.com>
    Co-authored-by: Damian Edwards <damian@damianedwards.com>
    4 people authored Jan 20, 2026
    Configuration menu
    Copy the full SHA
    4b2f631 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2026

  1. Configuration menu
    Copy the full SHA
    6d13bff View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2026

  1. Bump patch version from 13.1.0 to 13.1.1 (#14329)

    * Initial plan
    
    * Bump patch version from 13.1.0 to 13.1.1
    
    Co-authored-by: joperezr <13854455+joperezr@users.noreply.github.com>
    
    ---------
    
    Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
    Co-authored-by: joperezr <13854455+joperezr@users.noreply.github.com>
    Copilot and joperezr authored Feb 5, 2026
    Configuration menu
    Copy the full SHA
    6c6cd23 View commit details
    Browse the repository at this point in the history
Loading