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: 072eda8
Choose a base ref
...
head repository: dotnet/runtime
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: aafa910
Choose a head ref
  • 10 commits
  • 931 files changed
  • 10 contributors

Commits on Jul 17, 2022

  1. Properly calculate the ELF unwind info section size (#72146)

    Properly calculate the ELF unwind info section size
    
    Uses the same method that windbg does to calculate the eh_frame section size by partial decoding the FDE/CIE's enough to figure out the total size. We can't use the .eh_frame section because ELF module sections are not in-memory.
    
    Change the ReadMemoryAdapter passed to the new PAL_GetUnwindInfoSize function to read memory directly and not add it to the memory region list
    Mike McLaughlin authored Jul 17, 2022
    Configuration menu
    Copy the full SHA
    cd5e461 View commit details
    Browse the repository at this point in the history
  2. Do not use the string bit vector in regexes, if it's all ones or all …

    …zeroes. (#72317)
    
    * Do not use the string bit vector in regexes, if it's all ones or all zeroes.
    
    * Add a test.
    teo-tsirpanis authored Jul 17, 2022
    Configuration menu
    Copy the full SHA
    8a709bc View commit details
    Browse the repository at this point in the history
  3. Fix typos (#72314)

    * Fix typos
    
    * Cleanup trailing whitespaces in committed files
    
    * Revert a macro for win32 compat
    
    * Disambiguate test data method
    
    * Revert XMLPath test which rely on external assets
    
    * Revert whitespace change in Xml tests
    
    * Revert ClrEtwAl and ILLink.Shared
    
    * Revert crossgen2 props/targets and *.wxl
    am11 authored Jul 17, 2022
    Configuration menu
    Copy the full SHA
    3ea30ed View commit details
    Browse the repository at this point in the history
  4. Fix prio1 test build (#72335)

    am11 authored Jul 17, 2022
    Configuration menu
    Copy the full SHA
    fa090f4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c226b21 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c94c3f9 View commit details
    Browse the repository at this point in the history
  7. fix assert in ssl options clone (#72326)

    * fix assert in ssl options clone
    
    * add CertificateChainPolicy
    
    * remove extra assert
    wfurt authored Jul 17, 2022
    Configuration menu
    Copy the full SHA
    f275edb View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2022

  1. [main] Update dependencies from dotnet/roslyn-analyzers dotnet/msquic (

    …#72319)
    
    * Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20220715.1
    
    Microsoft.CodeAnalysis.NetAnalyzers
     From Version 7.0.0-preview1.22362.3 -> To Version 7.0.0-preview1.22365.1
    
    * Update dependencies from https://github.com/dotnet/msquic build 20220715.1
    
    System.Net.MsQuic.Transport
     From Version 7.0.0-alpha.1.22359.1 -> To Version 7.0.0-alpha.1.22365.1
    
    * Update dependencies from https://github.com/dotnet/msquic build 20220716.1
    
    System.Net.MsQuic.Transport
     From Version 7.0.0-alpha.1.22359.1 -> To Version 7.0.0-alpha.1.22366.1
    
    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    dotnet-maestro[bot] and dotnet-maestro[bot] authored Jul 18, 2022
    Configuration menu
    Copy the full SHA
    1f990fa View commit details
    Browse the repository at this point in the history
  2. Delete unused field (#72318)

    jkotas authored Jul 18, 2022
    Configuration menu
    Copy the full SHA
    1edd890 View commit details
    Browse the repository at this point in the history
  3. Improve reliability of some SafeHandle creations (#72341)

    * Improve reliability of some SafeHandle creations
    
    Use the new Marshal.InitHandle to support creating the SafeHandle instance before the native call and then storing the handle after, as is done implicitly as part of interop calls that return SafeHandles.  Also replace some existing such SetHandle methods with Marshal.InitHandle.
    
    * Update WaitSubsystem.Unix.cs
    
    Add InteropServices namespace
    
    Co-authored-by: Aaron Robinson <[email protected]>
    stephentoub and AaronRobinsonMSFT authored Jul 18, 2022
    Configuration menu
    Copy the full SHA
    aafa910 View commit details
    Browse the repository at this point in the history
Loading