-
Notifications
You must be signed in to change notification settings - Fork 816
Comparing changes
Open a pull request
base repository: dotnet/aspire
base: v13.1.0
head repository: dotnet/aspire
compare: v13.1.1
- 8 commits
- 33 files changed
- 10 contributors
Commits on Jan 7, 2026
-
[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>
Configuration menu - View commit details
-
Copy full SHA for 7f1fd47 - Browse repository at this point
Copy the full SHA 7f1fd47View commit details
Commits on Jan 13, 2026
-
Escape backslashes in path string (#13822)
Co-authored-by: David Negstad <David.Negstad@microsoft.com>
Configuration menu - View commit details
-
Copy full SHA for cc4876b - Browse repository at this point
Copy the full SHA cc4876bView commit details -
[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>
Configuration menu - View commit details
-
Copy full SHA for 1ac45fb - Browse repository at this point
Copy the full SHA 1ac45fbView commit details
Commits on Jan 20, 2026
-
[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>
Configuration menu - View commit details
-
Copy full SHA for 94bdf85 - Browse repository at this point
Copy the full SHA 94bdf85View commit details -
[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>
Configuration menu - View commit details
-
Copy full SHA for 333ec1e - Browse repository at this point
Copy the full SHA 333ec1eView commit details -
[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>
Configuration menu - View commit details
-
Copy full SHA for 4b2f631 - Browse repository at this point
Copy the full SHA 4b2f631View commit details
Commits on Feb 2, 2026
-
Configuration menu - View commit details
-
Copy full SHA for 6d13bff - Browse repository at this point
Copy the full SHA 6d13bffView commit details
Commits on Feb 5, 2026
-
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>
Configuration menu - View commit details
-
Copy full SHA for 6c6cd23 - Browse repository at this point
Copy the full SHA 6c6cd23View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v13.1.0...v13.1.1