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/runtime
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1b47dd9
Choose a base ref
...
head repository: dotnet/runtime
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 317dd69
Choose a head ref
  • 16 commits
  • 29 files changed
  • 15 contributors

Commits on Aug 30, 2021

  1. Update dependencies from https://github.com/dotnet/emsdk build 202108…

    …30.3 (#58357)
    
    Microsoft.NET.Workload.Emscripten.Manifest-6.0.100
     From Version 6.0.0-rc.1.21429.1 -> To Version 6.0.0-rc.1.21430.3
    
    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    dotnet-maestro[bot] and dotnet-maestro[bot] authored Aug 30, 2021
    Configuration menu
    Copy the full SHA
    0ab2741 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2021

  1. Configuration menu
    Copy the full SHA
    d7619cd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    00db3c8 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2021

  1. Update dependencies from https://github.com/dotnet/emsdk build 202109…

    …01.1 (#58526)
    
    Microsoft.NET.Workload.Emscripten.Manifest-6.0.100
     From Version 6.0.0-rc.2.21430.4 -> To Version 6.0.0-rc.2.21451.1
    
    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    dotnet-maestro[bot] and dotnet-maestro[bot] authored Sep 2, 2021
    Configuration menu
    Copy the full SHA
    cd631d0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #58516 from dotnet-maestro-bot/merge/release/6.0-r…

    …c1-to-release/6.0
    
    [automated] Merge branch 'release/6.0-rc1' => 'release/6.0'
    ViktorHofer authored Sep 2, 2021
    Configuration menu
    Copy the full SHA
    1479279 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0e71ebc View commit details
    Browse the repository at this point in the history
  4. Turn off release branch in perf-slow.yml for release/6.0 (#58512)

    * Disable release/6.0 for perf-slow.yml
    
    * Remove trigger
    
    * Specify no trigger
    Tohron authored Sep 2, 2021
    Configuration menu
    Copy the full SHA
    f785280 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    eb0587b View commit details
    Browse the repository at this point in the history
  6. Fix dump generation segfault in DAC (#58537)

    Issue: #58525
    
    Co-authored-by: Mike McLaughlin <[email protected]>
    github-actions[bot] and Mike McLaughlin authored Sep 2, 2021
    Configuration menu
    Copy the full SHA
    6be45d2 View commit details
    Browse the repository at this point in the history
  7. [release/6.0] Notify Reference Tracker runtime of disconnect at the r…

    …ight time (#58533)
    
    * Notify Reference Tracker runtime of disconnect at the right time
    
    Based on misunderstanding of SyncBlock clean-up modes the indication of
    when an Native Object Wrapper was being collected was being done after
    the wrapper's Finalizer was run. However, this information must be conveyed
    prior to wrapper finalization and synchronously during the GC.
    
    * Review feedback.
    
    Co-authored-by: Aaron Robinson <[email protected]>
    github-actions[bot] and AaronRobinsonMSFT authored Sep 2, 2021
    Configuration menu
    Copy the full SHA
    d764578 View commit details
    Browse the repository at this point in the history
  8. Conditionally pack symbols based on keepNativeSymbols (#58565)

    * Conditionally pack symbols based on keepNativeSymbols
    
    * Fix casing issue
    
    * Add clarifing comment
    MichaelSimons authored Sep 2, 2021
    Configuration menu
    Copy the full SHA
    b8b42ba View commit details
    Browse the repository at this point in the history
  9. [release/6.0] [HTTP/3] Fix content stream read hang (#58460)

    * Fix HTTP/3 content stream read hang
    
    * Fix hang if full data frame is not available
    
    Co-authored-by: Natalia Kondratyeva <[email protected]>
    github-actions[bot] and CarnaViire authored Sep 2, 2021
    Configuration menu
    Copy the full SHA
    b73658a View commit details
    Browse the repository at this point in the history
  10. Fix trim_youngest_desired for the case of high memory load and huge m…

    …ain memory - the return value should never be larger than total_new_allocation. (#58538)
    
    Co-authored-by: Peter Sollich <[email protected]>
    github-actions[bot] and PeterSolMS authored Sep 2, 2021
    Configuration menu
    Copy the full SHA
    5e5c1d7 View commit details
    Browse the repository at this point in the history
  11. [release/6.0] In reset_memory, check settings.entry_memory_load ... (#…

    …58543)
    
    * In reset_memory, check settings.entry_memory_load in addition to g_low_memory_status - it looks like the latter won't be set on Linux.
    
    * Factor out common logic for detecting high memory load.
    
    * Make high_memory_load_p a member function of gc_heap and rename to dt_high_memory_load_p.
    
    Co-authored-by: Peter Sollich <[email protected]>
    github-actions[bot] and PeterSolMS authored Sep 2, 2021
    Configuration menu
    Copy the full SHA
    af90ed6 View commit details
    Browse the repository at this point in the history
  12. [release/6.0] Cleaned up version of earlier PR #48601. (#58544)

    * Cleaned up version of earlier PR #48601.
    
    * Address code review feedback.
    
    * Take out changes in dt_high_frag_p - probably no longer necessary.
    
    Remove changes for the heap_hard_limit case - we'll do those later.
    
    Fixed another place where I had called generation_sizes instead of generation_size.
    
    * Fixed parameter for call to generation_size.
    
    * Update comment to the more explicit version in .NET Framework.
    
    * Added parentheses around an expression to address code review feedback.
    
    Co-authored-by: Peter Sollich <[email protected]>
    github-actions[bot] and PeterSolMS authored Sep 2, 2021
    Configuration menu
    Copy the full SHA
    a209a89 View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2021

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