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/fsharp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 31fccb7226
Choose a base ref
...
head repository: dotnet/fsharp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 111eeb61b1
Choose a head ref
  • 16 commits
  • 75 files changed
  • 12 contributors

Commits on Apr 2, 2024

  1. Obsolete attribute was ignored in constructor property assignment. (#…

    …16900)
    
    * Raise an warning when Obsolete attribute is used in constructor property assignment.
    edgarfgp authored Apr 2, 2024
    Configuration menu
    Copy the full SHA
    06c85f0 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2024

  1. Configuration menu
    Copy the full SHA
    1fd472a View commit details
    Browse the repository at this point in the history
  2. Merge pull request #16983 from dotnet/merges/main-to-release/dev17.10

    Merge main to release/dev17.10
    KevinRansom authored Apr 4, 2024
    Configuration menu
    Copy the full SHA
    3cf6ecf View commit details
    Browse the repository at this point in the history
  3. Computed collections: simple count check (#16947)

    * Use count = 0 instead of count < 1
    
    * The count < 1 check was a vestige of an older approach for computing
      the count that could result in a negative count.
    
    * Update baselines
    
    * Update release notes
    brianrourkeboll authored Apr 4, 2024
    Configuration menu
    Copy the full SHA
    71442c8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0e6b7d4 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2024

  1. Merge pull request #16984 from dotnet/merges/main-to-release/dev17.10

    Merge main to release/dev17.10
    vzarytovskii authored Apr 5, 2024
    Configuration menu
    Copy the full SHA
    b2b9c94 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3d95e4e View commit details
    Browse the repository at this point in the history
  3. Add SynExprSequentialTrivia (#16981)

    * Add SynExprSequentialTrivia
    
    * Add release note
    
    * Format
    
    * Apply feedback from code review
    
    * PR is fine
    
    ---------
    
    Co-authored-by: Vlad Zarytovskii <[email protected]>
    nojaf and vzarytovskii authored Apr 5, 2024
    Configuration menu
    Copy the full SHA
    050271d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4bfc3fc View commit details
    Browse the repository at this point in the history
  5. Merge pull request #16994 from dotnet/merges/main-to-release/dev17.10

    Merge main to release/dev17.10
    KevinRansom authored Apr 5, 2024
    Configuration menu
    Copy the full SHA
    838941f View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2024

  1. [main] Update dependencies from dotnet/arcade (#16998)

    * Update dependencies from https://github.com/dotnet/arcade build 20240404.3
    
    Microsoft.DotNet.Arcade.Sdk
     From Version 8.0.0-beta.24179.4 -> To Version 8.0.0-beta.24204.3
    
    * Update dependencies from https://github.com/dotnet/arcade build 20240404.3
    
    Microsoft.DotNet.Arcade.Sdk
     From Version 8.0.0-beta.24179.4 -> To Version 8.0.0-beta.24204.3
    
    ---------
    
    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    dotnet-maestro[bot] and dotnet-maestro[bot] authored Apr 8, 2024
    Configuration menu
    Copy the full SHA
    8e5813c View commit details
    Browse the repository at this point in the history
  2. Speed up for … in xs -> … in computed collections (#16948)

    * Speed up `for … in xs -> …` in computed colls
    
    * Use `Array.map` for [|for … in xs -> …|]` when `xs` is an array.
    
    * Use `List.map` for [for … in xs -> …]` when `xs` is a list.
    
    * Add emitted IL tests
    
    * Update release notes
    
    * Give it its own language feature
    
    * Update release notes
    
    * Fantomas
    
    ---------
    
    Co-authored-by: Vlad Zarytovskii <[email protected]>
    brianrourkeboll and vzarytovskii authored Apr 8, 2024
    Configuration menu
    Copy the full SHA
    468813d View commit details
    Browse the repository at this point in the history
  3. [main] Update dependencies from dotnet/arcade (#16998) (#17000)

    * Update dependencies from https://github.com/dotnet/arcade build 20240404.3
    
    Microsoft.DotNet.Arcade.Sdk
     From Version 8.0.0-beta.24179.4 -> To Version 8.0.0-beta.24204.3
    
    * Update dependencies from https://github.com/dotnet/arcade build 20240404.3
    
    Microsoft.DotNet.Arcade.Sdk
     From Version 8.0.0-beta.24179.4 -> To Version 8.0.0-beta.24204.3
    
    ---------
    
    Co-authored-by: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    Co-authored-by: Vlad Zarytovskii <[email protected]>
    4 people authored Apr 8, 2024
    Configuration menu
    Copy the full SHA
    e0093e7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    04f37a9 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #17001 from dotnet/merges/main-to-release/dev17.10

    Merge main to release/dev17.10
    T-Gro authored Apr 8, 2024
    Configuration menu
    Copy the full SHA
    9160ab7 View commit details
    Browse the repository at this point in the history
  6. Fix 16071 --- FSharp.DependencyManager.Nuget ignoring sources (#16991) (

    #17003)
    
    * Fix 16071
    
    * tweaks
    
    * Automated command ran: fantomas
    
      Co-authored-by: KevinRansom <[email protected]>
    
    ---------
    
    Co-authored-by: Kevin Ransom (msft) <[email protected]>
    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    Co-authored-by: Petr <[email protected]>
    Co-authored-by: Vlad Zarytovskii <[email protected]>
    5 people authored Apr 8, 2024
    Configuration menu
    Copy the full SHA
    111eeb6 View commit details
    Browse the repository at this point in the history
Loading