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/razor
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 90f580c3fa
Choose a base ref
...
head repository: dotnet/razor
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 41f62d0b80
Choose a head ref
  • 6 commits
  • 10 files changed
  • 5 contributors

Commits on Feb 13, 2025

  1. Fix a couple of options in the old options screen

    davidwengier authored and github-actions committed Feb 13, 2025
    Configuration menu
    Copy the full SHA
    21c1168 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2025

  1. [release/dev17.13] Fix a couple of options in the old options screen (#…

    …11487)
    
    Backport of #11486 to release/dev17.13
    
    /cc @davidwengier
    
    ## Customer Impact
    
    ## Regression
    
    - [ ] Yes
    - [x] No
    
    [If yes, specify when the regression was introduced. Provide the PR or
    commit if known.]
    
    ## Testing
    
    [How was the fix verified? How was the issue missed previously? What
    tests were added?]
    
    ## Risk
    
    [High/Medium/Low. Justify the indication by mentioning how risks were
    measured and addressed.]
    davidwengier authored Feb 14, 2025
    Configuration menu
    Copy the full SHA
    2405f88 View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2025

  1. Update dependencies from https://github.com/dotnet/arcade build 20250…

    …211.5
    
    Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk
     From Version 9.0.0-beta.24572.2 -> To Version 9.0.0-beta.25111.5
    dotnet-maestro[bot] committed Feb 19, 2025
    Configuration menu
    Copy the full SHA
    64f055d View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2025

  1. [release/dev17.13] Update dependencies from dotnet/arcade (#11514)

    This pull request updates the following dependencies
    
    [marker]: <> (Begin:2754f620-58c7-4d28-9095-a885a11404d9)
    ## From https://github.com/dotnet/arcade
    - **Subscription**: 2754f620-58c7-4d28-9095-a885a11404d9
    - **Build**: 20250211.5
    - **Date Produced**: February 11, 2025 11:57:34 PM UTC
    - **Commit**: 5da211e1c42254cb35e7ef3d5a8428fb24853169
    - **Branch**: refs/heads/release/9.0
    
    [DependencyUpdate]: <> (Begin)
    
    - **Updates**:
    - **Microsoft.SourceBuild.Intermediate.arcade**: [from
    9.0.0-beta.24572.2 to 9.0.0-beta.25111.5][1]
    - **Microsoft.DotNet.Arcade.Sdk**: [from 9.0.0-beta.24572.2 to
    9.0.0-beta.25111.5][1]
    
    [1]: dotnet/arcade@b41381d...5da211e
    
    [DependencyUpdate]: <> (End)
    
    - **Updates to .NET SDKs:**
      - Updates sdk.version to 9.0.103
      - Updates tools.dotnet to 9.0.103
    
    [marker]: <> (End:2754f620-58c7-4d28-9095-a885a11404d9)
    akhera99 authored Feb 20, 2025
    Configuration menu
    Copy the full SHA
    251a2f9 View commit details
    Browse the repository at this point in the history
  2. Fix issue where RemoteServiceInvoker never initializes

    The first time that a remote service call is made by RemoteServiceInvoker, it calls into Roslyn OOP to initialize itself. However, the CancellationToken that's passed for initialization is the same one that is passed by the original service caller. If that token is cancelled by the caller during initialization, RemoteServiceInvoker will get stuck and never actually make a remote service call because the initialization task will forever be in a cancelled state.
    
    The fix for this issue is to make RemoteServiceInvoker disposable, and add a CancellationTokenSource that is cancelled when the invoker itself is dispose. Then, pass that CancellationTokenSource's token to initialization.
    DustinCampbell authored and davidwengier committed Feb 20, 2025
    Configuration menu
    Copy the full SHA
    2296f9d View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2025

  1. Configuration menu
    Copy the full SHA
    41f62d0 View commit details
    Browse the repository at this point in the history
Loading