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: microsoft/hcsshim
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.11.5
Choose a base ref
...
head repository: microsoft/hcsshim
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.11.7
Choose a head ref
  • 5 commits
  • 11 files changed
  • 6 contributors

Commits on Jun 19, 2024

  1. OutBoundNATPolicy Schema changes (#2106)

    Signed-off-by: Debjit Mondal <[email protected]>
    Signed-off-by: Prince Pereira <[email protected]>
    mdebjit authored and kiashok committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    cd46569 View commit details
    Browse the repository at this point in the history
  2. Changes for checking the global version for modify policy version sup…

    …port. (#2139)
    
    Signed-off-by: Prince Pereira <[email protected]>
    princepereira authored and kiashok committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    eefee26 View commit details
    Browse the repository at this point in the history
  3. Adding support for loadbalancer policy update in hns. (#2085)

    Signed-off-by: Prince Pereira <[email protected]>
    princepereira authored and kiashok committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    1495e9f View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2024

  1. Adding state attribute to the HNSEndpoint struct to support hyperv co…

    …ntainers for k8s
    
    Signed-off-by: ritikaguptams <[email protected]>
    
    Adding stringer for usage and CI/CD
    
    Signed-off-by: ritikaguptams <[email protected]>
    
    Fixing build errors
    
    Signed-off-by: ritikaguptams <[email protected]>
    
    Ignore linting for files generated by Stringer
    
    Signed-off-by: ritikaguptams <[email protected]>
    
    Trying to fix CI go gen
    
    Signed-off-by: ritikaguptams <[email protected]>
    
    Removing extra step to fix CI go gen
    
    Signed-off-by: ritikaguptams <[email protected]>
    
    go gen CI fix try 2
    
    Signed-off-by: ritikaguptams <[email protected]>
    
    Skip autogenerated file from linting
    
    Signed-off-by: ritikaguptams <[email protected]>
    
    Fixing linting
    
    Signed-off-by: ritikaguptams <[email protected]>
    
    Fixing linting
    
    Signed-off-by: ritikaguptams <[email protected]>
    
    Removing stringer to avoid increasing package bloat for hcsshim
    
    Signed-off-by: ritikaguptams <[email protected]>
    
    cleanup
    
    Signed-off-by: ritikaguptams <[email protected]>
    
    Adding comment for future HNS v2 change
    
    Signed-off-by: ritikaguptams <[email protected]>
    
    Fix linting
    
    Signed-off-by: ritikaguptams <[email protected]>
    (cherry picked from commit e96bfcd)
    Signed-off-by: ritikaguptams <[email protected]>
    ritikaguptams authored and kiashok committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    e59d3d2 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2024

  1. Fix process handle leak when launching a job container (#2187)

    CreateProcess gives us back a handle to the newly created process.
    Previously, we ignored this handle, which meant it was leaking every
    time we created a new job container (or anything else that uses
    internal/exec in the future).
    
    Process handle leaks can be bad as an exited process is left as a
    "zombie" until all handles to it have closed, continuing to use memory.
    
    Fix this by closing the handle from CreateProcess.
    
    Signed-off-by: Kevin Parsons <[email protected]>
    Co-authored-by: Kevin Parsons <[email protected]>
    yyatmsft and kevpar authored Jun 27, 2024
    Configuration menu
    Copy the full SHA
    6749c2f View commit details
    Browse the repository at this point in the history
Loading